comparison: js/src/jit-test/tests/arguments/bug956173.js
js/src/jit-test/tests/arguments/bug956173.js
- branch
- TOR_BUG_3246
- changeset 7
- 129ffea94266
equal
deleted
inserted
replaced
|
1 function foo() { |
|
2 let (x=arguments) { |
|
3 return function() { return x; }; |
|
4 } |
|
5 } |
|
6 foo()(); |