diff options
Diffstat (limited to 'js/src/tests/ecma_6/Class/superPropEvalInsideArrow.js')
-rw-r--r-- | js/src/tests/ecma_6/Class/superPropEvalInsideArrow.js | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/js/src/tests/ecma_6/Class/superPropEvalInsideArrow.js b/js/src/tests/ecma_6/Class/superPropEvalInsideArrow.js new file mode 100644 index 000000000..882f93ba0 --- /dev/null +++ b/js/src/tests/ecma_6/Class/superPropEvalInsideArrow.js @@ -0,0 +1,11 @@ +class foo { + constructor() { } + + method() { + return (() => eval('super.toString')); + } +} +assertEq(new foo().method()(), Object.prototype.toString); + +if (typeof reportCompare === "function") + reportCompare(0,0,"OK"); |