diff options
Diffstat (limited to 'js/src/tests/non262/class/superPropLazyInnerFunction.js')
-rw-r--r-- | js/src/tests/non262/class/superPropLazyInnerFunction.js | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/js/src/tests/non262/class/superPropLazyInnerFunction.js b/js/src/tests/non262/class/superPropLazyInnerFunction.js new file mode 100644 index 0000000000..d7a441f93b --- /dev/null +++ b/js/src/tests/non262/class/superPropLazyInnerFunction.js @@ -0,0 +1,19 @@ +testcase(); +function testcase() { + var tokenCodes = { + get try() { + try { + super.actual(); + } catch (e) {} + } + }; + var arr = [ + 'try', + ]; + for (var i = 0; i < arr.length; i++) { + if (tokenCodes[arr[i]] !== i) {}; + } +} + +if (typeof reportCompare === 'function') + reportCompare(0,0,"OK"); |