summaryrefslogtreecommitdiff
path: root/src/class-fields/productions/cls-expr-multiple-stacked-definitions.template
diff options
context:
space:
mode:
Diffstat (limited to 'src/class-fields/productions/cls-expr-multiple-stacked-definitions.template')
-rw-r--r--src/class-fields/productions/cls-expr-multiple-stacked-definitions.template43
1 files changed, 43 insertions, 0 deletions
diff --git a/src/class-fields/productions/cls-expr-multiple-stacked-definitions.template b/src/class-fields/productions/cls-expr-multiple-stacked-definitions.template
new file mode 100644
index 000000000..dd920d97e
--- /dev/null
+++ b/src/class-fields/productions/cls-expr-multiple-stacked-definitions.template
@@ -0,0 +1,43 @@
+// Copyright (C) 2017 the V8 project authors, 2017 Igalia S.L. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/*---
+path: language/expressions/class/fields-multiple-stacked-definitions-
+name: multiple stacked fields definitions through ASI
+features: [class-fields]
+esid: prod-FieldDefinition
+includes: [propertyHelper.js]
+---*/
+
+var C = class {
+ /*{ fields }*/
+ foo = "foobar"
+ bar = "barbaz";
+/*{ privateinspectionfunctions }*/
+}
+
+var c = new C();
+
+assert.sameValue(c.foo, "foobar");
+assert.sameValue(Object.hasOwnProperty.call(C, "foo"), false);
+assert.sameValue(Object.hasOwnProperty.call(C.prototype, "foo"), false);
+
+verifyProperty(c, "foo", {
+ value: "foobar",
+ enumerable: true,
+ configurable: true,
+ writable: true,
+});
+
+assert.sameValue(c.bar, "barbaz");
+assert.sameValue(Object.hasOwnProperty.call(C, "bar"), false);
+assert.sameValue(Object.hasOwnProperty.call(C.prototype, "bar"), false);
+
+verifyProperty(c, "bar", {
+ value: "barbaz",
+ enumerable: true,
+ configurable: true,
+ writable: true,
+});
+
+/*{ assertions }*/