summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/language/statements/class/super/in-constructor-superproperty-evaluation.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/language/statements/class/super/in-constructor-superproperty-evaluation.js')
-rw-r--r--js/src/tests/test262/language/statements/class/super/in-constructor-superproperty-evaluation.js19
1 files changed, 19 insertions, 0 deletions
diff --git a/js/src/tests/test262/language/statements/class/super/in-constructor-superproperty-evaluation.js b/js/src/tests/test262/language/statements/class/super/in-constructor-superproperty-evaluation.js
new file mode 100644
index 0000000000..43ef9d6bc2
--- /dev/null
+++ b/js/src/tests/test262/language/statements/class/super/in-constructor-superproperty-evaluation.js
@@ -0,0 +1,19 @@
+// Copyright (C) 2018 the V8 project authors. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+/*---
+esid: sec-makesuperpropertyreference
+description: >
+ SuperProperty evaluation order: super() thisBinding initialization must occur first.
+---*/
+class Derived extends Object {
+ constructor() {
+ super[super()];
+ throw new Test262Error();
+ }
+}
+
+assert.throws(ReferenceError, function() {
+ new Derived();
+}, '`super[super()]` via `new Derived()` throws a ReferenceError');
+
+reportCompare(0, 0);