comparison: js/src/jit-test/tests/jaeger/optimize-globals-1.js
js/src/jit-test/tests/jaeger/optimize-globals-1.js
- changeset 0
- 6474c204b198
equal
deleted
inserted
replaced
|
1 |
|
2 function testLocalNames() { |
|
3 var NaN = 4; |
|
4 var undefined = 5; |
|
5 var Infinity = 6; |
|
6 return NaN + undefined + Infinity; |
|
7 } |
|
8 assertEq(testLocalNames(), 15); |
|
9 |