comparison: js/src/jit-test/tests/basic/arityMismatchMissingArg.js
js/src/jit-test/tests/basic/arityMismatchMissingArg.js
- changeset 0
- 6474c204b198
equal
deleted
inserted
replaced
|
1 function arityMismatchMissingArg(arg) |
|
2 { |
|
3 for (var a = 0, i = 1; i < 10000; i *= 2) { |
|
4 a += i; |
|
5 } |
|
6 return a; |
|
7 } |
|
8 assertEq(arityMismatchMissingArg(), 16383); |