comparison: js/src/jit-test/tests/basic/testLambdaInitedVar.js
js/src/jit-test/tests/basic/testLambdaInitedVar.js
- changeset 0
- 6474c204b198
equal
deleted
inserted
replaced
|
1 function testLambdaInitedVar() { |
|
2 var jQuery = function (a, b) { |
|
3 return jQuery && jQuery.length; |
|
4 } |
|
5 return jQuery(); |
|
6 } |
|
7 |
|
8 assertEq(testLambdaInitedVar(), 2); |