summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/language/statements/class/static-init-super-property.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/language/statements/class/static-init-super-property.js')
-rw-r--r--js/src/tests/test262/language/statements/class/static-init-super-property.js26
1 files changed, 26 insertions, 0 deletions
diff --git a/js/src/tests/test262/language/statements/class/static-init-super-property.js b/js/src/tests/test262/language/statements/class/static-init-super-property.js
new file mode 100644
index 0000000000..1e28eb6753
--- /dev/null
+++ b/js/src/tests/test262/language/statements/class/static-init-super-property.js
@@ -0,0 +1,26 @@
+// Copyright (C) 2021 the V8 project authors. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+/*---
+esid: sec-runtime-semantics-classstaticblockdefinitionevaluation
+description: The home object for a class static initialization block is the parent class
+info: |
+ ClassStaticBlock : static { ClassStaticBlockBody }
+
+ [...]
+ 4. Perform MakeMethod(body, homeObject).
+features: [class-static-block]
+---*/
+
+function Parent() {}
+Parent.test262 = 'test262';
+var value;
+
+class C extends Parent {
+ static {
+ value = super.test262;
+ }
+}
+
+assert.sameValue(value, 'test262');
+
+reportCompare(0, 0);