diff options
Diffstat (limited to 'js/src/tests/non262/class/geterNoExprClosure.js')
-rw-r--r-- | js/src/tests/non262/class/geterNoExprClosure.js | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/js/src/tests/non262/class/geterNoExprClosure.js b/js/src/tests/non262/class/geterNoExprClosure.js new file mode 100644 index 0000000000..e37cb287a9 --- /dev/null +++ b/js/src/tests/non262/class/geterNoExprClosure.js @@ -0,0 +1,20 @@ +// getter/setter with expression closure is allowed only in object literal. + +assertThrowsInstanceOf(() => eval(` + class foo { + constructor() {} + + get a() 1 + } +`), SyntaxError); + +assertThrowsInstanceOf(() => eval(` + class foo { + constructor() {} + + set a(v) 1 + } +`), SyntaxError); + +if (typeof reportCompare === 'function') + reportCompare(0,0,"OK"); |