diff --git a/js/compiler/compiler.go b/js/compiler/compiler.go index 8eaafd5f2a6..ebfff6f27c9 100644 --- a/js/compiler/compiler.go +++ b/js/compiler/compiler.go @@ -37,7 +37,39 @@ import ( var ( DefaultOpts = map[string]interface{}{ - "presets": []string{"latest"}, + // "presets": []string{"latest"}, + "plugins": []interface{}{ + // es2015 https://github.com/babel/babel/blob/v6.26.0/packages/babel-preset-es2015/src/index.js + []interface{}{"transform-es2015-template-literals", map[string]interface{}{"loose": false, "spec": false}}, + "transform-es2015-literals", + "transform-es2015-function-name", + []interface{}{"transform-es2015-arrow-functions", map[string]interface{}{"spec": false}}, + "transform-es2015-block-scoped-functions", + []interface{}{"transform-es2015-classes", map[string]interface{}{"loose": false}}, + "transform-es2015-object-super", + "transform-es2015-shorthand-properties", + "transform-es2015-duplicate-keys", + []interface{}{"transform-es2015-computed-properties", map[string]interface{}{"loose": false}}, + // "transform-es2015-for-of", // in goja + // "transform-es2015-sticky-regex", // in goja + // "transform-es2015-unicode-regex", // in goja + "check-es2015-constants", + []interface{}{"transform-es2015-spread", map[string]interface{}{"loose": false}}, + "transform-es2015-parameters", + []interface{}{"transform-es2015-destructuring", map[string]interface{}{"loose": false}}, + "transform-es2015-block-scoping", // let/const which particularly slow on big inputs + // "transform-es2015-typeof-symbol", // in goja + // all the other module plugins are just dropped + []interface{}{"transform-es2015-modules-commonjs", map[string]interface{}{"loose": false}}, + // "transform-regenerator", // Doesn't really work unless regeneratorRuntime is also added + + // es2016 https://github.com/babel/babel/blob/v6.26.0/packages/babel-preset-es2016/src/index.js + "transform-exponentiation-operator", + + // es2017 https://github.com/babel/babel/blob/v6.26.0/packages/babel-preset-es2017/src/index.js + // "syntax-trailing-function-commas", // in goja + // "transform-async-to-generator", // Doesn't really work unless regeneratorRuntime is also added + }, "ast": false, "sourceMaps": false, "babelrc": false, diff --git a/js/tc39/breaking_test_errors.json b/js/tc39/breaking_test_errors.json index 336e1632c5f..619bca05c20 100644 --- a/js/tc39/breaking_test_errors.json +++ b/js/tc39/breaking_test_errors.json @@ -171,10 +171,10 @@ "test/built-ins/Object/preventExtensions/throws-when-false.js-strict:true": "[test/built-ins/Object/preventExtensions/throws-when-false.js Test262Error: Expected a TypeError to be thrown but no exception was thrown at all at harness/sta.js:22:9(49)]: %!v(MISSING)", "test/built-ins/Object/prototype/__proto__/set-invalid-value.js-strict:true": "[test/built-ins/Object/prototype/__proto__/set-invalid-value.js TypeError: Object prototype may only be an Object or null: true at call (native)]: %!v(MISSING)", "test/built-ins/Object/prototype/__proto__/set-non-object.js-strict:true": "[test/built-ins/Object/prototype/__proto__/set-non-object.js TypeError: Object prototype may only be an Object or null: undefined at call (native)]: %!v(MISSING)", - "test/built-ins/Object/prototype/toString/proxy-function-async.js-strict:true": "[test/built-ins/Object/prototype/toString/proxy-function-async.js ReferenceError: regeneratorRuntime is not defined at test/built-ins/Object/prototype/toString/proxy-function-async.js:21:60(10)]: %!v(MISSING)", + "test/built-ins/Object/prototype/toString/proxy-function-async.js-strict:true": "[test/built-ins/Object/prototype/toString/proxy-function-async.js test/built-ins/Object/prototype/toString/proxy-function-async.js: Line 21:34 Unexpected token function (and 3 more errors)]: %!v(MISSING)", "test/built-ins/Object/seal/seal-aggregateerror.js-strict:true": "[test/built-ins/Object/seal/seal-aggregateerror.js ReferenceError: AggregateError is not defined at test/built-ins/Object/seal/seal-aggregateerror.js:37:17(3)]: %!v(MISSING)", - "test/built-ins/Object/seal/seal-asyncarrowfunction.js-strict:true": "[test/built-ins/Object/seal/seal-asyncarrowfunction.js ReferenceError: regeneratorRuntime is not defined at test/built-ins/Object/seal/seal-asyncarrowfunction.js:37:72(12)]: %!v(MISSING)", - "test/built-ins/Object/seal/seal-asyncfunction.js-strict:true": "[test/built-ins/Object/seal/seal-asyncfunction.js ReferenceError: regeneratorRuntime is not defined at test/built-ins/Object/seal/seal-asyncfunction.js:37:72(12)]: %!v(MISSING)", + "test/built-ins/Object/seal/seal-asyncarrowfunction.js-strict:true": "[test/built-ins/Object/seal/seal-asyncarrowfunction.js test/built-ins/Object/seal/seal-asyncarrowfunction.js: Line 37:46 Unexpected token function (and 4 more errors)]: %!v(MISSING)", + "test/built-ins/Object/seal/seal-asyncfunction.js-strict:true": "[test/built-ins/Object/seal/seal-asyncfunction.js test/built-ins/Object/seal/seal-asyncfunction.js: Line 37:46 Unexpected token function (and 4 more errors)]: %!v(MISSING)", "test/built-ins/Object/seal/seal-asyncgeneratorfunction.js-strict:true": "[test/built-ins/Object/seal/seal-asyncgeneratorfunction.js SyntaxError: test/built-ins/Object/seal/seal-asyncgeneratorfunction.js: Unexpected token (37:54)\n 35 | ---*/\n 36 | \n\u003e 37 | Object.seal(new (Object.getPrototypeOf(async function * () {}).constructor)());\n | ^\n 38 | at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/built-ins/Object/seal/seal-bigint64array.js-strict:true": "[test/built-ins/Object/seal/seal-bigint64array.js ReferenceError: BigInt64Array is not defined at test/built-ins/Object/seal/seal-bigint64array.js:37:17(3)]: %!v(MISSING)", "test/built-ins/Object/seal/seal-biguint64array.js-strict:true": "[test/built-ins/Object/seal/seal-biguint64array.js ReferenceError: BigUint64Array is not defined at test/built-ins/Object/seal/seal-biguint64array.js:37:17(3)]: %!v(MISSING)", @@ -199,8 +199,8 @@ "test/built-ins/Proxy/set/trap-is-null-target-is-proxy.js-strict:true": "[test/built-ins/Proxy/set/trap-is-null-target-is-proxy.js Test262Error: Expected true but got false at harness/sta.js:22:9(49)]: %!v(MISSING)", "test/built-ins/Reflect/Symbol.toStringTag.js-strict:true": "[test/built-ins/Reflect/Symbol.toStringTag.js Test262Error: obj should have an own property Symbol(Symbol.toStringTag) at harness/sta.js:22:9(49)]: %!v(MISSING)", "test/built-ins/Reflect/enumerate/undefined.js-strict:true": "[test/built-ins/Reflect/enumerate/undefined.js Test262Error: Expected SameValue(«true», «false») to be true at harness/sta.js:22:9(49)]: %!v(MISSING)", - "test/built-ins/RegExp/dotall/with-dotall-unicode.js-strict:true": "[test/built-ins/RegExp/dotall/with-dotall-unicode.js SyntaxError: Invalid flags supplied to RegExp constructor 's' at test/built-ins/RegExp/dotall/with-dotall-unicode.js:20:13]: %!v(MISSING)", - "test/built-ins/RegExp/dotall/with-dotall.js-strict:true": "[test/built-ins/RegExp/dotall/with-dotall.js SyntaxError: Invalid flags supplied to RegExp constructor 's' at test/built-ins/RegExp/dotall/with-dotall.js:20:13]: %!v(MISSING)", + "test/built-ins/RegExp/dotall/with-dotall-unicode.js-strict:true": "[test/built-ins/RegExp/dotall/with-dotall-unicode.js SyntaxError: Invalid flags supplied to RegExp constructor 'su' at test/built-ins/RegExp/dotall/with-dotall-unicode.js:20:17]: %!v(MISSING)", + "test/built-ins/RegExp/dotall/with-dotall.js-strict:true": "[test/built-ins/RegExp/dotall/with-dotall.js SyntaxError: Invalid flags supplied to RegExp constructor 's' at test/built-ins/RegExp/dotall/with-dotall.js:20:17]: %!v(MISSING)", "test/built-ins/RegExp/dotall/without-dotall-unicode.js-strict:true": "[test/built-ins/RegExp/dotall/without-dotall-unicode.js Test262Error: Supplementary plane matched by a single . at harness/sta.js:22:9(49)]: %!v(MISSING)", "test/built-ins/RegExp/dotall/without-dotall.js-strict:true": "[test/built-ins/RegExp/dotall/without-dotall.js Test262Error: Expected true but got false at harness/sta.js:22:9(49)]: %!v(MISSING)", "test/built-ins/RegExp/duplicate-flags.js-strict:true": "[test/built-ins/RegExp/duplicate-flags.js SyntaxError: Invalid flags supplied to RegExp constructor 's' at test/built-ins/RegExp/duplicate-flags.js:23:1(42)]: %!v(MISSING)", @@ -211,18 +211,18 @@ "test/built-ins/RegExp/lookBehind/mutual-recursive.js-strict:true": "[test/built-ins/RegExp/lookBehind/mutual-recursive.js Test262Error: Expected [cacb, undefined, ] and [cacb, a, ] to have the same contents. #1 at harness/sta.js:22:9(49)]: %!v(MISSING)", "test/built-ins/RegExp/lookBehind/nested-lookaround.js-strict:true": "[test/built-ins/RegExp/lookBehind/nested-lookaround.js Test262Error: Expected [ef, undefined] and [ef, bc] to have the same contents. #2 at harness/sta.js:22:9(49)]: %!v(MISSING)", "test/built-ins/RegExp/lookBehind/sticky.js-strict:true": "[test/built-ins/RegExp/lookBehind/sticky.js Test262Error: Expected [def, undefined] and [def, abc] to have the same contents. #1 at harness/sta.js:22:9(49)]: %!v(MISSING)", - "test/built-ins/RegExp/match-indices/indices-array-element.js-strict:true": "[test/built-ins/RegExp/match-indices/indices-array-element.js TypeError: Cannot read property '0' of undefined at test/built-ins/RegExp/match-indices/indices-array-element.js:19:40(47)]: %!v(MISSING)", + "test/built-ins/RegExp/match-indices/indices-array-element.js-strict:true": "[test/built-ins/RegExp/match-indices/indices-array-element.js TypeError: Cannot read property '0' of undefined at test/built-ins/RegExp/match-indices/indices-array-element.js:19:40(28)]: %!v(MISSING)", "test/built-ins/RegExp/match-indices/indices-array-matched.js-strict:true": "[test/built-ins/RegExp/match-indices/indices-array-matched.js TypeError: Cannot read property 'length' of undefined at test/built-ins/RegExp/match-indices/indices-array-matched.js:31:18(24)]: %!v(MISSING)", "test/built-ins/RegExp/match-indices/indices-array-non-unicode-match.js-strict:true": "[test/built-ins/RegExp/match-indices/indices-array-non-unicode-match.js Test262Error: Expected [[1, 2], [1, 2]] to be structurally equal to undefined. at harness/sta.js:22:9(49)]: %!v(MISSING)", "test/built-ins/RegExp/match-indices/indices-array-properties.js-strict:true": "[test/built-ins/RegExp/match-indices/indices-array-properties.js TypeError: Cannot convert undefined or null to object at getOwnPropertyDescriptor (native)]: %!v(MISSING)", - "test/built-ins/RegExp/match-indices/indices-array-unicode-match.js-strict:true": "[test/built-ins/RegExp/match-indices/indices-array-unicode-match.js SyntaxError: test/built-ins/RegExp/match-indices/indices-array-unicode-match.js: Expected atom at position 1\n (?\u003ca\u003e.)(?\u003cb\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/match-indices/indices-array-unicode-property-names.js-strict:true": "[test/built-ins/RegExp/match-indices/indices-array-unicode-property-names.js SyntaxError: test/built-ins/RegExp/match-indices/indices-array-unicode-property-names.js: Expected atom at position 1\n (?\u003cπ\u003ea)\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", + "test/built-ins/RegExp/match-indices/indices-array-unicode-match.js-strict:true": "[test/built-ins/RegExp/match-indices/indices-array-unicode-match.js Test262Error: Expected [[1, 2], [1, 2]] to be structurally equal to undefined. at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/match-indices/indices-array-unicode-property-names.js-strict:true": "[test/built-ins/RegExp/match-indices/indices-array-unicode-property-names.js test/built-ins/RegExp/match-indices/indices-array-unicode-property-names.js: Line 19:74 Unexpected token ILLEGAL (and 5 more errors)]: %!v(MISSING)", "test/built-ins/RegExp/match-indices/indices-array-unmatched.js-strict:true": "[test/built-ins/RegExp/match-indices/indices-array-unmatched.js TypeError: Cannot read property 'length' of undefined at test/built-ins/RegExp/match-indices/indices-array-unmatched.js:30:18(24)]: %!v(MISSING)", "test/built-ins/RegExp/match-indices/indices-array.js-strict:true": "[test/built-ins/RegExp/match-indices/indices-array.js TypeError: Cannot convert undefined or null to object at getPrototypeOf (native)]: %!v(MISSING)", "test/built-ins/RegExp/match-indices/indices-groups-object-undefined.js-strict:true": "[test/built-ins/RegExp/match-indices/indices-groups-object-undefined.js TypeError: Cannot convert undefined or null to object at getOwnPropertyDescriptor (native)]: %!v(MISSING)", "test/built-ins/RegExp/match-indices/indices-groups-object-unmatched.js-strict:true": "[test/built-ins/RegExp/match-indices/indices-groups-object-unmatched.js TypeError: Cannot read property 'groups' of undefined at test/built-ins/RegExp/match-indices/indices-groups-object-unmatched.js:20:29(22)]: %!v(MISSING)", "test/built-ins/RegExp/match-indices/indices-groups-object.js-strict:true": "[test/built-ins/RegExp/match-indices/indices-groups-object.js TypeError: Cannot convert undefined or null to object at getOwnPropertyDescriptor (native)]: %!v(MISSING)", - "test/built-ins/RegExp/match-indices/indices-groups-properties.js-strict:true": "[test/built-ins/RegExp/match-indices/indices-groups-properties.js SyntaxError: test/built-ins/RegExp/match-indices/indices-groups-properties.js: Expected atom at position 1\n (?\u003cfst\u003e.)|(\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", + "test/built-ins/RegExp/match-indices/indices-groups-properties.js-strict:true": "[test/built-ins/RegExp/match-indices/indices-groups-properties.js TypeError: Cannot read property 'groups' of undefined at test/built-ins/RegExp/match-indices/indices-groups-properties.js:19:45(13)]: %!v(MISSING)", "test/built-ins/RegExp/match-indices/indices-property.js-strict:true": "[test/built-ins/RegExp/match-indices/indices-property.js Test262Error: obj should have an own property indices at harness/sta.js:22:9(49)]: %!v(MISSING)", "test/built-ins/RegExp/named-groups/functional-replace-global.js-strict:true": "[test/built-ins/RegExp/named-groups/functional-replace-global.js TypeError: Cannot read property 'fst' of undefined at test/built-ins/RegExp/named-groups/functional-replace-global.js:29:29(17)]: %!v(MISSING)", "test/built-ins/RegExp/named-groups/functional-replace-non-global.js-strict:true": "[test/built-ins/RegExp/named-groups/functional-replace-non-global.js TypeError: Cannot read property 'fst' of undefined at test/built-ins/RegExp/named-groups/functional-replace-non-global.js:29:27(26)]: %!v(MISSING)", @@ -231,7 +231,7 @@ "test/built-ins/RegExp/named-groups/groups-object-undefined.js-strict:true": "[test/built-ins/RegExp/named-groups/groups-object-undefined.js Test262Error: Expected true but got false at harness/sta.js:22:9(49)]: %!v(MISSING)", "test/built-ins/RegExp/named-groups/groups-object-unmatched.js-strict:true": "[test/built-ins/RegExp/named-groups/groups-object-unmatched.js Test262Error: Expected true but got false at harness/sta.js:22:9(49)]: %!v(MISSING)", "test/built-ins/RegExp/named-groups/groups-object.js-strict:true": "[test/built-ins/RegExp/named-groups/groups-object.js Test262Error: obj should have an own property groups at harness/sta.js:22:9(49)]: %!v(MISSING)", - "test/built-ins/RegExp/named-groups/groups-properties.js-strict:true": "[test/built-ins/RegExp/named-groups/groups-properties.js SyntaxError: test/built-ins/RegExp/named-groups/groups-properties.js: Expected atom at position 1\n (?\u003cfst\u003e.)|(\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", + "test/built-ins/RegExp/named-groups/groups-properties.js-strict:true": "[test/built-ins/RegExp/named-groups/groups-properties.js TypeError: Cannot convert undefined or null to object at getOwnPropertyNames (native)]: %!v(MISSING)", "test/built-ins/RegExp/named-groups/lookbehind.js-strict:true": "[test/built-ins/RegExp/named-groups/lookbehind.js Test262Error: Expected true but got false at harness/sta.js:22:9(49)]: %!v(MISSING)", "test/built-ins/RegExp/named-groups/non-unicode-match.js-strict:true": "[test/built-ins/RegExp/named-groups/non-unicode-match.js SyntaxError: Invalid regular expression (regexp2): (?\u003c$\u003ea) (Invalid regular expression (regexp2): (?\u003c$\u003ea) (error parsing regexp: invalid group name: group names must begin with a word character and have a matching terminator in `(?\u003c$\u003ea)`)) at test/built-ins/RegExp/named-groups/non-unicode-match.js:15:45]: %!v(MISSING)", "test/built-ins/RegExp/named-groups/non-unicode-property-names-valid.js-strict:true": "[test/built-ins/RegExp/named-groups/non-unicode-property-names-valid.js SyntaxError: Invalid regular expression (regexp2): (?\u003c\\ud835\\udc53\\ud835\\udc5c\\ud835\\udc65\u003efox).*(?\u003c\\ud835\\udcd3\\ud835\\udcf8\\ud835\\udcf0\u003edog) (Invalid regular expression (regexp2): (?\u003c\\ud835\\udc53\\ud835\\udc5c\\ud835\\udc65\u003efox).*(?\u003c\\ud835\\udcd3\\ud835\\udcf8\\ud835\\udcf0\u003edog) (error parsing regexp: invalid group name: group names must begin with a word character and have a matching terminator in `(?\u003c\\ud835\\udc53\\ud835\\udc5c\\ud835\\udc65\u003efox).*(?\u003c\\ud835\\udcd3\\ud835\\udcf8\\ud835\\udcf0\u003edog)`)) at test/built-ins/RegExp/named-groups/non-unicode-property-names-valid.js:47:22]: %!v(MISSING)", @@ -240,11 +240,11 @@ "test/built-ins/RegExp/named-groups/string-replace-get.js-strict:true": "[test/built-ins/RegExp/named-groups/string-replace-get.js Test262Error: Expected SameValue(«badc», «$\u003csnd\u003e$\u003cfst\u003e$\u003csnd\u003e$\u003cfst\u003e») to be true at harness/sta.js:22:9(49)]: %!v(MISSING)", "test/built-ins/RegExp/named-groups/string-replace-missing.js-strict:true": "[test/built-ins/RegExp/named-groups/string-replace-missing.js Test262Error: Expected SameValue(«cd», «$\u003c42a\u003ecd») to be true at harness/sta.js:22:9(49)]: %!v(MISSING)", "test/built-ins/RegExp/named-groups/string-replace-undefined.js-strict:true": "[test/built-ins/RegExp/named-groups/string-replace-undefined.js Test262Error: Expected SameValue(«», «$\u003cthd\u003e$\u003cthd\u003e») to be true at harness/sta.js:22:9(49)]: %!v(MISSING)", - "test/built-ins/RegExp/named-groups/unicode-match.js-strict:true": "[test/built-ins/RegExp/named-groups/unicode-match.js SyntaxError: test/built-ins/RegExp/named-groups/unicode-match.js: Expected atom at position 1\n (?\u003ca\u003ea)\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", + "test/built-ins/RegExp/named-groups/unicode-match.js-strict:true": "[test/built-ins/RegExp/named-groups/unicode-match.js SyntaxError: Invalid regular expression (regexp2): (?\u003c$\u003ea) (Invalid regular expression (regexp2): (?\u003c$\u003ea) (error parsing regexp: invalid group name: group names must begin with a word character and have a matching terminator in `(?\u003c$\u003ea)`)) at test/built-ins/RegExp/named-groups/unicode-match.js:15:45]: %!v(MISSING)", "test/built-ins/RegExp/named-groups/unicode-property-names-invalid.js-strict:true": "[test/built-ins/RegExp/named-groups/unicode-property-names-invalid.js Test262Error: Expected a SyntaxError to be thrown but no exception was thrown at all at harness/sta.js:22:9(49)]: %!v(MISSING)", - "test/built-ins/RegExp/named-groups/unicode-property-names-valid.js-strict:true": "[test/built-ins/RegExp/named-groups/unicode-property-names-valid.js SyntaxError: test/built-ins/RegExp/named-groups/unicode-property-names-valid.js: Expected atom at position 1\n (?\u003canimal\u003ef\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/named-groups/unicode-property-names.js-strict:true": "[test/built-ins/RegExp/named-groups/unicode-property-names.js SyntaxError: test/built-ins/RegExp/named-groups/unicode-property-names.js: Expected atom at position 1\n (?\u003cπ\u003ea)\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/named-groups/unicode-references.js-strict:true": "[test/built-ins/RegExp/named-groups/unicode-references.js SyntaxError: test/built-ins/RegExp/named-groups/unicode-references.js: Expected atom at position 1\n (?\u003cb\u003e.).\\k\u003c\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", + "test/built-ins/RegExp/named-groups/unicode-property-names-valid.js-strict:true": "[test/built-ins/RegExp/named-groups/unicode-property-names-valid.js SyntaxError: Invalid regular expression (regexp2): (?\u003c\\u{1d4d1}\\u{1d4fb}\\u{1d4f8}\\u{1d500}\\u{1d4f7}\u003ebrown) (Invalid regular expression (regexp2): (?\u003c\\u{1d4d1}\\u{1d4fb}\\u{1d4f8}\\u{1d500}\\u{1d4f7}\u003ebrown) (error parsing regexp: invalid group name: group names must begin with a word character and have a matching terminator in `(?\u003c\\u{1d4d1}\\u{1d4fb}\\u{1d4f8}\\u{1d500}\\u{1d4f7}\u003ebrown)`)) at test/built-ins/RegExp/named-groups/unicode-property-names-valid.js:67:31]: %!v(MISSING)", + "test/built-ins/RegExp/named-groups/unicode-property-names.js-strict:true": "[test/built-ins/RegExp/named-groups/unicode-property-names.js test/built-ins/RegExp/named-groups/unicode-property-names.js: Line 18:60 Unexpected token ILLEGAL (and 5 more errors)]: %!v(MISSING)", + "test/built-ins/RegExp/named-groups/unicode-references.js-strict:true": "[test/built-ins/RegExp/named-groups/unicode-references.js TypeError: Cannot read property 'a' of undefined at test/built-ins/RegExp/named-groups/unicode-references.js:31:23(50)]: %!v(MISSING)", "test/built-ins/RegExp/property-escapes/binary-property-with-value-ASCII_-_F-negated.js-strict:true": "[test/built-ins/RegExp/property-escapes/binary-property-with-value-ASCII_-_F-negated.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", "test/built-ins/RegExp/property-escapes/binary-property-with-value-ASCII_-_F.js-strict:true": "[test/built-ins/RegExp/property-escapes/binary-property-with-value-ASCII_-_F.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", "test/built-ins/RegExp/property-escapes/binary-property-with-value-ASCII_-_Invalid-negated.js-strict:true": "[test/built-ins/RegExp/property-escapes/binary-property-with-value-ASCII_-_Invalid-negated.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", @@ -262,409 +262,409 @@ "test/built-ins/RegExp/property-escapes/character-class-range-end.js-strict:true": "[test/built-ins/RegExp/property-escapes/character-class-range-end.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", "test/built-ins/RegExp/property-escapes/character-class-range-no-dash-start.js-strict:true": "[test/built-ins/RegExp/property-escapes/character-class-range-no-dash-start.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", "test/built-ins/RegExp/property-escapes/character-class.js-strict:true": "[test/built-ins/RegExp/property-escapes/character-class.js Test262Error: multiple property escapes in a single character class should be supported at harness/sta.js:22:9(49)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/ASCII.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/ASCII.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/ASCII.js: Expected atom at position 3\n ^\\p{ASCII}+$\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/ASCII_Hex_Digit.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/ASCII_Hex_Digit.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/ASCII_Hex_Digit.js: Expected atom at position 3\n ^\\p{ASCII_Hex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Alphabetic.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Alphabetic.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Alphabetic.js: Expected atom at position 3\n ^\\p{Alphabeti\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Any.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Any.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Any.js: Expected atom at position 3\n ^\\p{Any}+$\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Assigned.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Assigned.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Assigned.js: Expected atom at position 3\n ^\\p{Assigned}\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Bidi_Control.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Bidi_Control.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Bidi_Control.js: Expected atom at position 3\n ^\\p{Bidi_Cont\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Bidi_Mirrored.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Bidi_Mirrored.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Bidi_Mirrored.js: Expected atom at position 3\n ^\\p{Bidi_Mirr\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Case_Ignorable.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Case_Ignorable.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Case_Ignorable.js: Expected atom at position 3\n ^\\p{Case_Igno\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Cased.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Cased.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Cased.js: Expected atom at position 3\n ^\\p{Cased}+$\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Changes_When_Casefolded.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Changes_When_Casefolded.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Changes_When_Casefolded.js: Expected atom at position 3\n ^\\p{Changes_W\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Changes_When_Casemapped.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Changes_When_Casemapped.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Changes_When_Casemapped.js: Expected atom at position 3\n ^\\p{Changes_W\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Changes_When_Lowercased.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Changes_When_Lowercased.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Changes_When_Lowercased.js: Expected atom at position 3\n ^\\p{Changes_W\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Changes_When_NFKC_Casefolded.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Changes_When_NFKC_Casefolded.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Changes_When_NFKC_Casefolded.js: Expected atom at position 3\n ^\\p{Changes_W\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Changes_When_Titlecased.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Changes_When_Titlecased.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Changes_When_Titlecased.js: Expected atom at position 3\n ^\\p{Changes_W\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Changes_When_Uppercased.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Changes_When_Uppercased.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Changes_When_Uppercased.js: Expected atom at position 3\n ^\\p{Changes_W\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Dash.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Dash.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Dash.js: Expected atom at position 3\n ^\\p{Dash}+$\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Default_Ignorable_Code_Point.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Default_Ignorable_Code_Point.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Default_Ignorable_Code_Point.js: Expected atom at position 3\n ^\\p{Default_I\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Deprecated.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Deprecated.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Deprecated.js: Expected atom at position 3\n ^\\p{Deprecate\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Diacritic.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Diacritic.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Diacritic.js: Expected atom at position 3\n ^\\p{Diacritic\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Emoji.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Emoji.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Emoji.js: Expected atom at position 3\n ^\\p{Emoji}+$\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Emoji_Component.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Emoji_Component.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Emoji_Component.js: Expected atom at position 3\n ^\\p{Emoji_Com\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Emoji_Modifier.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Emoji_Modifier.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Emoji_Modifier.js: Expected atom at position 3\n ^\\p{Emoji_Mod\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Emoji_Modifier_Base.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Emoji_Modifier_Base.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Emoji_Modifier_Base.js: Expected atom at position 3\n ^\\p{Emoji_Mod\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Emoji_Presentation.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Emoji_Presentation.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Emoji_Presentation.js: Expected atom at position 3\n ^\\p{Emoji_Pre\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Extended_Pictographic.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Extended_Pictographic.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Extended_Pictographic.js: Expected atom at position 3\n ^\\p{Extended_\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Extender.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Extender.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Extender.js: Expected atom at position 3\n ^\\p{Extender}\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/General_Category_-_Cased_Letter.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/General_Category_-_Cased_Letter.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/General_Category_-_Cased_Letter.js: Expected atom at position 3\n ^\\p{General_C\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/General_Category_-_Close_Punctuation.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/General_Category_-_Close_Punctuation.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/General_Category_-_Close_Punctuation.js: Expected atom at position 3\n ^\\p{General_C\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/General_Category_-_Connector_Punctuation.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/General_Category_-_Connector_Punctuation.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/General_Category_-_Connector_Punctuation.js: Expected atom at position 3\n ^\\p{General_C\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/General_Category_-_Control.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/General_Category_-_Control.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/General_Category_-_Control.js: Expected atom at position 3\n ^\\p{General_C\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/General_Category_-_Currency_Symbol.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/General_Category_-_Currency_Symbol.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/General_Category_-_Currency_Symbol.js: Expected atom at position 3\n ^\\p{General_C\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/General_Category_-_Dash_Punctuation.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/General_Category_-_Dash_Punctuation.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/General_Category_-_Dash_Punctuation.js: Expected atom at position 3\n ^\\p{General_C\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/General_Category_-_Decimal_Number.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/General_Category_-_Decimal_Number.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/General_Category_-_Decimal_Number.js: Expected atom at position 3\n ^\\p{General_C\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/General_Category_-_Enclosing_Mark.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/General_Category_-_Enclosing_Mark.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/General_Category_-_Enclosing_Mark.js: Expected atom at position 3\n ^\\p{General_C\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/General_Category_-_Final_Punctuation.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/General_Category_-_Final_Punctuation.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/General_Category_-_Final_Punctuation.js: Expected atom at position 3\n ^\\p{General_C\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/General_Category_-_Format.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/General_Category_-_Format.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/General_Category_-_Format.js: Expected atom at position 3\n ^\\p{General_C\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/General_Category_-_Initial_Punctuation.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/General_Category_-_Initial_Punctuation.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/General_Category_-_Initial_Punctuation.js: Expected atom at position 3\n ^\\p{General_C\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/General_Category_-_Letter.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/General_Category_-_Letter.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/General_Category_-_Letter.js: Expected atom at position 3\n ^\\p{General_C\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/General_Category_-_Letter_Number.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/General_Category_-_Letter_Number.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/General_Category_-_Letter_Number.js: Expected atom at position 3\n ^\\p{General_C\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/General_Category_-_Line_Separator.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/General_Category_-_Line_Separator.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/General_Category_-_Line_Separator.js: Expected atom at position 3\n ^\\p{General_C\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/General_Category_-_Lowercase_Letter.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/General_Category_-_Lowercase_Letter.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/General_Category_-_Lowercase_Letter.js: Expected atom at position 3\n ^\\p{General_C\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/General_Category_-_Mark.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/General_Category_-_Mark.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/General_Category_-_Mark.js: Expected atom at position 3\n ^\\p{General_C\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/General_Category_-_Math_Symbol.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/General_Category_-_Math_Symbol.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/General_Category_-_Math_Symbol.js: Expected atom at position 3\n ^\\p{General_C\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/General_Category_-_Modifier_Letter.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/General_Category_-_Modifier_Letter.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/General_Category_-_Modifier_Letter.js: Expected atom at position 3\n ^\\p{General_C\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/General_Category_-_Modifier_Symbol.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/General_Category_-_Modifier_Symbol.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/General_Category_-_Modifier_Symbol.js: Expected atom at position 3\n ^\\p{General_C\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/General_Category_-_Nonspacing_Mark.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/General_Category_-_Nonspacing_Mark.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/General_Category_-_Nonspacing_Mark.js: Expected atom at position 3\n ^\\p{General_C\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/General_Category_-_Number.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/General_Category_-_Number.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/General_Category_-_Number.js: Expected atom at position 3\n ^\\p{General_C\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/General_Category_-_Open_Punctuation.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/General_Category_-_Open_Punctuation.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/General_Category_-_Open_Punctuation.js: Expected atom at position 3\n ^\\p{General_C\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/General_Category_-_Other.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/General_Category_-_Other.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/General_Category_-_Other.js: Expected atom at position 3\n ^\\p{General_C\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/General_Category_-_Other_Letter.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/General_Category_-_Other_Letter.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/General_Category_-_Other_Letter.js: Expected atom at position 3\n ^\\p{General_C\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/General_Category_-_Other_Number.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/General_Category_-_Other_Number.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/General_Category_-_Other_Number.js: Expected atom at position 3\n ^\\p{General_C\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/General_Category_-_Other_Punctuation.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/General_Category_-_Other_Punctuation.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/General_Category_-_Other_Punctuation.js: Expected atom at position 3\n ^\\p{General_C\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/General_Category_-_Other_Symbol.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/General_Category_-_Other_Symbol.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/General_Category_-_Other_Symbol.js: Expected atom at position 3\n ^\\p{General_C\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/General_Category_-_Paragraph_Separator.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/General_Category_-_Paragraph_Separator.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/General_Category_-_Paragraph_Separator.js: Expected atom at position 3\n ^\\p{General_C\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/General_Category_-_Private_Use.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/General_Category_-_Private_Use.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/General_Category_-_Private_Use.js: Expected atom at position 3\n ^\\p{General_C\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/General_Category_-_Punctuation.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/General_Category_-_Punctuation.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/General_Category_-_Punctuation.js: Expected atom at position 3\n ^\\p{General_C\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/General_Category_-_Separator.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/General_Category_-_Separator.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/General_Category_-_Separator.js: Expected atom at position 3\n ^\\p{General_C\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/General_Category_-_Space_Separator.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/General_Category_-_Space_Separator.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/General_Category_-_Space_Separator.js: Expected atom at position 3\n ^\\p{General_C\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/General_Category_-_Spacing_Mark.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/General_Category_-_Spacing_Mark.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/General_Category_-_Spacing_Mark.js: Expected atom at position 3\n ^\\p{General_C\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/General_Category_-_Surrogate.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/General_Category_-_Surrogate.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/General_Category_-_Surrogate.js: Expected atom at position 3\n ^\\p{General_C\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/General_Category_-_Symbol.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/General_Category_-_Symbol.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/General_Category_-_Symbol.js: Expected atom at position 3\n ^\\p{General_C\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/General_Category_-_Titlecase_Letter.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/General_Category_-_Titlecase_Letter.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/General_Category_-_Titlecase_Letter.js: Expected atom at position 3\n ^\\p{General_C\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/General_Category_-_Unassigned.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/General_Category_-_Unassigned.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/General_Category_-_Unassigned.js: Expected atom at position 3\n ^\\p{General_C\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/General_Category_-_Uppercase_Letter.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/General_Category_-_Uppercase_Letter.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/General_Category_-_Uppercase_Letter.js: Expected atom at position 3\n ^\\p{General_C\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Grapheme_Base.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Grapheme_Base.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Grapheme_Base.js: Expected atom at position 3\n ^\\p{Grapheme_\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Grapheme_Extend.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Grapheme_Extend.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Grapheme_Extend.js: Expected atom at position 3\n ^\\p{Grapheme_\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Hex_Digit.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Hex_Digit.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Hex_Digit.js: Expected atom at position 3\n ^\\p{Hex_Digit\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/IDS_Binary_Operator.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/IDS_Binary_Operator.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/IDS_Binary_Operator.js: Expected atom at position 3\n ^\\p{IDS_Binar\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/IDS_Trinary_Operator.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/IDS_Trinary_Operator.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/IDS_Trinary_Operator.js: Expected atom at position 3\n ^\\p{IDS_Trina\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/ID_Continue.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/ID_Continue.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/ID_Continue.js: Expected atom at position 3\n ^\\p{ID_Contin\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/ID_Start.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/ID_Start.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/ID_Start.js: Expected atom at position 3\n ^\\p{ID_Start}\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Ideographic.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Ideographic.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Ideographic.js: Expected atom at position 3\n ^\\p{Ideograph\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Join_Control.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Join_Control.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Join_Control.js: Expected atom at position 3\n ^\\p{Join_Cont\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Logical_Order_Exception.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Logical_Order_Exception.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Logical_Order_Exception.js: Expected atom at position 3\n ^\\p{Logical_O\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Lowercase.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Lowercase.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Lowercase.js: Expected atom at position 3\n ^\\p{Lowercase\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Math.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Math.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Math.js: Expected atom at position 3\n ^\\p{Math}+$\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Noncharacter_Code_Point.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Noncharacter_Code_Point.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Noncharacter_Code_Point.js: Expected atom at position 3\n ^\\p{Noncharac\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Pattern_Syntax.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Pattern_Syntax.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Pattern_Syntax.js: Expected atom at position 3\n ^\\p{Pattern_S\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Pattern_White_Space.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Pattern_White_Space.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Pattern_White_Space.js: Expected atom at position 3\n ^\\p{Pattern_W\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Quotation_Mark.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Quotation_Mark.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Quotation_Mark.js: Expected atom at position 3\n ^\\p{Quotation\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Radical.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Radical.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Radical.js: Expected atom at position 3\n ^\\p{Radical}+\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Regional_Indicator.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Regional_Indicator.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Regional_Indicator.js: Expected atom at position 3\n ^\\p{Regional_\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Adlam.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Adlam.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Adlam.js: Expected atom at position 3\n ^\\p{Script=Ad\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Ahom.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Ahom.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Ahom.js: Expected atom at position 3\n ^\\p{Script=Ah\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Anatolian_Hieroglyphs.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Anatolian_Hieroglyphs.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Anatolian_Hieroglyphs.js: Expected atom at position 3\n ^\\p{Script=An\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Arabic.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Arabic.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Arabic.js: Expected atom at position 3\n ^\\p{Script=Ar\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Armenian.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Armenian.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Armenian.js: Expected atom at position 3\n ^\\p{Script=Ar\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Avestan.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Avestan.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Avestan.js: Expected atom at position 3\n ^\\p{Script=Av\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Balinese.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Balinese.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Balinese.js: Expected atom at position 3\n ^\\p{Script=Ba\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Bamum.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Bamum.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Bamum.js: Expected atom at position 3\n ^\\p{Script=Ba\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Bassa_Vah.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Bassa_Vah.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Bassa_Vah.js: Expected atom at position 3\n ^\\p{Script=Ba\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Batak.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Batak.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Batak.js: Expected atom at position 3\n ^\\p{Script=Ba\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Bengali.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Bengali.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Bengali.js: Expected atom at position 3\n ^\\p{Script=Be\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Bhaiksuki.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Bhaiksuki.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Bhaiksuki.js: Expected atom at position 3\n ^\\p{Script=Bh\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Bopomofo.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Bopomofo.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Bopomofo.js: Expected atom at position 3\n ^\\p{Script=Bo\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Brahmi.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Brahmi.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Brahmi.js: Expected atom at position 3\n ^\\p{Script=Br\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Braille.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Braille.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Braille.js: Expected atom at position 3\n ^\\p{Script=Br\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Buginese.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Buginese.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Buginese.js: Expected atom at position 3\n ^\\p{Script=Bu\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Buhid.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Buhid.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Buhid.js: Expected atom at position 3\n ^\\p{Script=Bu\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Canadian_Aboriginal.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Canadian_Aboriginal.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Canadian_Aboriginal.js: Expected atom at position 3\n ^\\p{Script=Ca\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Carian.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Carian.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Carian.js: Expected atom at position 3\n ^\\p{Script=Ca\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Caucasian_Albanian.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Caucasian_Albanian.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Caucasian_Albanian.js: Expected atom at position 3\n ^\\p{Script=Ca\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Chakma.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Chakma.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Chakma.js: Expected atom at position 3\n ^\\p{Script=Ch\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Cham.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Cham.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Cham.js: Expected atom at position 3\n ^\\p{Script=Ch\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Cherokee.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Cherokee.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Cherokee.js: Expected atom at position 3\n ^\\p{Script=Ch\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Chorasmian.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Chorasmian.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Chorasmian.js: Expected atom at position 3\n ^\\p{Script=Ch\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Common.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Common.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Common.js: Expected atom at position 3\n ^\\p{Script=Co\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Coptic.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Coptic.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Coptic.js: Expected atom at position 3\n ^\\p{Script=Co\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Cuneiform.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Cuneiform.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Cuneiform.js: Expected atom at position 3\n ^\\p{Script=Cu\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Cypriot.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Cypriot.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Cypriot.js: Expected atom at position 3\n ^\\p{Script=Cy\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Cyrillic.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Cyrillic.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Cyrillic.js: Expected atom at position 3\n ^\\p{Script=Cy\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Deseret.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Deseret.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Deseret.js: Expected atom at position 3\n ^\\p{Script=De\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Devanagari.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Devanagari.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Devanagari.js: Expected atom at position 3\n ^\\p{Script=De\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Dives_Akuru.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Dives_Akuru.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Dives_Akuru.js: Expected atom at position 3\n ^\\p{Script=Di\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Dogra.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Dogra.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Dogra.js: Expected atom at position 3\n ^\\p{Script=Do\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Duployan.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Duployan.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Duployan.js: Expected atom at position 3\n ^\\p{Script=Du\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Egyptian_Hieroglyphs.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Egyptian_Hieroglyphs.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Egyptian_Hieroglyphs.js: Expected atom at position 3\n ^\\p{Script=Eg\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Elbasan.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Elbasan.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Elbasan.js: Expected atom at position 3\n ^\\p{Script=El\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Elymaic.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Elymaic.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Elymaic.js: Expected atom at position 3\n ^\\p{Script=El\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Ethiopic.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Ethiopic.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Ethiopic.js: Expected atom at position 3\n ^\\p{Script=Et\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Georgian.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Georgian.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Georgian.js: Expected atom at position 3\n ^\\p{Script=Ge\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Glagolitic.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Glagolitic.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Glagolitic.js: Expected atom at position 3\n ^\\p{Script=Gl\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Gothic.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Gothic.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Gothic.js: Expected atom at position 3\n ^\\p{Script=Go\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Grantha.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Grantha.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Grantha.js: Expected atom at position 3\n ^\\p{Script=Gr\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Greek.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Greek.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Greek.js: Expected atom at position 3\n ^\\p{Script=Gr\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Gujarati.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Gujarati.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Gujarati.js: Expected atom at position 3\n ^\\p{Script=Gu\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Gunjala_Gondi.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Gunjala_Gondi.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Gunjala_Gondi.js: Expected atom at position 3\n ^\\p{Script=Gu\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Gurmukhi.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Gurmukhi.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Gurmukhi.js: Expected atom at position 3\n ^\\p{Script=Gu\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Han.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Han.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Han.js: Expected atom at position 3\n ^\\p{Script=Ha\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Hangul.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Hangul.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Hangul.js: Expected atom at position 3\n ^\\p{Script=Ha\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Hanifi_Rohingya.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Hanifi_Rohingya.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Hanifi_Rohingya.js: Expected atom at position 3\n ^\\p{Script=Ha\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Hanunoo.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Hanunoo.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Hanunoo.js: Expected atom at position 3\n ^\\p{Script=Ha\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Hatran.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Hatran.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Hatran.js: Expected atom at position 3\n ^\\p{Script=Ha\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Hebrew.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Hebrew.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Hebrew.js: Expected atom at position 3\n ^\\p{Script=He\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Hiragana.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Hiragana.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Hiragana.js: Expected atom at position 3\n ^\\p{Script=Hi\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Imperial_Aramaic.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Imperial_Aramaic.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Imperial_Aramaic.js: Expected atom at position 3\n ^\\p{Script=Im\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Inherited.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Inherited.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Inherited.js: Expected atom at position 3\n ^\\p{Script=In\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Inscriptional_Pahlavi.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Inscriptional_Pahlavi.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Inscriptional_Pahlavi.js: Expected atom at position 3\n ^\\p{Script=In\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Inscriptional_Parthian.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Inscriptional_Parthian.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Inscriptional_Parthian.js: Expected atom at position 3\n ^\\p{Script=In\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Javanese.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Javanese.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Javanese.js: Expected atom at position 3\n ^\\p{Script=Ja\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Kaithi.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Kaithi.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Kaithi.js: Expected atom at position 3\n ^\\p{Script=Ka\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Kannada.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Kannada.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Kannada.js: Expected atom at position 3\n ^\\p{Script=Ka\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Katakana.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Katakana.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Katakana.js: Expected atom at position 3\n ^\\p{Script=Ka\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Kayah_Li.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Kayah_Li.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Kayah_Li.js: Expected atom at position 3\n ^\\p{Script=Ka\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Kharoshthi.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Kharoshthi.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Kharoshthi.js: Expected atom at position 3\n ^\\p{Script=Kh\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Khitan_Small_Script.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Khitan_Small_Script.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Khitan_Small_Script.js: Expected atom at position 3\n ^\\p{Script=Kh\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Khmer.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Khmer.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Khmer.js: Expected atom at position 3\n ^\\p{Script=Kh\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Khojki.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Khojki.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Khojki.js: Expected atom at position 3\n ^\\p{Script=Kh\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Khudawadi.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Khudawadi.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Khudawadi.js: Expected atom at position 3\n ^\\p{Script=Kh\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Lao.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Lao.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Lao.js: Expected atom at position 3\n ^\\p{Script=La\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Latin.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Latin.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Latin.js: Expected atom at position 3\n ^\\p{Script=La\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Lepcha.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Lepcha.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Lepcha.js: Expected atom at position 3\n ^\\p{Script=Le\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Limbu.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Limbu.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Limbu.js: Expected atom at position 3\n ^\\p{Script=Li\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Linear_A.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Linear_A.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Linear_A.js: Expected atom at position 3\n ^\\p{Script=Li\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Linear_B.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Linear_B.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Linear_B.js: Expected atom at position 3\n ^\\p{Script=Li\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Lisu.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Lisu.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Lisu.js: Expected atom at position 3\n ^\\p{Script=Li\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Lycian.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Lycian.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Lycian.js: Expected atom at position 3\n ^\\p{Script=Ly\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Lydian.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Lydian.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Lydian.js: Expected atom at position 3\n ^\\p{Script=Ly\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Mahajani.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Mahajani.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Mahajani.js: Expected atom at position 3\n ^\\p{Script=Ma\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Makasar.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Makasar.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Makasar.js: Expected atom at position 3\n ^\\p{Script=Ma\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Malayalam.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Malayalam.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Malayalam.js: Expected atom at position 3\n ^\\p{Script=Ma\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Mandaic.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Mandaic.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Mandaic.js: Expected atom at position 3\n ^\\p{Script=Ma\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Manichaean.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Manichaean.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Manichaean.js: Expected atom at position 3\n ^\\p{Script=Ma\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Marchen.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Marchen.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Marchen.js: Expected atom at position 3\n ^\\p{Script=Ma\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Masaram_Gondi.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Masaram_Gondi.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Masaram_Gondi.js: Expected atom at position 3\n ^\\p{Script=Ma\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Medefaidrin.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Medefaidrin.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Medefaidrin.js: Expected atom at position 3\n ^\\p{Script=Me\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Meetei_Mayek.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Meetei_Mayek.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Meetei_Mayek.js: Expected atom at position 3\n ^\\p{Script=Me\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Mende_Kikakui.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Mende_Kikakui.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Mende_Kikakui.js: Expected atom at position 3\n ^\\p{Script=Me\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Meroitic_Cursive.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Meroitic_Cursive.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Meroitic_Cursive.js: Expected atom at position 3\n ^\\p{Script=Me\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Meroitic_Hieroglyphs.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Meroitic_Hieroglyphs.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Meroitic_Hieroglyphs.js: Expected atom at position 3\n ^\\p{Script=Me\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Miao.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Miao.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Miao.js: Expected atom at position 3\n ^\\p{Script=Mi\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Modi.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Modi.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Modi.js: Expected atom at position 3\n ^\\p{Script=Mo\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Mongolian.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Mongolian.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Mongolian.js: Expected atom at position 3\n ^\\p{Script=Mo\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Mro.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Mro.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Mro.js: Expected atom at position 3\n ^\\p{Script=Mr\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Multani.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Multani.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Multani.js: Expected atom at position 3\n ^\\p{Script=Mu\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Myanmar.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Myanmar.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Myanmar.js: Expected atom at position 3\n ^\\p{Script=My\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Nabataean.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Nabataean.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Nabataean.js: Expected atom at position 3\n ^\\p{Script=Na\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Nandinagari.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Nandinagari.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Nandinagari.js: Expected atom at position 3\n ^\\p{Script=Na\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_New_Tai_Lue.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_New_Tai_Lue.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_New_Tai_Lue.js: Expected atom at position 3\n ^\\p{Script=Ne\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Newa.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Newa.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Newa.js: Expected atom at position 3\n ^\\p{Script=Ne\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Nko.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Nko.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Nko.js: Expected atom at position 3\n ^\\p{Script=Nk\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Nushu.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Nushu.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Nushu.js: Expected atom at position 3\n ^\\p{Script=Nu\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Nyiakeng_Puachue_Hmong.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Nyiakeng_Puachue_Hmong.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Nyiakeng_Puachue_Hmong.js: Expected atom at position 3\n ^\\p{Script=Ny\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Ogham.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Ogham.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Ogham.js: Expected atom at position 3\n ^\\p{Script=Og\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Ol_Chiki.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Ol_Chiki.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Ol_Chiki.js: Expected atom at position 3\n ^\\p{Script=Ol\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Old_Hungarian.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Old_Hungarian.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Old_Hungarian.js: Expected atom at position 3\n ^\\p{Script=Ol\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Old_Italic.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Old_Italic.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Old_Italic.js: Expected atom at position 3\n ^\\p{Script=Ol\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Old_North_Arabian.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Old_North_Arabian.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Old_North_Arabian.js: Expected atom at position 3\n ^\\p{Script=Ol\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Old_Permic.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Old_Permic.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Old_Permic.js: Expected atom at position 3\n ^\\p{Script=Ol\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Old_Persian.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Old_Persian.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Old_Persian.js: Expected atom at position 3\n ^\\p{Script=Ol\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Old_Sogdian.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Old_Sogdian.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Old_Sogdian.js: Expected atom at position 3\n ^\\p{Script=Ol\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Old_South_Arabian.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Old_South_Arabian.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Old_South_Arabian.js: Expected atom at position 3\n ^\\p{Script=Ol\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Old_Turkic.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Old_Turkic.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Old_Turkic.js: Expected atom at position 3\n ^\\p{Script=Ol\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Oriya.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Oriya.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Oriya.js: Expected atom at position 3\n ^\\p{Script=Or\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Osage.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Osage.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Osage.js: Expected atom at position 3\n ^\\p{Script=Os\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Osmanya.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Osmanya.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Osmanya.js: Expected atom at position 3\n ^\\p{Script=Os\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Pahawh_Hmong.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Pahawh_Hmong.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Pahawh_Hmong.js: Expected atom at position 3\n ^\\p{Script=Pa\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Palmyrene.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Palmyrene.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Palmyrene.js: Expected atom at position 3\n ^\\p{Script=Pa\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Pau_Cin_Hau.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Pau_Cin_Hau.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Pau_Cin_Hau.js: Expected atom at position 3\n ^\\p{Script=Pa\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Phags_Pa.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Phags_Pa.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Phags_Pa.js: Expected atom at position 3\n ^\\p{Script=Ph\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Phoenician.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Phoenician.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Phoenician.js: Expected atom at position 3\n ^\\p{Script=Ph\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Psalter_Pahlavi.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Psalter_Pahlavi.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Psalter_Pahlavi.js: Expected atom at position 3\n ^\\p{Script=Ps\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Rejang.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Rejang.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Rejang.js: Expected atom at position 3\n ^\\p{Script=Re\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Runic.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Runic.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Runic.js: Expected atom at position 3\n ^\\p{Script=Ru\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Samaritan.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Samaritan.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Samaritan.js: Expected atom at position 3\n ^\\p{Script=Sa\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Saurashtra.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Saurashtra.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Saurashtra.js: Expected atom at position 3\n ^\\p{Script=Sa\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Sharada.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Sharada.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Sharada.js: Expected atom at position 3\n ^\\p{Script=Sh\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Shavian.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Shavian.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Shavian.js: Expected atom at position 3\n ^\\p{Script=Sh\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Siddham.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Siddham.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Siddham.js: Expected atom at position 3\n ^\\p{Script=Si\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_SignWriting.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_SignWriting.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_SignWriting.js: Expected atom at position 3\n ^\\p{Script=Si\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Sinhala.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Sinhala.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Sinhala.js: Expected atom at position 3\n ^\\p{Script=Si\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Sogdian.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Sogdian.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Sogdian.js: Expected atom at position 3\n ^\\p{Script=So\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Sora_Sompeng.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Sora_Sompeng.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Sora_Sompeng.js: Expected atom at position 3\n ^\\p{Script=So\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Soyombo.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Soyombo.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Soyombo.js: Expected atom at position 3\n ^\\p{Script=So\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Sundanese.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Sundanese.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Sundanese.js: Expected atom at position 3\n ^\\p{Script=Su\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Syloti_Nagri.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Syloti_Nagri.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Syloti_Nagri.js: Expected atom at position 3\n ^\\p{Script=Sy\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Syriac.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Syriac.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Syriac.js: Expected atom at position 3\n ^\\p{Script=Sy\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Tagalog.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Tagalog.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Tagalog.js: Expected atom at position 3\n ^\\p{Script=Ta\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Tagbanwa.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Tagbanwa.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Tagbanwa.js: Expected atom at position 3\n ^\\p{Script=Ta\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Tai_Le.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Tai_Le.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Tai_Le.js: Expected atom at position 3\n ^\\p{Script=Ta\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Tai_Tham.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Tai_Tham.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Tai_Tham.js: Expected atom at position 3\n ^\\p{Script=Ta\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Tai_Viet.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Tai_Viet.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Tai_Viet.js: Expected atom at position 3\n ^\\p{Script=Ta\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Takri.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Takri.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Takri.js: Expected atom at position 3\n ^\\p{Script=Ta\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Tamil.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Tamil.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Tamil.js: Expected atom at position 3\n ^\\p{Script=Ta\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Tangut.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Tangut.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Tangut.js: Expected atom at position 3\n ^\\p{Script=Ta\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Telugu.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Telugu.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Telugu.js: Expected atom at position 3\n ^\\p{Script=Te\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Thaana.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Thaana.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Thaana.js: Expected atom at position 3\n ^\\p{Script=Th\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Thai.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Thai.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Thai.js: Expected atom at position 3\n ^\\p{Script=Th\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Tibetan.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Tibetan.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Tibetan.js: Expected atom at position 3\n ^\\p{Script=Ti\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Tifinagh.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Tifinagh.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Tifinagh.js: Expected atom at position 3\n ^\\p{Script=Ti\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Tirhuta.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Tirhuta.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Tirhuta.js: Expected atom at position 3\n ^\\p{Script=Ti\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Ugaritic.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Ugaritic.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Ugaritic.js: Expected atom at position 3\n ^\\p{Script=Ug\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Vai.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Vai.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Vai.js: Expected atom at position 3\n ^\\p{Script=Va\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Wancho.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Wancho.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Wancho.js: Expected atom at position 3\n ^\\p{Script=Wa\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Warang_Citi.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Warang_Citi.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Warang_Citi.js: Expected atom at position 3\n ^\\p{Script=Wa\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Yezidi.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Yezidi.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Yezidi.js: Expected atom at position 3\n ^\\p{Script=Ye\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Yi.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Yi.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Yi.js: Expected atom at position 3\n ^\\p{Script=Yi\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_-_Zanabazar_Square.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Zanabazar_Square.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_-_Zanabazar_Square.js: Expected atom at position 3\n ^\\p{Script=Za\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Adlam.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Adlam.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Adlam.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Ahom.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Ahom.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Ahom.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Anatolian_Hieroglyphs.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Anatolian_Hieroglyphs.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Anatolian_Hieroglyphs.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Arabic.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Arabic.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Arabic.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Armenian.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Armenian.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Armenian.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Avestan.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Avestan.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Avestan.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Balinese.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Balinese.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Balinese.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Bamum.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Bamum.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Bamum.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Bassa_Vah.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Bassa_Vah.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Bassa_Vah.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Batak.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Batak.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Batak.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Bengali.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Bengali.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Bengali.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Bhaiksuki.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Bhaiksuki.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Bhaiksuki.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Bopomofo.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Bopomofo.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Bopomofo.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Brahmi.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Brahmi.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Brahmi.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Braille.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Braille.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Braille.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Buginese.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Buginese.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Buginese.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Buhid.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Buhid.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Buhid.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Canadian_Aboriginal.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Canadian_Aboriginal.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Canadian_Aboriginal.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Carian.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Carian.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Carian.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Caucasian_Albanian.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Caucasian_Albanian.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Caucasian_Albanian.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Chakma.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Chakma.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Chakma.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Cham.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Cham.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Cham.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Cherokee.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Cherokee.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Cherokee.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Chorasmian.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Chorasmian.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Chorasmian.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Common.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Common.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Common.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Coptic.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Coptic.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Coptic.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Cuneiform.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Cuneiform.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Cuneiform.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Cypriot.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Cypriot.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Cypriot.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Cyrillic.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Cyrillic.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Cyrillic.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Deseret.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Deseret.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Deseret.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Devanagari.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Devanagari.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Devanagari.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Dives_Akuru.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Dives_Akuru.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Dives_Akuru.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Dogra.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Dogra.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Dogra.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Duployan.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Duployan.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Duployan.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Egyptian_Hieroglyphs.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Egyptian_Hieroglyphs.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Egyptian_Hieroglyphs.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Elbasan.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Elbasan.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Elbasan.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Elymaic.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Elymaic.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Elymaic.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Ethiopic.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Ethiopic.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Ethiopic.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Georgian.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Georgian.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Georgian.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Glagolitic.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Glagolitic.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Glagolitic.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Gothic.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Gothic.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Gothic.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Grantha.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Grantha.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Grantha.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Greek.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Greek.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Greek.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Gujarati.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Gujarati.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Gujarati.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Gunjala_Gondi.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Gunjala_Gondi.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Gunjala_Gondi.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Gurmukhi.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Gurmukhi.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Gurmukhi.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Han.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Han.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Han.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Hangul.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Hangul.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Hangul.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Hanifi_Rohingya.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Hanifi_Rohingya.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Hanifi_Rohingya.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Hanunoo.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Hanunoo.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Hanunoo.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Hatran.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Hatran.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Hatran.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Hebrew.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Hebrew.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Hebrew.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Hiragana.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Hiragana.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Hiragana.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Imperial_Aramaic.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Imperial_Aramaic.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Imperial_Aramaic.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Inherited.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Inherited.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Inherited.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Inscriptional_Pahlavi.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Inscriptional_Pahlavi.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Inscriptional_Pahlavi.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Inscriptional_Parthian.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Inscriptional_Parthian.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Inscriptional_Parthian.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Javanese.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Javanese.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Javanese.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Kaithi.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Kaithi.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Kaithi.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Kannada.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Kannada.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Kannada.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Katakana.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Katakana.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Katakana.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Kayah_Li.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Kayah_Li.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Kayah_Li.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Kharoshthi.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Kharoshthi.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Kharoshthi.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Khitan_Small_Script.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Khitan_Small_Script.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Khitan_Small_Script.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Khmer.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Khmer.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Khmer.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Khojki.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Khojki.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Khojki.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Khudawadi.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Khudawadi.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Khudawadi.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Lao.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Lao.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Lao.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Latin.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Latin.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Latin.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Lepcha.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Lepcha.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Lepcha.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Limbu.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Limbu.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Limbu.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Linear_A.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Linear_A.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Linear_A.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Linear_B.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Linear_B.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Linear_B.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Lisu.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Lisu.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Lisu.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Lycian.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Lycian.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Lycian.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Lydian.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Lydian.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Lydian.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Mahajani.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Mahajani.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Mahajani.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Makasar.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Makasar.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Makasar.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Malayalam.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Malayalam.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Malayalam.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Mandaic.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Mandaic.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Mandaic.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Manichaean.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Manichaean.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Manichaean.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Marchen.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Marchen.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Marchen.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Masaram_Gondi.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Masaram_Gondi.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Masaram_Gondi.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Medefaidrin.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Medefaidrin.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Medefaidrin.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Meetei_Mayek.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Meetei_Mayek.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Meetei_Mayek.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Mende_Kikakui.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Mende_Kikakui.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Mende_Kikakui.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Meroitic_Cursive.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Meroitic_Cursive.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Meroitic_Cursive.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Meroitic_Hieroglyphs.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Meroitic_Hieroglyphs.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Meroitic_Hieroglyphs.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Miao.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Miao.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Miao.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Modi.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Modi.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Modi.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Mongolian.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Mongolian.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Mongolian.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Mro.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Mro.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Mro.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Multani.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Multani.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Multani.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Myanmar.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Myanmar.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Myanmar.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Nabataean.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Nabataean.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Nabataean.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Nandinagari.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Nandinagari.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Nandinagari.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_New_Tai_Lue.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_New_Tai_Lue.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_New_Tai_Lue.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Newa.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Newa.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Newa.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Nko.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Nko.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Nko.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Nushu.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Nushu.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Nushu.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Nyiakeng_Puachue_Hmong.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Nyiakeng_Puachue_Hmong.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Nyiakeng_Puachue_Hmong.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Ogham.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Ogham.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Ogham.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Ol_Chiki.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Ol_Chiki.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Ol_Chiki.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Old_Hungarian.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Old_Hungarian.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Old_Hungarian.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Old_Italic.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Old_Italic.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Old_Italic.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Old_North_Arabian.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Old_North_Arabian.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Old_North_Arabian.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Old_Permic.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Old_Permic.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Old_Permic.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Old_Persian.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Old_Persian.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Old_Persian.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Old_Sogdian.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Old_Sogdian.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Old_Sogdian.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Old_South_Arabian.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Old_South_Arabian.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Old_South_Arabian.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Old_Turkic.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Old_Turkic.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Old_Turkic.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Oriya.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Oriya.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Oriya.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Osage.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Osage.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Osage.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Osmanya.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Osmanya.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Osmanya.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Pahawh_Hmong.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Pahawh_Hmong.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Pahawh_Hmong.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Palmyrene.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Palmyrene.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Palmyrene.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Pau_Cin_Hau.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Pau_Cin_Hau.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Pau_Cin_Hau.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Phags_Pa.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Phags_Pa.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Phags_Pa.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Phoenician.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Phoenician.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Phoenician.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Psalter_Pahlavi.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Psalter_Pahlavi.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Psalter_Pahlavi.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Rejang.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Rejang.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Rejang.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Runic.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Runic.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Runic.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Samaritan.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Samaritan.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Samaritan.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Saurashtra.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Saurashtra.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Saurashtra.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Sharada.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Sharada.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Sharada.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Shavian.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Shavian.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Shavian.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Siddham.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Siddham.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Siddham.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_SignWriting.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_SignWriting.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_SignWriting.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Sinhala.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Sinhala.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Sinhala.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Sogdian.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Sogdian.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Sogdian.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Sora_Sompeng.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Sora_Sompeng.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Sora_Sompeng.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Soyombo.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Soyombo.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Soyombo.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Sundanese.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Sundanese.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Sundanese.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Syloti_Nagri.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Syloti_Nagri.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Syloti_Nagri.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Syriac.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Syriac.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Syriac.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Tagalog.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Tagalog.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Tagalog.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Tagbanwa.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Tagbanwa.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Tagbanwa.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Tai_Le.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Tai_Le.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Tai_Le.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Tai_Tham.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Tai_Tham.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Tai_Tham.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Tai_Viet.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Tai_Viet.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Tai_Viet.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Takri.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Takri.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Takri.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Tamil.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Tamil.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Tamil.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Tangut.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Tangut.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Tangut.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Telugu.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Telugu.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Telugu.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Thaana.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Thaana.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Thaana.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Thai.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Thai.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Thai.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Tibetan.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Tibetan.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Tibetan.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Tifinagh.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Tifinagh.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Tifinagh.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Tirhuta.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Tirhuta.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Tirhuta.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Ugaritic.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Ugaritic.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Ugaritic.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Vai.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Vai.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Vai.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Wancho.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Wancho.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Wancho.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Warang_Citi.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Warang_Citi.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Warang_Citi.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Yezidi.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Yezidi.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Yezidi.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Yi.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Yi.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Yi.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Zanabazar_Square.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Zanabazar_Square.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Zanabazar_Square.js: Expected atom at position 3\n ^\\p{Script_Ex\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Sentence_Terminal.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Sentence_Terminal.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Sentence_Terminal.js: Expected atom at position 3\n ^\\p{Sentence_\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Soft_Dotted.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Soft_Dotted.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Soft_Dotted.js: Expected atom at position 3\n ^\\p{Soft_Dott\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Terminal_Punctuation.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Terminal_Punctuation.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Terminal_Punctuation.js: Expected atom at position 3\n ^\\p{Terminal_\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Unified_Ideograph.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Unified_Ideograph.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Unified_Ideograph.js: Expected atom at position 3\n ^\\p{Unified_I\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Uppercase.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Uppercase.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Uppercase.js: Expected atom at position 3\n ^\\p{Uppercase\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/Variation_Selector.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Variation_Selector.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/Variation_Selector.js: Expected atom at position 3\n ^\\p{Variation\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/White_Space.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/White_Space.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/White_Space.js: Expected atom at position 3\n ^\\p{White_Spa\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/XID_Continue.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/XID_Continue.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/XID_Continue.js: Expected atom at position 3\n ^\\p{XID_Conti\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/built-ins/RegExp/property-escapes/generated/XID_Start.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/XID_Start.js SyntaxError: test/built-ins/RegExp/property-escapes/generated/XID_Start.js: Expected atom at position 3\n ^\\p{XID_Start\n ^ at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/ASCII.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/ASCII.js Test262Error: `\\p{ASCII}` should match U+000000 (`\u0000`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/ASCII_Hex_Digit.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/ASCII_Hex_Digit.js Test262Error: `\\p{ASCII_Hex_Digit}` should match U+000030 (`0`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Alphabetic.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Alphabetic.js Test262Error: `\\p{Alphabetic}` should match U+0000AA (`ª`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Any.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Any.js Test262Error: `\\p{Any}` should match U+00DC00 (`�`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Assigned.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Assigned.js Test262Error: `\\p{Assigned}` should match U+00038C (`Ό`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Bidi_Control.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Bidi_Control.js Test262Error: `\\p{Bidi_Control}` should match U+00061C (`؜`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Bidi_Mirrored.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Bidi_Mirrored.js Test262Error: `\\p{Bidi_Mirrored}` should match U+00003C (`\u003c`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Case_Ignorable.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Case_Ignorable.js Test262Error: `\\p{Case_Ignorable}` should match U+000027 (`'`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Cased.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Cased.js Test262Error: `\\p{Cased}` should match U+0000AA (`ª`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Changes_When_Casefolded.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Changes_When_Casefolded.js Test262Error: `\\p{Changes_When_Casefolded}` should match U+0000B5 (`µ`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Changes_When_Casemapped.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Changes_When_Casemapped.js Test262Error: `\\p{Changes_When_Casemapped}` should match U+0000B5 (`µ`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Changes_When_Lowercased.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Changes_When_Lowercased.js Test262Error: `\\p{Changes_When_Lowercased}` should match U+000100 (`Ā`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Changes_When_NFKC_Casefolded.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Changes_When_NFKC_Casefolded.js Test262Error: `\\p{Changes_When_NFKC_Casefolded}` should match U+0000A0 (` `) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Changes_When_Titlecased.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Changes_When_Titlecased.js Test262Error: `\\p{Changes_When_Titlecased}` should match U+0000B5 (`µ`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Changes_When_Uppercased.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Changes_When_Uppercased.js Test262Error: `\\p{Changes_When_Uppercased}` should match U+0000B5 (`µ`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Dash.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Dash.js Test262Error: `\\p{Dash}` should match U+00002D (`-`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Default_Ignorable_Code_Point.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Default_Ignorable_Code_Point.js Test262Error: `\\p{Default_Ignorable_Code_Point}` should match U+0000AD (`­`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Deprecated.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Deprecated.js Test262Error: `\\p{Deprecated}` should match U+000149 (`ʼn`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Diacritic.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Diacritic.js Test262Error: `\\p{Diacritic}` should match U+00005E (`^`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Emoji.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Emoji.js Test262Error: `\\p{Emoji}` should match U+000023 (`#`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Emoji_Component.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Emoji_Component.js Test262Error: `\\p{Emoji_Component}` should match U+000023 (`#`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Emoji_Modifier.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Emoji_Modifier.js Test262Error: `\\p{Emoji_Modifier}` should match U+01F3FB (`🏻`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Emoji_Modifier_Base.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Emoji_Modifier_Base.js Test262Error: `\\p{Emoji_Modifier_Base}` should match U+00261D (`☝`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Emoji_Presentation.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Emoji_Presentation.js Test262Error: `\\p{Emoji_Presentation}` should match U+0023F0 (`⏰`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Extended_Pictographic.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Extended_Pictographic.js Test262Error: `\\p{Extended_Pictographic}` should match U+0000A9 (`©`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Extender.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Extender.js Test262Error: `\\p{Extender}` should match U+0000B7 (`·`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/General_Category_-_Cased_Letter.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/General_Category_-_Cased_Letter.js Test262Error: `\\p{General_Category=Cased_Letter}` should match U+0000B5 (`µ`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/General_Category_-_Close_Punctuation.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/General_Category_-_Close_Punctuation.js Test262Error: `\\p{General_Category=Close_Punctuation}` should match U+000029 (`)`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/General_Category_-_Connector_Punctuation.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/General_Category_-_Connector_Punctuation.js Test262Error: `\\p{General_Category=Connector_Punctuation}` should match U+00005F (`_`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/General_Category_-_Control.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/General_Category_-_Control.js Test262Error: `\\p{General_Category=Control}` should match U+000000 (`\u0000`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/General_Category_-_Currency_Symbol.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/General_Category_-_Currency_Symbol.js Test262Error: `\\p{General_Category=Currency_Symbol}` should match U+000024 (`$`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/General_Category_-_Dash_Punctuation.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/General_Category_-_Dash_Punctuation.js Test262Error: `\\p{General_Category=Dash_Punctuation}` should match U+00002D (`-`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/General_Category_-_Decimal_Number.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/General_Category_-_Decimal_Number.js Test262Error: `\\p{General_Category=Decimal_Number}` should match U+000030 (`0`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/General_Category_-_Enclosing_Mark.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/General_Category_-_Enclosing_Mark.js Test262Error: `\\p{General_Category=Enclosing_Mark}` should match U+001ABE (`᪾`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/General_Category_-_Final_Punctuation.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/General_Category_-_Final_Punctuation.js Test262Error: `\\p{General_Category=Final_Punctuation}` should match U+0000BB (`»`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/General_Category_-_Format.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/General_Category_-_Format.js Test262Error: `\\p{General_Category=Format}` should match U+0000AD (`­`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/General_Category_-_Initial_Punctuation.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/General_Category_-_Initial_Punctuation.js Test262Error: `\\p{General_Category=Initial_Punctuation}` should match U+0000AB (`«`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/General_Category_-_Letter.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/General_Category_-_Letter.js Test262Error: `\\p{General_Category=Letter}` should match U+0000AA (`ª`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/General_Category_-_Letter_Number.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/General_Category_-_Letter_Number.js Test262Error: `\\p{General_Category=Letter_Number}` should match U+003007 (`〇`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/General_Category_-_Line_Separator.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/General_Category_-_Line_Separator.js Test262Error: `\\p{General_Category=Line_Separator}` should match U+002028 (`\u2028`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/General_Category_-_Lowercase_Letter.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/General_Category_-_Lowercase_Letter.js Test262Error: `\\p{General_Category=Lowercase_Letter}` should match U+0000B5 (`µ`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/General_Category_-_Mark.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/General_Category_-_Mark.js Test262Error: `\\p{General_Category=Mark}` should match U+0005BF (`ֿ`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/General_Category_-_Math_Symbol.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/General_Category_-_Math_Symbol.js Test262Error: `\\p{General_Category=Math_Symbol}` should match U+00002B (`+`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/General_Category_-_Modifier_Letter.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/General_Category_-_Modifier_Letter.js Test262Error: `\\p{General_Category=Modifier_Letter}` should match U+0002EC (`ˬ`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/General_Category_-_Modifier_Symbol.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/General_Category_-_Modifier_Symbol.js Test262Error: `\\p{General_Category=Modifier_Symbol}` should match U+00005E (`^`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/General_Category_-_Nonspacing_Mark.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/General_Category_-_Nonspacing_Mark.js Test262Error: `\\p{General_Category=Nonspacing_Mark}` should match U+0005BF (`ֿ`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/General_Category_-_Number.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/General_Category_-_Number.js Test262Error: `\\p{General_Category=Number}` should match U+0000B9 (`¹`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/General_Category_-_Open_Punctuation.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/General_Category_-_Open_Punctuation.js Test262Error: `\\p{General_Category=Open_Punctuation}` should match U+000028 (`(`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/General_Category_-_Other.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/General_Category_-_Other.js Test262Error: `\\p{General_Category=Other}` should match U+0000AD (`­`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/General_Category_-_Other_Letter.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/General_Category_-_Other_Letter.js Test262Error: `\\p{General_Category=Other_Letter}` should match U+0000AA (`ª`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/General_Category_-_Other_Number.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/General_Category_-_Other_Number.js Test262Error: `\\p{General_Category=Other_Number}` should match U+0000B9 (`¹`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/General_Category_-_Other_Punctuation.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/General_Category_-_Other_Punctuation.js Test262Error: `\\p{General_Category=Other_Punctuation}` should match U+00002A (`*`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/General_Category_-_Other_Symbol.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/General_Category_-_Other_Symbol.js Test262Error: `\\p{General_Category=Other_Symbol}` should match U+0000A6 (`¦`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/General_Category_-_Paragraph_Separator.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/General_Category_-_Paragraph_Separator.js Test262Error: `\\p{General_Category=Paragraph_Separator}` should match U+002029 (`\u2029`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/General_Category_-_Private_Use.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/General_Category_-_Private_Use.js Test262Error: `\\p{General_Category=Private_Use}` should match U+00E000 (``) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/General_Category_-_Punctuation.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/General_Category_-_Punctuation.js Test262Error: `\\p{General_Category=Punctuation}` should match U+00005F (`_`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/General_Category_-_Separator.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/General_Category_-_Separator.js Test262Error: `\\p{General_Category=Separator}` should match U+000020 (` `) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/General_Category_-_Space_Separator.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/General_Category_-_Space_Separator.js Test262Error: `\\p{General_Category=Space_Separator}` should match U+000020 (` `) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/General_Category_-_Spacing_Mark.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/General_Category_-_Spacing_Mark.js Test262Error: `\\p{General_Category=Spacing_Mark}` should match U+000903 (`ः`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/General_Category_-_Surrogate.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/General_Category_-_Surrogate.js Test262Error: `\\p{General_Category=Surrogate}` should match U+00DC00 (`�`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/General_Category_-_Symbol.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/General_Category_-_Symbol.js Test262Error: `\\p{General_Category=Symbol}` should match U+000024 (`$`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/General_Category_-_Titlecase_Letter.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/General_Category_-_Titlecase_Letter.js Test262Error: `\\p{General_Category=Titlecase_Letter}` should match U+0001C5 (`Dž`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/General_Category_-_Unassigned.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/General_Category_-_Unassigned.js Test262Error: `\\p{General_Category=Unassigned}` should match U+00038B (`΋`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/General_Category_-_Uppercase_Letter.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/General_Category_-_Uppercase_Letter.js Test262Error: `\\p{General_Category=Uppercase_Letter}` should match U+000100 (`Ā`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Grapheme_Base.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Grapheme_Base.js Test262Error: `\\p{Grapheme_Base}` should match U+00038C (`Ό`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Grapheme_Extend.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Grapheme_Extend.js Test262Error: `\\p{Grapheme_Extend}` should match U+0005BF (`ֿ`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Hex_Digit.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Hex_Digit.js Test262Error: `\\p{Hex_Digit}` should match U+000030 (`0`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/IDS_Binary_Operator.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/IDS_Binary_Operator.js Test262Error: `\\p{IDS_Binary_Operator}` should match U+002FF0 (`⿰`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/IDS_Trinary_Operator.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/IDS_Trinary_Operator.js Test262Error: `\\p{IDS_Trinary_Operator}` should match U+002FF2 (`⿲`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/ID_Continue.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/ID_Continue.js Test262Error: `\\p{ID_Continue}` should match U+00005F (`_`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/ID_Start.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/ID_Start.js Test262Error: `\\p{ID_Start}` should match U+0000AA (`ª`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Ideographic.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Ideographic.js Test262Error: `\\p{Ideographic}` should match U+016FE4 (`𖿤`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Join_Control.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Join_Control.js Test262Error: `\\p{Join_Control}` should match U+00200C (`‌`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Logical_Order_Exception.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Logical_Order_Exception.js Test262Error: `\\p{Logical_Order_Exception}` should match U+0019BA (`ᦺ`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Lowercase.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Lowercase.js Test262Error: `\\p{Lowercase}` should match U+0000AA (`ª`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Math.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Math.js Test262Error: `\\p{Math}` should match U+00002B (`+`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Noncharacter_Code_Point.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Noncharacter_Code_Point.js Test262Error: `\\p{Noncharacter_Code_Point}` should match U+00FDD0 (`﷐`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Pattern_Syntax.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Pattern_Syntax.js Test262Error: `\\p{Pattern_Syntax}` should match U+000060 (```) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Pattern_White_Space.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Pattern_White_Space.js Test262Error: `\\p{Pattern_White_Space}` should match U+000020 (` `) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Quotation_Mark.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Quotation_Mark.js Test262Error: `\\p{Quotation_Mark}` should match U+000022 (`\"`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Radical.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Radical.js Test262Error: `\\p{Radical}` should match U+002E80 (`⺀`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Regional_Indicator.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Regional_Indicator.js Test262Error: `\\p{Regional_Indicator}` should match U+01F1E6 (`🇦`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Adlam.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Adlam.js Test262Error: `\\p{Script=Adlam}` should match U+01E900 (`𞤀`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Ahom.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Ahom.js Test262Error: `\\p{Script=Ahom}` should match U+011700 (`𑜀`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Anatolian_Hieroglyphs.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Anatolian_Hieroglyphs.js Test262Error: `\\p{Script=Anatolian_Hieroglyphs}` should match U+014400 (`𔐀`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Arabic.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Arabic.js Test262Error: `\\p{Script=Arabic}` should match U+00061C (`؜`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Armenian.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Armenian.js Test262Error: `\\p{Script=Armenian}` should match U+000531 (`Ա`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Avestan.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Avestan.js Test262Error: `\\p{Script=Avestan}` should match U+010B00 (`𐬀`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Balinese.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Balinese.js Test262Error: `\\p{Script=Balinese}` should match U+001B00 (`ᬀ`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Bamum.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Bamum.js Test262Error: `\\p{Script=Bamum}` should match U+00A6A0 (`ꚠ`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Bassa_Vah.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Bassa_Vah.js Test262Error: `\\p{Script=Bassa_Vah}` should match U+016AD0 (`𖫐`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Batak.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Batak.js Test262Error: `\\p{Script=Batak}` should match U+001BC0 (`ᯀ`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Bengali.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Bengali.js Test262Error: `\\p{Script=Bengali}` should match U+0009B2 (`ল`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Bhaiksuki.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Bhaiksuki.js Test262Error: `\\p{Script=Bhaiksuki}` should match U+011C00 (`𑰀`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Bopomofo.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Bopomofo.js Test262Error: `\\p{Script=Bopomofo}` should match U+0002EA (`˪`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Brahmi.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Brahmi.js Test262Error: `\\p{Script=Brahmi}` should match U+01107F (`𑁿`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Braille.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Braille.js Test262Error: `\\p{Script=Braille}` should match U+002800 (`⠀`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Buginese.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Buginese.js Test262Error: `\\p{Script=Buginese}` should match U+001A00 (`ᨀ`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Buhid.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Buhid.js Test262Error: `\\p{Script=Buhid}` should match U+001740 (`ᝀ`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Canadian_Aboriginal.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Canadian_Aboriginal.js Test262Error: `\\p{Script=Canadian_Aboriginal}` should match U+001400 (`᐀`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Carian.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Carian.js Test262Error: `\\p{Script=Carian}` should match U+0102A0 (`𐊠`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Caucasian_Albanian.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Caucasian_Albanian.js Test262Error: `\\p{Script=Caucasian_Albanian}` should match U+01056F (`𐕯`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Chakma.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Chakma.js Test262Error: `\\p{Script=Chakma}` should match U+011100 (`𑄀`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Cham.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Cham.js Test262Error: `\\p{Script=Cham}` should match U+00AA00 (`ꨀ`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Cherokee.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Cherokee.js Test262Error: `\\p{Script=Cherokee}` should match U+0013A0 (`Ꭰ`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Chorasmian.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Chorasmian.js Test262Error: `\\p{Script=Chorasmian}` should match U+010FB0 (`𐾰`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Common.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Common.js Test262Error: `\\p{Script=Common}` should match U+0000D7 (`×`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Coptic.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Coptic.js Test262Error: `\\p{Script=Coptic}` should match U+0003E2 (`Ϣ`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Cuneiform.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Cuneiform.js Test262Error: `\\p{Script=Cuneiform}` should match U+012000 (`𒀀`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Cypriot.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Cypriot.js Test262Error: `\\p{Script=Cypriot}` should match U+010808 (`𐠈`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Cyrillic.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Cyrillic.js Test262Error: `\\p{Script=Cyrillic}` should match U+001D2B (`ᴫ`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Deseret.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Deseret.js Test262Error: `\\p{Script=Deseret}` should match U+010400 (`𐐀`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Devanagari.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Devanagari.js Test262Error: `\\p{Script=Devanagari}` should match U+000900 (`ऀ`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Dives_Akuru.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Dives_Akuru.js Test262Error: `\\p{Script=Dives_Akuru}` should match U+011909 (`𑤉`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Dogra.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Dogra.js Test262Error: `\\p{Script=Dogra}` should match U+011800 (`𑠀`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Duployan.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Duployan.js Test262Error: `\\p{Script=Duployan}` should match U+01BC00 (`𛰀`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Egyptian_Hieroglyphs.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Egyptian_Hieroglyphs.js Test262Error: `\\p{Script=Egyptian_Hieroglyphs}` should match U+013000 (`𓀀`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Elbasan.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Elbasan.js Test262Error: `\\p{Script=Elbasan}` should match U+010500 (`𐔀`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Elymaic.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Elymaic.js Test262Error: `\\p{Script=Elymaic}` should match U+010FE0 (`𐿠`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Ethiopic.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Ethiopic.js Test262Error: `\\p{Script=Ethiopic}` should match U+001258 (`ቘ`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Georgian.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Georgian.js Test262Error: `\\p{Script=Georgian}` should match U+0010C7 (`Ⴧ`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Glagolitic.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Glagolitic.js Test262Error: `\\p{Script=Glagolitic}` should match U+002C00 (`Ⰰ`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Gothic.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Gothic.js Test262Error: `\\p{Script=Gothic}` should match U+010330 (`𐌰`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Grantha.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Grantha.js Test262Error: `\\p{Script=Grantha}` should match U+011350 (`𑍐`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Greek.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Greek.js Test262Error: `\\p{Script=Greek}` should match U+00037F (`Ϳ`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Gujarati.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Gujarati.js Test262Error: `\\p{Script=Gujarati}` should match U+000AD0 (`ૐ`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Gunjala_Gondi.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Gunjala_Gondi.js Test262Error: `\\p{Script=Gunjala_Gondi}` should match U+011D60 (`𑵠`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Gurmukhi.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Gurmukhi.js Test262Error: `\\p{Script=Gurmukhi}` should match U+000A3C (`਼`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Han.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Han.js Test262Error: `\\p{Script=Han}` should match U+003005 (`々`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Hangul.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Hangul.js Test262Error: `\\p{Script=Hangul}` should match U+001100 (`ᄀ`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Hanifi_Rohingya.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Hanifi_Rohingya.js Test262Error: `\\p{Script=Hanifi_Rohingya}` should match U+010D00 (`𐴀`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Hanunoo.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Hanunoo.js Test262Error: `\\p{Script=Hanunoo}` should match U+001720 (`ᜠ`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Hatran.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Hatran.js Test262Error: `\\p{Script=Hatran}` should match U+0108E0 (`𐣠`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Hebrew.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Hebrew.js Test262Error: `\\p{Script=Hebrew}` should match U+00FB3E (`מּ`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Hiragana.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Hiragana.js Test262Error: `\\p{Script=Hiragana}` should match U+01F200 (`🈀`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Imperial_Aramaic.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Imperial_Aramaic.js Test262Error: `\\p{Script=Imperial_Aramaic}` should match U+010840 (`𐡀`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Inherited.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Inherited.js Test262Error: `\\p{Script=Inherited}` should match U+000670 (`ٰ`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Inscriptional_Pahlavi.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Inscriptional_Pahlavi.js Test262Error: `\\p{Script=Inscriptional_Pahlavi}` should match U+010B60 (`𐭠`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Inscriptional_Parthian.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Inscriptional_Parthian.js Test262Error: `\\p{Script=Inscriptional_Parthian}` should match U+010B40 (`𐭀`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Javanese.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Javanese.js Test262Error: `\\p{Script=Javanese}` should match U+00A980 (`ꦀ`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Kaithi.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Kaithi.js Test262Error: `\\p{Script=Kaithi}` should match U+0110CD (`𑃍`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Kannada.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Kannada.js Test262Error: `\\p{Script=Kannada}` should match U+000CDE (`ೞ`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Katakana.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Katakana.js Test262Error: `\\p{Script=Katakana}` should match U+01B000 (`𛀀`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Kayah_Li.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Kayah_Li.js Test262Error: `\\p{Script=Kayah_Li}` should match U+00A92F (`꤯`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Kharoshthi.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Kharoshthi.js Test262Error: `\\p{Script=Kharoshthi}` should match U+010A00 (`𐨀`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Khitan_Small_Script.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Khitan_Small_Script.js Test262Error: `\\p{Script=Khitan_Small_Script}` should match U+016FE4 (`𖿤`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Khmer.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Khmer.js Test262Error: `\\p{Script=Khmer}` should match U+001780 (`ក`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Khojki.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Khojki.js Test262Error: `\\p{Script=Khojki}` should match U+011200 (`𑈀`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Khudawadi.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Khudawadi.js Test262Error: `\\p{Script=Khudawadi}` should match U+0112B0 (`𑊰`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Lao.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Lao.js Test262Error: `\\p{Script=Lao}` should match U+000E84 (`ຄ`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Latin.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Latin.js Test262Error: `\\p{Script=Latin}` should match U+0000AA (`ª`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Lepcha.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Lepcha.js Test262Error: `\\p{Script=Lepcha}` should match U+001C00 (`ᰀ`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Limbu.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Limbu.js Test262Error: `\\p{Script=Limbu}` should match U+001940 (`᥀`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Linear_A.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Linear_A.js Test262Error: `\\p{Script=Linear_A}` should match U+010600 (`𐘀`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Linear_B.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Linear_B.js Test262Error: `\\p{Script=Linear_B}` should match U+010000 (`𐀀`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Lisu.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Lisu.js Test262Error: `\\p{Script=Lisu}` should match U+011FB0 (`𑾰`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Lycian.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Lycian.js Test262Error: `\\p{Script=Lycian}` should match U+010280 (`𐊀`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Lydian.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Lydian.js Test262Error: `\\p{Script=Lydian}` should match U+01093F (`𐤿`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Mahajani.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Mahajani.js Test262Error: `\\p{Script=Mahajani}` should match U+011150 (`𑅐`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Makasar.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Makasar.js Test262Error: `\\p{Script=Makasar}` should match U+011EE0 (`𑻠`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Malayalam.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Malayalam.js Test262Error: `\\p{Script=Malayalam}` should match U+000D00 (`ഀ`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Mandaic.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Mandaic.js Test262Error: `\\p{Script=Mandaic}` should match U+00085E (`࡞`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Manichaean.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Manichaean.js Test262Error: `\\p{Script=Manichaean}` should match U+010AC0 (`𐫀`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Marchen.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Marchen.js Test262Error: `\\p{Script=Marchen}` should match U+011C70 (`𑱰`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Masaram_Gondi.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Masaram_Gondi.js Test262Error: `\\p{Script=Masaram_Gondi}` should match U+011D3A (`𑴺`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Medefaidrin.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Medefaidrin.js Test262Error: `\\p{Script=Medefaidrin}` should match U+016E40 (`𖹀`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Meetei_Mayek.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Meetei_Mayek.js Test262Error: `\\p{Script=Meetei_Mayek}` should match U+00AAE0 (`ꫠ`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Mende_Kikakui.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Mende_Kikakui.js Test262Error: `\\p{Script=Mende_Kikakui}` should match U+01E800 (`𞠀`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Meroitic_Cursive.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Meroitic_Cursive.js Test262Error: `\\p{Script=Meroitic_Cursive}` should match U+0109A0 (`𐦠`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Meroitic_Hieroglyphs.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Meroitic_Hieroglyphs.js Test262Error: `\\p{Script=Meroitic_Hieroglyphs}` should match U+010980 (`𐦀`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Miao.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Miao.js Test262Error: `\\p{Script=Miao}` should match U+016F00 (`𖼀`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Modi.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Modi.js Test262Error: `\\p{Script=Modi}` should match U+011600 (`𑘀`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Mongolian.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Mongolian.js Test262Error: `\\p{Script=Mongolian}` should match U+001804 (`᠄`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Mro.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Mro.js Test262Error: `\\p{Script=Mro}` should match U+016A40 (`𖩀`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Multani.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Multani.js Test262Error: `\\p{Script=Multani}` should match U+011288 (`𑊈`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Myanmar.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Myanmar.js Test262Error: `\\p{Script=Myanmar}` should match U+001000 (`က`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Nabataean.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Nabataean.js Test262Error: `\\p{Script=Nabataean}` should match U+010880 (`𐢀`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Nandinagari.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Nandinagari.js Test262Error: `\\p{Script=Nandinagari}` should match U+0119A0 (`𑦠`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_New_Tai_Lue.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_New_Tai_Lue.js Test262Error: `\\p{Script=New_Tai_Lue}` should match U+001980 (`ᦀ`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Newa.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Newa.js Test262Error: `\\p{Script=Newa}` should match U+011400 (`𑐀`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Nko.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Nko.js Test262Error: `\\p{Script=Nko}` should match U+0007C0 (`߀`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Nushu.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Nushu.js Test262Error: `\\p{Script=Nushu}` should match U+016FE1 (`𖿡`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Nyiakeng_Puachue_Hmong.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Nyiakeng_Puachue_Hmong.js Test262Error: `\\p{Script=Nyiakeng_Puachue_Hmong}` should match U+01E100 (`𞄀`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Ogham.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Ogham.js Test262Error: `\\p{Script=Ogham}` should match U+001680 (` `) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Ol_Chiki.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Ol_Chiki.js Test262Error: `\\p{Script=Ol_Chiki}` should match U+001C50 (`᱐`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Old_Hungarian.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Old_Hungarian.js Test262Error: `\\p{Script=Old_Hungarian}` should match U+010C80 (`𐲀`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Old_Italic.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Old_Italic.js Test262Error: `\\p{Script=Old_Italic}` should match U+010300 (`𐌀`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Old_North_Arabian.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Old_North_Arabian.js Test262Error: `\\p{Script=Old_North_Arabian}` should match U+010A80 (`𐪀`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Old_Permic.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Old_Permic.js Test262Error: `\\p{Script=Old_Permic}` should match U+010350 (`𐍐`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Old_Persian.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Old_Persian.js Test262Error: `\\p{Script=Old_Persian}` should match U+0103A0 (`𐎠`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Old_Sogdian.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Old_Sogdian.js Test262Error: `\\p{Script=Old_Sogdian}` should match U+010F00 (`𐼀`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Old_South_Arabian.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Old_South_Arabian.js Test262Error: `\\p{Script=Old_South_Arabian}` should match U+010A60 (`𐩠`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Old_Turkic.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Old_Turkic.js Test262Error: `\\p{Script=Old_Turkic}` should match U+010C00 (`𐰀`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Oriya.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Oriya.js Test262Error: `\\p{Script=Oriya}` should match U+000B01 (`ଁ`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Osage.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Osage.js Test262Error: `\\p{Script=Osage}` should match U+0104B0 (`𐒰`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Osmanya.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Osmanya.js Test262Error: `\\p{Script=Osmanya}` should match U+010480 (`𐒀`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Pahawh_Hmong.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Pahawh_Hmong.js Test262Error: `\\p{Script=Pahawh_Hmong}` should match U+016B00 (`𖬀`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Palmyrene.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Palmyrene.js Test262Error: `\\p{Script=Palmyrene}` should match U+010860 (`𐡠`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Pau_Cin_Hau.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Pau_Cin_Hau.js Test262Error: `\\p{Script=Pau_Cin_Hau}` should match U+011AC0 (`𑫀`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Phags_Pa.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Phags_Pa.js Test262Error: `\\p{Script=Phags_Pa}` should match U+00A840 (`ꡀ`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Phoenician.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Phoenician.js Test262Error: `\\p{Script=Phoenician}` should match U+01091F (`𐤟`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Psalter_Pahlavi.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Psalter_Pahlavi.js Test262Error: `\\p{Script=Psalter_Pahlavi}` should match U+010B80 (`𐮀`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Rejang.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Rejang.js Test262Error: `\\p{Script=Rejang}` should match U+00A95F (`꥟`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Runic.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Runic.js Test262Error: `\\p{Script=Runic}` should match U+0016A0 (`ᚠ`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Samaritan.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Samaritan.js Test262Error: `\\p{Script=Samaritan}` should match U+000800 (`ࠀ`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Saurashtra.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Saurashtra.js Test262Error: `\\p{Script=Saurashtra}` should match U+00A880 (`ꢀ`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Sharada.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Sharada.js Test262Error: `\\p{Script=Sharada}` should match U+011180 (`𑆀`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Shavian.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Shavian.js Test262Error: `\\p{Script=Shavian}` should match U+010450 (`𐑐`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Siddham.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Siddham.js Test262Error: `\\p{Script=Siddham}` should match U+011580 (`𑖀`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_SignWriting.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_SignWriting.js Test262Error: `\\p{Script=SignWriting}` should match U+01D800 (`𝠀`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Sinhala.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Sinhala.js Test262Error: `\\p{Script=Sinhala}` should match U+000DBD (`ල`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Sogdian.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Sogdian.js Test262Error: `\\p{Script=Sogdian}` should match U+010F30 (`𐼰`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Sora_Sompeng.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Sora_Sompeng.js Test262Error: `\\p{Script=Sora_Sompeng}` should match U+0110D0 (`𑃐`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Soyombo.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Soyombo.js Test262Error: `\\p{Script=Soyombo}` should match U+011A50 (`𑩐`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Sundanese.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Sundanese.js Test262Error: `\\p{Script=Sundanese}` should match U+001B80 (`ᮀ`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Syloti_Nagri.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Syloti_Nagri.js Test262Error: `\\p{Script=Syloti_Nagri}` should match U+00A800 (`ꠀ`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Syriac.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Syriac.js Test262Error: `\\p{Script=Syriac}` should match U+000700 (`܀`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Tagalog.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Tagalog.js Test262Error: `\\p{Script=Tagalog}` should match U+001700 (`ᜀ`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Tagbanwa.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Tagbanwa.js Test262Error: `\\p{Script=Tagbanwa}` should match U+001760 (`ᝠ`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Tai_Le.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Tai_Le.js Test262Error: `\\p{Script=Tai_Le}` should match U+001950 (`ᥐ`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Tai_Tham.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Tai_Tham.js Test262Error: `\\p{Script=Tai_Tham}` should match U+001A20 (`ᨠ`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Tai_Viet.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Tai_Viet.js Test262Error: `\\p{Script=Tai_Viet}` should match U+00AA80 (`ꪀ`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Takri.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Takri.js Test262Error: `\\p{Script=Takri}` should match U+011680 (`𑚀`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Tamil.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Tamil.js Test262Error: `\\p{Script=Tamil}` should match U+000B9C (`ஜ`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Tangut.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Tangut.js Test262Error: `\\p{Script=Tangut}` should match U+016FE0 (`𖿠`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Telugu.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Telugu.js Test262Error: `\\p{Script=Telugu}` should match U+000C00 (`ఀ`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Thaana.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Thaana.js Test262Error: `\\p{Script=Thaana}` should match U+000780 (`ހ`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Thai.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Thai.js Test262Error: `\\p{Script=Thai}` should match U+000E01 (`ก`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Tibetan.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Tibetan.js Test262Error: `\\p{Script=Tibetan}` should match U+000F00 (`ༀ`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Tifinagh.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Tifinagh.js Test262Error: `\\p{Script=Tifinagh}` should match U+002D7F (`⵿`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Tirhuta.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Tirhuta.js Test262Error: `\\p{Script=Tirhuta}` should match U+011480 (`𑒀`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Ugaritic.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Ugaritic.js Test262Error: `\\p{Script=Ugaritic}` should match U+01039F (`𐎟`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Vai.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Vai.js Test262Error: `\\p{Script=Vai}` should match U+00A500 (`ꔀ`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Wancho.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Wancho.js Test262Error: `\\p{Script=Wancho}` should match U+01E2FF (`𞋿`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Warang_Citi.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Warang_Citi.js Test262Error: `\\p{Script=Warang_Citi}` should match U+0118FF (`𑣿`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Yezidi.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Yezidi.js Test262Error: `\\p{Script=Yezidi}` should match U+010E80 (`𐺀`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Yi.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Yi.js Test262Error: `\\p{Script=Yi}` should match U+00A000 (`ꀀ`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_-_Zanabazar_Square.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_-_Zanabazar_Square.js Test262Error: `\\p{Script=Zanabazar_Square}` should match U+011A00 (`𑨀`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Adlam.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Adlam.js Test262Error: `\\p{Script_Extensions=Adlam}` should match U+000640 (`ـ`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Ahom.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Ahom.js Test262Error: `\\p{Script_Extensions=Ahom}` should match U+011700 (`𑜀`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Anatolian_Hieroglyphs.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Anatolian_Hieroglyphs.js Test262Error: `\\p{Script_Extensions=Anatolian_Hieroglyphs}` should match U+014400 (`𔐀`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Arabic.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Arabic.js Test262Error: `\\p{Script_Extensions=Arabic}` should match U+01EE24 (`𞸤`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Armenian.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Armenian.js Test262Error: `\\p{Script_Extensions=Armenian}` should match U+000531 (`Ա`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Avestan.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Avestan.js Test262Error: `\\p{Script_Extensions=Avestan}` should match U+010B00 (`𐬀`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Balinese.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Balinese.js Test262Error: `\\p{Script_Extensions=Balinese}` should match U+001B00 (`ᬀ`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Bamum.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Bamum.js Test262Error: `\\p{Script_Extensions=Bamum}` should match U+00A6A0 (`ꚠ`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Bassa_Vah.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Bassa_Vah.js Test262Error: `\\p{Script_Extensions=Bassa_Vah}` should match U+016AD0 (`𖫐`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Batak.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Batak.js Test262Error: `\\p{Script_Extensions=Batak}` should match U+001BC0 (`ᯀ`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Bengali.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Bengali.js Test262Error: `\\p{Script_Extensions=Bengali}` should match U+0009B2 (`ল`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Bhaiksuki.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Bhaiksuki.js Test262Error: `\\p{Script_Extensions=Bhaiksuki}` should match U+011C00 (`𑰀`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Bopomofo.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Bopomofo.js Test262Error: `\\p{Script_Extensions=Bopomofo}` should match U+003030 (`〰`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Brahmi.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Brahmi.js Test262Error: `\\p{Script_Extensions=Brahmi}` should match U+01107F (`𑁿`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Braille.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Braille.js Test262Error: `\\p{Script_Extensions=Braille}` should match U+002800 (`⠀`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Buginese.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Buginese.js Test262Error: `\\p{Script_Extensions=Buginese}` should match U+00A9CF (`ꧏ`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Buhid.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Buhid.js Test262Error: `\\p{Script_Extensions=Buhid}` should match U+001735 (`᜵`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Canadian_Aboriginal.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Canadian_Aboriginal.js Test262Error: `\\p{Script_Extensions=Canadian_Aboriginal}` should match U+001400 (`᐀`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Carian.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Carian.js Test262Error: `\\p{Script_Extensions=Carian}` should match U+0102A0 (`𐊠`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Caucasian_Albanian.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Caucasian_Albanian.js Test262Error: `\\p{Script_Extensions=Caucasian_Albanian}` should match U+01056F (`𐕯`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Chakma.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Chakma.js Test262Error: `\\p{Script_Extensions=Chakma}` should match U+0009E6 (`০`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Cham.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Cham.js Test262Error: `\\p{Script_Extensions=Cham}` should match U+00AA00 (`ꨀ`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Cherokee.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Cherokee.js Test262Error: `\\p{Script_Extensions=Cherokee}` should match U+0013A0 (`Ꭰ`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Chorasmian.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Chorasmian.js Test262Error: `\\p{Script_Extensions=Chorasmian}` should match U+010FB0 (`𐾰`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Common.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Common.js Test262Error: `\\p{Script_Extensions=Common}` should match U+0000D7 (`×`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Coptic.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Coptic.js Test262Error: `\\p{Script_Extensions=Coptic}` should match U+0003E2 (`Ϣ`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Cuneiform.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Cuneiform.js Test262Error: `\\p{Script_Extensions=Cuneiform}` should match U+012000 (`𒀀`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Cypriot.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Cypriot.js Test262Error: `\\p{Script_Extensions=Cypriot}` should match U+010808 (`𐠈`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Cyrillic.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Cyrillic.js Test262Error: `\\p{Script_Extensions=Cyrillic}` should match U+001D2B (`ᴫ`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Deseret.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Deseret.js Test262Error: `\\p{Script_Extensions=Deseret}` should match U+010400 (`𐐀`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Devanagari.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Devanagari.js Test262Error: `\\p{Script_Extensions=Devanagari}` should match U+0020F0 (`⃰`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Dives_Akuru.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Dives_Akuru.js Test262Error: `\\p{Script_Extensions=Dives_Akuru}` should match U+011909 (`𑤉`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Dogra.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Dogra.js Test262Error: `\\p{Script_Extensions=Dogra}` should match U+000964 (`।`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Duployan.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Duployan.js Test262Error: `\\p{Script_Extensions=Duployan}` should match U+01BC00 (`𛰀`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Egyptian_Hieroglyphs.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Egyptian_Hieroglyphs.js Test262Error: `\\p{Script_Extensions=Egyptian_Hieroglyphs}` should match U+013000 (`𓀀`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Elbasan.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Elbasan.js Test262Error: `\\p{Script_Extensions=Elbasan}` should match U+010500 (`𐔀`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Elymaic.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Elymaic.js Test262Error: `\\p{Script_Extensions=Elymaic}` should match U+010FE0 (`𐿠`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Ethiopic.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Ethiopic.js Test262Error: `\\p{Script_Extensions=Ethiopic}` should match U+001258 (`ቘ`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Georgian.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Georgian.js Test262Error: `\\p{Script_Extensions=Georgian}` should match U+0010C7 (`Ⴧ`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Glagolitic.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Glagolitic.js Test262Error: `\\p{Script_Extensions=Glagolitic}` should match U+000484 (`҄`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Gothic.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Gothic.js Test262Error: `\\p{Script_Extensions=Gothic}` should match U+010330 (`𐌰`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Grantha.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Grantha.js Test262Error: `\\p{Script_Extensions=Grantha}` should match U+001CD0 (`᳐`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Greek.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Greek.js Test262Error: `\\p{Script_Extensions=Greek}` should match U+000342 (`͂`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Gujarati.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Gujarati.js Test262Error: `\\p{Script_Extensions=Gujarati}` should match U+000AD0 (`ૐ`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Gunjala_Gondi.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Gunjala_Gondi.js Test262Error: `\\p{Script_Extensions=Gunjala_Gondi}` should match U+000964 (`।`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Gurmukhi.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Gurmukhi.js Test262Error: `\\p{Script_Extensions=Gurmukhi}` should match U+000A3C (`਼`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Han.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Han.js Test262Error: `\\p{Script_Extensions=Han}` should match U+003030 (`〰`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Hangul.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Hangul.js Test262Error: `\\p{Script_Extensions=Hangul}` should match U+003037 (`〷`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Hanifi_Rohingya.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Hanifi_Rohingya.js Test262Error: `\\p{Script_Extensions=Hanifi_Rohingya}` should match U+00060C (`،`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Hanunoo.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Hanunoo.js Test262Error: `\\p{Script_Extensions=Hanunoo}` should match U+001720 (`ᜠ`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Hatran.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Hatran.js Test262Error: `\\p{Script_Extensions=Hatran}` should match U+0108E0 (`𐣠`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Hebrew.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Hebrew.js Test262Error: `\\p{Script_Extensions=Hebrew}` should match U+00FB3E (`מּ`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Hiragana.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Hiragana.js Test262Error: `\\p{Script_Extensions=Hiragana}` should match U+003037 (`〷`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Imperial_Aramaic.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Imperial_Aramaic.js Test262Error: `\\p{Script_Extensions=Imperial_Aramaic}` should match U+010840 (`𐡀`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Inherited.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Inherited.js Test262Error: `\\p{Script_Extensions=Inherited}` should match U+001DF9 (`᷹`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Inscriptional_Pahlavi.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Inscriptional_Pahlavi.js Test262Error: `\\p{Script_Extensions=Inscriptional_Pahlavi}` should match U+010B60 (`𐭠`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Inscriptional_Parthian.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Inscriptional_Parthian.js Test262Error: `\\p{Script_Extensions=Inscriptional_Parthian}` should match U+010B40 (`𐭀`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Javanese.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Javanese.js Test262Error: `\\p{Script_Extensions=Javanese}` should match U+00A980 (`ꦀ`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Kaithi.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Kaithi.js Test262Error: `\\p{Script_Extensions=Kaithi}` should match U+0110CD (`𑃍`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Kannada.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Kannada.js Test262Error: `\\p{Script_Extensions=Kannada}` should match U+000CDE (`ೞ`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Katakana.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Katakana.js Test262Error: `\\p{Script_Extensions=Katakana}` should match U+003037 (`〷`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Kayah_Li.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Kayah_Li.js Test262Error: `\\p{Script_Extensions=Kayah_Li}` should match U+00A900 (`꤀`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Kharoshthi.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Kharoshthi.js Test262Error: `\\p{Script_Extensions=Kharoshthi}` should match U+010A00 (`𐨀`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Khitan_Small_Script.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Khitan_Small_Script.js Test262Error: `\\p{Script_Extensions=Khitan_Small_Script}` should match U+016FE4 (`𖿤`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Khmer.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Khmer.js Test262Error: `\\p{Script_Extensions=Khmer}` should match U+001780 (`ក`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Khojki.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Khojki.js Test262Error: `\\p{Script_Extensions=Khojki}` should match U+000AE6 (`૦`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Khudawadi.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Khudawadi.js Test262Error: `\\p{Script_Extensions=Khudawadi}` should match U+000964 (`।`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Lao.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Lao.js Test262Error: `\\p{Script_Extensions=Lao}` should match U+000E84 (`ຄ`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Latin.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Latin.js Test262Error: `\\p{Script_Extensions=Latin}` should match U+0000AA (`ª`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Lepcha.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Lepcha.js Test262Error: `\\p{Script_Extensions=Lepcha}` should match U+001C00 (`ᰀ`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Limbu.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Limbu.js Test262Error: `\\p{Script_Extensions=Limbu}` should match U+000965 (`॥`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Linear_A.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Linear_A.js Test262Error: `\\p{Script_Extensions=Linear_A}` should match U+010107 (`𐄇`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Linear_B.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Linear_B.js Test262Error: `\\p{Script_Extensions=Linear_B}` should match U+010000 (`𐀀`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Lisu.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Lisu.js Test262Error: `\\p{Script_Extensions=Lisu}` should match U+011FB0 (`𑾰`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Lycian.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Lycian.js Test262Error: `\\p{Script_Extensions=Lycian}` should match U+010280 (`𐊀`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Lydian.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Lydian.js Test262Error: `\\p{Script_Extensions=Lydian}` should match U+01093F (`𐤿`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Mahajani.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Mahajani.js Test262Error: `\\p{Script_Extensions=Mahajani}` should match U+000964 (`।`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Makasar.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Makasar.js Test262Error: `\\p{Script_Extensions=Makasar}` should match U+011EE0 (`𑻠`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Malayalam.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Malayalam.js Test262Error: `\\p{Script_Extensions=Malayalam}` should match U+001CDA (`᳚`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Mandaic.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Mandaic.js Test262Error: `\\p{Script_Extensions=Mandaic}` should match U+000640 (`ـ`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Manichaean.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Manichaean.js Test262Error: `\\p{Script_Extensions=Manichaean}` should match U+000640 (`ـ`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Marchen.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Marchen.js Test262Error: `\\p{Script_Extensions=Marchen}` should match U+011C70 (`𑱰`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Masaram_Gondi.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Masaram_Gondi.js Test262Error: `\\p{Script_Extensions=Masaram_Gondi}` should match U+011D3A (`𑴺`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Medefaidrin.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Medefaidrin.js Test262Error: `\\p{Script_Extensions=Medefaidrin}` should match U+016E40 (`𖹀`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Meetei_Mayek.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Meetei_Mayek.js Test262Error: `\\p{Script_Extensions=Meetei_Mayek}` should match U+00AAE0 (`ꫠ`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Mende_Kikakui.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Mende_Kikakui.js Test262Error: `\\p{Script_Extensions=Mende_Kikakui}` should match U+01E800 (`𞠀`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Meroitic_Cursive.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Meroitic_Cursive.js Test262Error: `\\p{Script_Extensions=Meroitic_Cursive}` should match U+0109A0 (`𐦠`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Meroitic_Hieroglyphs.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Meroitic_Hieroglyphs.js Test262Error: `\\p{Script_Extensions=Meroitic_Hieroglyphs}` should match U+010980 (`𐦀`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Miao.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Miao.js Test262Error: `\\p{Script_Extensions=Miao}` should match U+016F00 (`𖼀`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Modi.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Modi.js Test262Error: `\\p{Script_Extensions=Modi}` should match U+00A830 (`꠰`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Mongolian.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Mongolian.js Test262Error: `\\p{Script_Extensions=Mongolian}` should match U+00202F (` `) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Mro.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Mro.js Test262Error: `\\p{Script_Extensions=Mro}` should match U+016A40 (`𖩀`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Multani.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Multani.js Test262Error: `\\p{Script_Extensions=Multani}` should match U+011288 (`𑊈`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Myanmar.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Myanmar.js Test262Error: `\\p{Script_Extensions=Myanmar}` should match U+00A92E (`꤮`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Nabataean.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Nabataean.js Test262Error: `\\p{Script_Extensions=Nabataean}` should match U+010880 (`𐢀`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Nandinagari.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Nandinagari.js Test262Error: `\\p{Script_Extensions=Nandinagari}` should match U+001CE9 (`ᳩ`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_New_Tai_Lue.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_New_Tai_Lue.js Test262Error: `\\p{Script_Extensions=New_Tai_Lue}` should match U+001980 (`ᦀ`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Newa.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Newa.js Test262Error: `\\p{Script_Extensions=Newa}` should match U+011400 (`𑐀`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Nko.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Nko.js Test262Error: `\\p{Script_Extensions=Nko}` should match U+0007C0 (`߀`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Nushu.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Nushu.js Test262Error: `\\p{Script_Extensions=Nushu}` should match U+016FE1 (`𖿡`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Nyiakeng_Puachue_Hmong.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Nyiakeng_Puachue_Hmong.js Test262Error: `\\p{Script_Extensions=Nyiakeng_Puachue_Hmong}` should match U+01E100 (`𞄀`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Ogham.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Ogham.js Test262Error: `\\p{Script_Extensions=Ogham}` should match U+001680 (` `) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Ol_Chiki.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Ol_Chiki.js Test262Error: `\\p{Script_Extensions=Ol_Chiki}` should match U+001C50 (`᱐`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Old_Hungarian.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Old_Hungarian.js Test262Error: `\\p{Script_Extensions=Old_Hungarian}` should match U+010C80 (`𐲀`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Old_Italic.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Old_Italic.js Test262Error: `\\p{Script_Extensions=Old_Italic}` should match U+010300 (`𐌀`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Old_North_Arabian.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Old_North_Arabian.js Test262Error: `\\p{Script_Extensions=Old_North_Arabian}` should match U+010A80 (`𐪀`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Old_Permic.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Old_Permic.js Test262Error: `\\p{Script_Extensions=Old_Permic}` should match U+000483 (`҃`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Old_Persian.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Old_Persian.js Test262Error: `\\p{Script_Extensions=Old_Persian}` should match U+0103A0 (`𐎠`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Old_Sogdian.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Old_Sogdian.js Test262Error: `\\p{Script_Extensions=Old_Sogdian}` should match U+010F00 (`𐼀`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Old_South_Arabian.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Old_South_Arabian.js Test262Error: `\\p{Script_Extensions=Old_South_Arabian}` should match U+010A60 (`𐩠`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Old_Turkic.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Old_Turkic.js Test262Error: `\\p{Script_Extensions=Old_Turkic}` should match U+010C00 (`𐰀`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Oriya.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Oriya.js Test262Error: `\\p{Script_Extensions=Oriya}` should match U+001CDA (`᳚`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Osage.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Osage.js Test262Error: `\\p{Script_Extensions=Osage}` should match U+0104B0 (`𐒰`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Osmanya.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Osmanya.js Test262Error: `\\p{Script_Extensions=Osmanya}` should match U+010480 (`𐒀`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Pahawh_Hmong.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Pahawh_Hmong.js Test262Error: `\\p{Script_Extensions=Pahawh_Hmong}` should match U+016B00 (`𖬀`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Palmyrene.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Palmyrene.js Test262Error: `\\p{Script_Extensions=Palmyrene}` should match U+010860 (`𐡠`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Pau_Cin_Hau.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Pau_Cin_Hau.js Test262Error: `\\p{Script_Extensions=Pau_Cin_Hau}` should match U+011AC0 (`𑫀`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Phags_Pa.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Phags_Pa.js Test262Error: `\\p{Script_Extensions=Phags_Pa}` should match U+001805 (`᠅`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Phoenician.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Phoenician.js Test262Error: `\\p{Script_Extensions=Phoenician}` should match U+01091F (`𐤟`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Psalter_Pahlavi.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Psalter_Pahlavi.js Test262Error: `\\p{Script_Extensions=Psalter_Pahlavi}` should match U+000640 (`ـ`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Rejang.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Rejang.js Test262Error: `\\p{Script_Extensions=Rejang}` should match U+00A95F (`꥟`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Runic.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Runic.js Test262Error: `\\p{Script_Extensions=Runic}` should match U+0016A0 (`ᚠ`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Samaritan.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Samaritan.js Test262Error: `\\p{Script_Extensions=Samaritan}` should match U+000800 (`ࠀ`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Saurashtra.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Saurashtra.js Test262Error: `\\p{Script_Extensions=Saurashtra}` should match U+00A880 (`ꢀ`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Sharada.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Sharada.js Test262Error: `\\p{Script_Extensions=Sharada}` should match U+000951 (`॑`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Shavian.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Shavian.js Test262Error: `\\p{Script_Extensions=Shavian}` should match U+010450 (`𐑐`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Siddham.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Siddham.js Test262Error: `\\p{Script_Extensions=Siddham}` should match U+011580 (`𑖀`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_SignWriting.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_SignWriting.js Test262Error: `\\p{Script_Extensions=SignWriting}` should match U+01D800 (`𝠀`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Sinhala.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Sinhala.js Test262Error: `\\p{Script_Extensions=Sinhala}` should match U+000DBD (`ල`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Sogdian.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Sogdian.js Test262Error: `\\p{Script_Extensions=Sogdian}` should match U+000640 (`ـ`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Sora_Sompeng.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Sora_Sompeng.js Test262Error: `\\p{Script_Extensions=Sora_Sompeng}` should match U+0110D0 (`𑃐`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Soyombo.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Soyombo.js Test262Error: `\\p{Script_Extensions=Soyombo}` should match U+011A50 (`𑩐`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Sundanese.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Sundanese.js Test262Error: `\\p{Script_Extensions=Sundanese}` should match U+001B80 (`ᮀ`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Syloti_Nagri.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Syloti_Nagri.js Test262Error: `\\p{Script_Extensions=Syloti_Nagri}` should match U+000964 (`।`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Syriac.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Syriac.js Test262Error: `\\p{Script_Extensions=Syriac}` should match U+00060C (`،`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Tagalog.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Tagalog.js Test262Error: `\\p{Script_Extensions=Tagalog}` should match U+001700 (`ᜀ`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Tagbanwa.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Tagbanwa.js Test262Error: `\\p{Script_Extensions=Tagbanwa}` should match U+001735 (`᜵`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Tai_Le.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Tai_Le.js Test262Error: `\\p{Script_Extensions=Tai_Le}` should match U+001040 (`၀`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Tai_Tham.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Tai_Tham.js Test262Error: `\\p{Script_Extensions=Tai_Tham}` should match U+001A20 (`ᨠ`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Tai_Viet.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Tai_Viet.js Test262Error: `\\p{Script_Extensions=Tai_Viet}` should match U+00AA80 (`ꪀ`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Takri.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Takri.js Test262Error: `\\p{Script_Extensions=Takri}` should match U+000964 (`।`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Tamil.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Tamil.js Test262Error: `\\p{Script_Extensions=Tamil}` should match U+000B9C (`ஜ`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Tangut.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Tangut.js Test262Error: `\\p{Script_Extensions=Tangut}` should match U+016FE0 (`𖿠`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Telugu.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Telugu.js Test262Error: `\\p{Script_Extensions=Telugu}` should match U+001CDA (`᳚`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Thaana.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Thaana.js Test262Error: `\\p{Script_Extensions=Thaana}` should match U+00060C (`،`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Thai.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Thai.js Test262Error: `\\p{Script_Extensions=Thai}` should match U+000E01 (`ก`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Tibetan.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Tibetan.js Test262Error: `\\p{Script_Extensions=Tibetan}` should match U+000F00 (`ༀ`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Tifinagh.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Tifinagh.js Test262Error: `\\p{Script_Extensions=Tifinagh}` should match U+002D7F (`⵿`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Tirhuta.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Tirhuta.js Test262Error: `\\p{Script_Extensions=Tirhuta}` should match U+001CF2 (`ᳲ`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Ugaritic.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Ugaritic.js Test262Error: `\\p{Script_Extensions=Ugaritic}` should match U+01039F (`𐎟`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Vai.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Vai.js Test262Error: `\\p{Script_Extensions=Vai}` should match U+00A500 (`ꔀ`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Wancho.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Wancho.js Test262Error: `\\p{Script_Extensions=Wancho}` should match U+01E2FF (`𞋿`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Warang_Citi.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Warang_Citi.js Test262Error: `\\p{Script_Extensions=Warang_Citi}` should match U+0118FF (`𑣿`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Yezidi.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Yezidi.js Test262Error: `\\p{Script_Extensions=Yezidi}` should match U+00060C (`،`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Yi.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Yi.js Test262Error: `\\p{Script_Extensions=Yi}` should match U+0030FB (`・`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Zanabazar_Square.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Script_Extensions_-_Zanabazar_Square.js Test262Error: `\\p{Script_Extensions=Zanabazar_Square}` should match U+011A00 (`𑨀`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Sentence_Terminal.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Sentence_Terminal.js Test262Error: `\\p{Sentence_Terminal}` should match U+000021 (`!`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Soft_Dotted.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Soft_Dotted.js Test262Error: `\\p{Soft_Dotted}` should match U+00012F (`į`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Terminal_Punctuation.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Terminal_Punctuation.js Test262Error: `\\p{Terminal_Punctuation}` should match U+000021 (`!`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Unified_Ideograph.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Unified_Ideograph.js Test262Error: `\\p{Unified_Ideograph}` should match U+00FA11 (`﨑`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Uppercase.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Uppercase.js Test262Error: `\\p{Uppercase}` should match U+000100 (`Ā`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/Variation_Selector.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/Variation_Selector.js Test262Error: `\\p{Variation_Selector}` should match U+00180B (`᠋`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/White_Space.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/White_Space.js Test262Error: `\\p{White_Space}` should match U+000020 (` `) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/XID_Continue.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/XID_Continue.js Test262Error: `\\p{XID_Continue}` should match U+00005F (`_`) at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/built-ins/RegExp/property-escapes/generated/XID_Start.js-strict:true": "[test/built-ins/RegExp/property-escapes/generated/XID_Start.js Test262Error: `\\p{XID_Start}` should match U+0000AA (`ª`) at harness/sta.js:22:9(49)]: %!v(MISSING)", "test/built-ins/RegExp/property-escapes/grammar-extension-In-prefix-Block-implicit-negated.js-strict:true": "[test/built-ins/RegExp/property-escapes/grammar-extension-In-prefix-Block-implicit-negated.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", "test/built-ins/RegExp/property-escapes/grammar-extension-In-prefix-Block-implicit.js-strict:true": "[test/built-ins/RegExp/property-escapes/grammar-extension-In-prefix-Block-implicit.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", "test/built-ins/RegExp/property-escapes/grammar-extension-In-prefix-Script-implicit-negated.js-strict:true": "[test/built-ins/RegExp/property-escapes/grammar-extension-In-prefix-Script-implicit-negated.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", @@ -792,7 +792,6 @@ "test/built-ins/RegExp/prototype/Symbol.matchAll/isregexp-called-once.js-strict:true": "[test/built-ins/RegExp/prototype/Symbol.matchAll/isregexp-called-once.js Test262Error: Expected SameValue(«3», «4») to be true at harness/sta.js:22:9(49)]: %!v(MISSING)", "test/built-ins/RegExp/prototype/Symbol.matchAll/isregexp-this-throws.js-strict:true": "[test/built-ins/RegExp/prototype/Symbol.matchAll/isregexp-this-throws.js Test262Error: Expected a Test262Error but got a SyntaxError at harness/sta.js:22:9(49)]: %!v(MISSING)", "test/built-ins/RegExp/prototype/Symbol.matchAll/species-constructor-get-species-throws.js-strict:true": "[test/built-ins/RegExp/prototype/Symbol.matchAll/species-constructor-get-species-throws.js Test262Error: Expected a Test262Error to be thrown but no exception was thrown at all at harness/sta.js:22:9(49)]: %!v(MISSING)", - "test/built-ins/RegExp/prototype/Symbol.matchAll/species-constructor.js-strict:true": "[test/built-ins/RegExp/prototype/Symbol.matchAll/species-constructor.js Test262Error: Expected SameValue(«», «u») to be true at harness/sta.js:22:9(49)]: %!v(MISSING)", "test/built-ins/RegExp/prototype/Symbol.replace/named-groups-fn.js-strict:true": "[test/built-ins/RegExp/prototype/Symbol.replace/named-groups-fn.js Test262Error: Expected SameValue(«a», «null») to be true at harness/sta.js:22:9(49)]: %!v(MISSING)", "test/built-ins/RegExp/prototype/Symbol.replace/named-groups.js-strict:true": "[test/built-ins/RegExp/prototype/Symbol.replace/named-groups.js SyntaxError: Invalid regular expression (regexp2): (?\u003c$𐒤\u003eb) (Invalid regular expression (regexp2): (?\u003c$𐒤\u003eb) (error parsing regexp: invalid group name: group names must begin with a word character and have a matching terminator in `(?\u003c$𐒤\u003eb)`)) at test/built-ins/RegExp/prototype/Symbol.replace/named-groups.js:45:18]: %!v(MISSING)", "test/built-ins/RegExp/prototype/Symbol.replace/poisoned-stdlib.js-strict:true": "[test/built-ins/RegExp/prototype/Symbol.replace/poisoned-stdlib.js Test262Error: 0 setter should be unreachable. at set (test/built-ins/RegExp/prototype/Symbol.replace/poisoned-stdlib.js:27:19(8))]: %!v(MISSING)", @@ -882,7 +881,7 @@ "test/built-ins/TypedArrayConstructors/ctors/buffer-arg/use-default-proto-if-custom-proto-is-not-object.js-strict:true": "[test/built-ins/TypedArrayConstructors/ctors/buffer-arg/use-default-proto-if-custom-proto-is-not-object.js Test262Error: Expected SameValue(«function TypedArray() { [native code] }», «function Float64Array() { [native code] }») to be true (Testing with Float64Array.) at testWithTypedArrayConstructors (harness/testTypedArray.js:61:13(43))]: %!v(MISSING)", "test/built-ins/TypedArrayConstructors/ctors/length-arg/use-default-proto-if-custom-proto-is-not-object.js-strict:true": "[test/built-ins/TypedArrayConstructors/ctors/length-arg/use-default-proto-if-custom-proto-is-not-object.js Test262Error: Expected SameValue(«function TypedArray() { [native code] }», «function Float64Array() { [native code] }») to be true (Testing with Float64Array.) at testWithTypedArrayConstructors (harness/testTypedArray.js:61:13(43))]: %!v(MISSING)", "test/built-ins/TypedArrayConstructors/ctors/no-args/use-default-proto-if-custom-proto-is-not-object.js-strict:true": "[test/built-ins/TypedArrayConstructors/ctors/no-args/use-default-proto-if-custom-proto-is-not-object.js Test262Error: Expected SameValue(«function TypedArray() { [native code] }», «function Float64Array() { [native code] }») to be true (Testing with Float64Array.) at testWithTypedArrayConstructors (harness/testTypedArray.js:61:13(43))]: %!v(MISSING)", - "test/built-ins/TypedArrayConstructors/ctors/object-arg/as-generator-iterable-returns.js-strict:true": "[test/built-ins/TypedArrayConstructors/ctors/object-arg/as-generator-iterable-returns.js ReferenceError: regeneratorRuntime is not defined (Testing with Float64Array.) at testWithTypedArrayConstructors (harness/testTypedArray.js:61:13(43))]: %!v(MISSING)", + "test/built-ins/TypedArrayConstructors/ctors/object-arg/as-generator-iterable-returns.js-strict:true": "[test/built-ins/TypedArrayConstructors/ctors/object-arg/as-generator-iterable-returns.js test/built-ins/TypedArrayConstructors/ctors/object-arg/as-generator-iterable-returns.js: Line 21:21 Unexpected token * (and 3 more errors)]: %!v(MISSING)", "test/built-ins/TypedArrayConstructors/ctors/object-arg/use-default-proto-if-custom-proto-is-not-object.js-strict:true": "[test/built-ins/TypedArrayConstructors/ctors/object-arg/use-default-proto-if-custom-proto-is-not-object.js TypeError: Invalid TypedArray: [object Object] (Testing with Float64Array.) at testWithTypedArrayConstructors (harness/testTypedArray.js:61:13(43))]: %!v(MISSING)", "test/built-ins/TypedArrayConstructors/ctors/typedarray-arg/detached-when-species-retrieved-different-type.js-strict:true": "[test/built-ins/TypedArrayConstructors/ctors/typedarray-arg/detached-when-species-retrieved-different-type.js Test262Error: TypeError thrown for detached source buffer Expected a TypeError to be thrown but no exception was thrown at all (Testing with Float64Array.) at testWithTypedArrayConstructors (harness/testTypedArray.js:61:13(43))]: %!v(MISSING)", "test/built-ins/TypedArrayConstructors/ctors/typedarray-arg/detached-when-species-retrieved-same-type.js-strict:true": "[test/built-ins/TypedArrayConstructors/ctors/typedarray-arg/detached-when-species-retrieved-same-type.js Test262Error: TypeError thrown for detached source buffer Expected a TypeError to be thrown but no exception was thrown at all (Testing with Float64Array.) at testWithTypedArrayConstructors (harness/testTypedArray.js:61:13(43))]: %!v(MISSING)", @@ -961,11 +960,11 @@ "test/built-ins/WeakRef/prototype/deref/not-a-constructor.js-strict:true": "[test/built-ins/WeakRef/prototype/deref/not-a-constructor.js ReferenceError: WeakRef is not defined at test/built-ins/WeakRef/prototype/deref/not-a-constructor.js:26:15(4)]: %!v(MISSING)", "test/built-ins/WeakRef/prototype/deref/prop-desc.js-strict:true": "[test/built-ins/WeakRef/prototype/deref/prop-desc.js ReferenceError: WeakRef is not defined at test/built-ins/WeakRef/prototype/deref/prop-desc.js:19:25(3)]: %!v(MISSING)", "test/built-ins/WeakRef/prototype/deref/return-target.js-strict:true": "[test/built-ins/WeakRef/prototype/deref/return-target.js ReferenceError: WeakRef is not defined at test/built-ins/WeakRef/prototype/deref/return-target.js:21:16(7)]: %!v(MISSING)", - "test/built-ins/WeakRef/prototype/deref/this-does-not-have-internal-target-throws.js-strict:true": "[test/built-ins/WeakRef/prototype/deref/this-does-not-have-internal-target-throws.js ReferenceError: WeakRef is not defined at test/built-ins/WeakRef/prototype/deref/this-does-not-have-internal-target-throws.js:22:26(32)]: %!v(MISSING)", + "test/built-ins/WeakRef/prototype/deref/this-does-not-have-internal-target-throws.js-strict:true": "[test/built-ins/WeakRef/prototype/deref/this-does-not-have-internal-target-throws.js ReferenceError: WeakRef is not defined at test/built-ins/WeakRef/prototype/deref/this-does-not-have-internal-target-throws.js:22:25(12)]: %!v(MISSING)", "test/built-ins/WeakRef/prototype/deref/this-not-object-throws.js-strict:true": "[test/built-ins/WeakRef/prototype/deref/this-not-object-throws.js ReferenceError: WeakRef is not defined at test/built-ins/WeakRef/prototype/deref/this-not-object-throws.js:22:25(5)]: %!v(MISSING)", "test/built-ins/WeakRef/prototype/prop-desc.js-strict:true": "[test/built-ins/WeakRef/prototype/prop-desc.js ReferenceError: WeakRef is not defined at test/built-ins/WeakRef/prototype/prop-desc.js:15:16(1)]: %!v(MISSING)", "test/built-ins/WeakRef/prototype/proto.js-strict:true": "[test/built-ins/WeakRef/prototype/proto.js ReferenceError: WeakRef is not defined at test/built-ins/WeakRef/prototype/proto.js:14:35(5)]: %!v(MISSING)", - "test/built-ins/WeakRef/returns-new-object-from-constructor.js-strict:true": "[test/built-ins/WeakRef/returns-new-object-from-constructor.js ReferenceError: WeakRef is not defined at test/built-ins/WeakRef/returns-new-object-from-constructor.js:35:14(19)]: %!v(MISSING)", + "test/built-ins/WeakRef/returns-new-object-from-constructor.js-strict:true": "[test/built-ins/WeakRef/returns-new-object-from-constructor.js ReferenceError: WeakRef is not defined at test/built-ins/WeakRef/returns-new-object-from-constructor.js:35:14(9)]: %!v(MISSING)", "test/built-ins/WeakRef/target-not-object-throws.js-strict:true": "[test/built-ins/WeakRef/target-not-object-throws.js Test262Error: typeof WeakRef is function Expected SameValue(«undefined», «function») to be true at harness/sta.js:22:9(49)]: %!v(MISSING)", "test/built-ins/WeakRef/undefined-newtarget-throws.js-strict:true": "[test/built-ins/WeakRef/undefined-newtarget-throws.js Test262Error: typeof WeakRef is function Expected SameValue(«undefined», «function») to be true at harness/sta.js:22:9(49)]: %!v(MISSING)", "test/built-ins/global/global-object.js-strict:true": "[test/built-ins/global/global-object.js ReferenceError: globalThis is not defined at test/built-ins/global/global-object.js:12:24(5)]: %!v(MISSING)", @@ -977,9 +976,9 @@ "test/built-ins/parseInt/S15.1.2.2_A2_T10_U180E.js-strict:true": "[test/built-ins/parseInt/S15.1.2.2_A2_T10_U180E.js Test262Error: parseInt(mongolianVowelSeparator + \"1\") must return NaN Expected SameValue(«1», «NaN») to be true at harness/sta.js:22:9(49)]: %!v(MISSING)", "test/built-ins/parseInt/S15.1.2.2_A9.6.js-strict:true": "[test/built-ins/parseInt/S15.1.2.2_A9.6.js Test262Error: Object.prototype.hasOwnProperty.call(parseInt, \"prototype\") must return false Expected SameValue(«true», «false») to be true at harness/sta.js:22:9(49)]: %!v(MISSING)", "test/built-ins/parseInt/not-a-constructor.js-strict:true": "[test/built-ins/parseInt/not-a-constructor.js Test262Error: isConstructor(parseInt) must return false Expected SameValue(«true», «false») to be true at harness/sta.js:22:9(49)]: %!v(MISSING)", - "test/harness/assert-notsamevalue-tostring.js-strict:true": "[test/harness/assert-notsamevalue-tostring.js ReferenceError: regeneratorRuntime is not defined at test/harness/assert-notsamevalue-tostring.js:12:75(16)]: %!v(MISSING)", - "test/harness/assert-samevalue-tostring.js-strict:true": "[test/harness/assert-samevalue-tostring.js ReferenceError: regeneratorRuntime is not defined at test/harness/assert-samevalue-tostring.js:12:75(16)]: %!v(MISSING)", - "test/harness/assert-tostring.js-strict:true": "[test/harness/assert-tostring.js ReferenceError: regeneratorRuntime is not defined at test/harness/assert-tostring.js:12:75(16)]: %!v(MISSING)", + "test/harness/assert-notsamevalue-tostring.js-strict:true": "[test/harness/assert-notsamevalue-tostring.js test/harness/assert-notsamevalue-tostring.js: Line 12:49 Unexpected token function (and 7 more errors)]: %!v(MISSING)", + "test/harness/assert-samevalue-tostring.js-strict:true": "[test/harness/assert-samevalue-tostring.js test/harness/assert-samevalue-tostring.js: Line 12:49 Unexpected token function (and 7 more errors)]: %!v(MISSING)", + "test/harness/assert-tostring.js-strict:true": "[test/harness/assert-tostring.js test/harness/assert-tostring.js: Line 12:49 Unexpected token function (and 7 more errors)]: %!v(MISSING)", "test/language/arguments-object/arguments-caller.js-strict:true": "[test/language/arguments-object/arguments-caller.js Test262Error: arguments.caller does not exist Expected SameValue(«[object Object]», «undefined») to be true at harness/sta.js:22:9(49)]: %!v(MISSING)", "test/language/arguments-object/cls-decl-private-meth-args-trailing-comma-multiple.js-strict:true": "[test/language/arguments-object/cls-decl-private-meth-args-trailing-comma-multiple.js SyntaxError: test/language/arguments-object/cls-decl-private-meth-args-trailing-comma-multiple.js: Unexpected character '#' (37:2)\n 35 | var callCount = 0;\n 36 | class C {\n\u003e 37 | #method() {\n | ^\n 38 | assert.sameValue(arguments.length, 2);\n 39 | assert.sameValue(arguments[0], 42);\n 40 | assert.sameValue(arguments[1], 'TC39'); at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/arguments-object/cls-decl-private-meth-args-trailing-comma-null.js-strict:true": "[test/language/arguments-object/cls-decl-private-meth-args-trailing-comma-null.js SyntaxError: test/language/arguments-object/cls-decl-private-meth-args-trailing-comma-null.js: Unexpected character '#' (37:2)\n 35 | var callCount = 0;\n 36 | class C {\n\u003e 37 | #method() {\n | ^\n 38 | assert.sameValue(arguments.length, 2);\n 39 | assert.sameValue(arguments[0], 42);\n 40 | assert.sameValue(arguments[1], null); at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", @@ -1035,11 +1034,8 @@ "test/language/block-scope/syntax/function-declarations/in-statement-position-if-expression-statement-else-statement.js-strict:true": "[test/language/block-scope/syntax/function-declarations/in-statement-position-if-expression-statement-else-statement.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", "test/language/block-scope/syntax/function-declarations/in-statement-position-if-expression-statement.js-strict:true": "[test/language/block-scope/syntax/function-declarations/in-statement-position-if-expression-statement.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", "test/language/block-scope/syntax/function-declarations/in-statement-position-while-expression-statement.js-strict:true": "[test/language/block-scope/syntax/function-declarations/in-statement-position-while-expression-statement.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", - "test/language/block-scope/syntax/redeclaration/async-function-name-redeclaration-attempt-with-async-function.js-strict:true": "[test/language/block-scope/syntax/redeclaration/async-function-name-redeclaration-attempt-with-async-function.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", "test/language/block-scope/syntax/redeclaration/async-function-name-redeclaration-attempt-with-class.js-strict:true": "[test/language/block-scope/syntax/redeclaration/async-function-name-redeclaration-attempt-with-class.js TypeError SyntaxError]: unexpected error type (%!s(MISSING)), expected (%!s(MISSING))", - "test/language/block-scope/syntax/redeclaration/async-function-name-redeclaration-attempt-with-function.js-strict:true": "[test/language/block-scope/syntax/redeclaration/async-function-name-redeclaration-attempt-with-function.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", "test/language/block-scope/syntax/redeclaration/async-function-name-redeclaration-attempt-with-let.js-strict:true": "[test/language/block-scope/syntax/redeclaration/async-function-name-redeclaration-attempt-with-let.js TypeError SyntaxError]: unexpected error type (%!s(MISSING)), expected (%!s(MISSING))", - "test/language/block-scope/syntax/redeclaration/async-function-name-redeclaration-attempt-with-var.js-strict:true": "[test/language/block-scope/syntax/redeclaration/async-function-name-redeclaration-attempt-with-var.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", "test/language/block-scope/syntax/redeclaration/class-name-redeclaration-attempt-with-async-function.js-strict:true": "[test/language/block-scope/syntax/redeclaration/class-name-redeclaration-attempt-with-async-function.js TypeError SyntaxError]: unexpected error type (%!s(MISSING)), expected (%!s(MISSING))", "test/language/block-scope/syntax/redeclaration/class-name-redeclaration-attempt-with-class.js-strict:true": "[test/language/block-scope/syntax/redeclaration/class-name-redeclaration-attempt-with-class.js TypeError SyntaxError]: unexpected error type (%!s(MISSING)), expected (%!s(MISSING))", "test/language/block-scope/syntax/redeclaration/class-name-redeclaration-attempt-with-const.js-strict:true": "[test/language/block-scope/syntax/redeclaration/class-name-redeclaration-attempt-with-const.js TypeError SyntaxError]: unexpected error type (%!s(MISSING)), expected (%!s(MISSING))", @@ -1052,23 +1048,19 @@ "test/language/block-scope/syntax/redeclaration/const-name-redeclaration-attempt-with-function.js-strict:true": "[test/language/block-scope/syntax/redeclaration/const-name-redeclaration-attempt-with-function.js TypeError SyntaxError]: unexpected error type (%!s(MISSING)), expected (%!s(MISSING))", "test/language/block-scope/syntax/redeclaration/const-name-redeclaration-attempt-with-let.js-strict:true": "[test/language/block-scope/syntax/redeclaration/const-name-redeclaration-attempt-with-let.js TypeError SyntaxError]: unexpected error type (%!s(MISSING)), expected (%!s(MISSING))", "test/language/block-scope/syntax/redeclaration/const-name-redeclaration-attempt-with-var.js-strict:true": "[test/language/block-scope/syntax/redeclaration/const-name-redeclaration-attempt-with-var.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", - "test/language/block-scope/syntax/redeclaration/fn-scope-var-name-redeclaration-attempt-with-async-function.js-strict:true": "[test/language/block-scope/syntax/redeclaration/fn-scope-var-name-redeclaration-attempt-with-async-function.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", "test/language/block-scope/syntax/redeclaration/fn-scope-var-name-redeclaration-attempt-with-class.js-strict:true": "[test/language/block-scope/syntax/redeclaration/fn-scope-var-name-redeclaration-attempt-with-class.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", "test/language/block-scope/syntax/redeclaration/fn-scope-var-name-redeclaration-attempt-with-const.js-strict:true": "[test/language/block-scope/syntax/redeclaration/fn-scope-var-name-redeclaration-attempt-with-const.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", "test/language/block-scope/syntax/redeclaration/fn-scope-var-name-redeclaration-attempt-with-function.js-strict:true": "[test/language/block-scope/syntax/redeclaration/fn-scope-var-name-redeclaration-attempt-with-function.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", "test/language/block-scope/syntax/redeclaration/fn-scope-var-name-redeclaration-attempt-with-let.js-strict:true": "[test/language/block-scope/syntax/redeclaration/fn-scope-var-name-redeclaration-attempt-with-let.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", "test/language/block-scope/syntax/redeclaration/function-declaration-attempt-to-redeclare-with-var-declaration-nested-in-function.js-strict:true": "[test/language/block-scope/syntax/redeclaration/function-declaration-attempt-to-redeclare-with-var-declaration-nested-in-function.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", - "test/language/block-scope/syntax/redeclaration/function-name-redeclaration-attempt-with-async-function.js-strict:true": "[test/language/block-scope/syntax/redeclaration/function-name-redeclaration-attempt-with-async-function.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", "test/language/block-scope/syntax/redeclaration/function-name-redeclaration-attempt-with-class.js-strict:true": "[test/language/block-scope/syntax/redeclaration/function-name-redeclaration-attempt-with-class.js TypeError SyntaxError]: unexpected error type (%!s(MISSING)), expected (%!s(MISSING))", "test/language/block-scope/syntax/redeclaration/function-name-redeclaration-attempt-with-function.js-strict:true": "[test/language/block-scope/syntax/redeclaration/function-name-redeclaration-attempt-with-function.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", "test/language/block-scope/syntax/redeclaration/function-name-redeclaration-attempt-with-let.js-strict:true": "[test/language/block-scope/syntax/redeclaration/function-name-redeclaration-attempt-with-let.js TypeError SyntaxError]: unexpected error type (%!s(MISSING)), expected (%!s(MISSING))", "test/language/block-scope/syntax/redeclaration/function-name-redeclaration-attempt-with-var.js-strict:true": "[test/language/block-scope/syntax/redeclaration/function-name-redeclaration-attempt-with-var.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", - "test/language/block-scope/syntax/redeclaration/inner-block-var-name-redeclaration-attempt-with-async-function.js-strict:true": "[test/language/block-scope/syntax/redeclaration/inner-block-var-name-redeclaration-attempt-with-async-function.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", "test/language/block-scope/syntax/redeclaration/inner-block-var-name-redeclaration-attempt-with-class.js-strict:true": "[test/language/block-scope/syntax/redeclaration/inner-block-var-name-redeclaration-attempt-with-class.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", "test/language/block-scope/syntax/redeclaration/inner-block-var-name-redeclaration-attempt-with-const.js-strict:true": "[test/language/block-scope/syntax/redeclaration/inner-block-var-name-redeclaration-attempt-with-const.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", "test/language/block-scope/syntax/redeclaration/inner-block-var-name-redeclaration-attempt-with-function.js-strict:true": "[test/language/block-scope/syntax/redeclaration/inner-block-var-name-redeclaration-attempt-with-function.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", "test/language/block-scope/syntax/redeclaration/inner-block-var-name-redeclaration-attempt-with-let.js-strict:true": "[test/language/block-scope/syntax/redeclaration/inner-block-var-name-redeclaration-attempt-with-let.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", - "test/language/block-scope/syntax/redeclaration/inner-block-var-redeclaration-attempt-after-async-function.js-strict:true": "[test/language/block-scope/syntax/redeclaration/inner-block-var-redeclaration-attempt-after-async-function.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", "test/language/block-scope/syntax/redeclaration/inner-block-var-redeclaration-attempt-after-class.js-strict:true": "[test/language/block-scope/syntax/redeclaration/inner-block-var-redeclaration-attempt-after-class.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", "test/language/block-scope/syntax/redeclaration/inner-block-var-redeclaration-attempt-after-const.js-strict:true": "[test/language/block-scope/syntax/redeclaration/inner-block-var-redeclaration-attempt-after-const.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", "test/language/block-scope/syntax/redeclaration/inner-block-var-redeclaration-attempt-after-function.js-strict:true": "[test/language/block-scope/syntax/redeclaration/inner-block-var-redeclaration-attempt-after-function.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", @@ -1079,12 +1071,10 @@ "test/language/block-scope/syntax/redeclaration/let-name-redeclaration-attempt-with-function.js-strict:true": "[test/language/block-scope/syntax/redeclaration/let-name-redeclaration-attempt-with-function.js TypeError SyntaxError]: unexpected error type (%!s(MISSING)), expected (%!s(MISSING))", "test/language/block-scope/syntax/redeclaration/let-name-redeclaration-attempt-with-let.js-strict:true": "[test/language/block-scope/syntax/redeclaration/let-name-redeclaration-attempt-with-let.js TypeError SyntaxError]: unexpected error type (%!s(MISSING)), expected (%!s(MISSING))", "test/language/block-scope/syntax/redeclaration/let-name-redeclaration-attempt-with-var.js-strict:true": "[test/language/block-scope/syntax/redeclaration/let-name-redeclaration-attempt-with-var.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", - "test/language/block-scope/syntax/redeclaration/var-name-redeclaration-attempt-with-async-function.js-strict:true": "[test/language/block-scope/syntax/redeclaration/var-name-redeclaration-attempt-with-async-function.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", "test/language/block-scope/syntax/redeclaration/var-name-redeclaration-attempt-with-class.js-strict:true": "[test/language/block-scope/syntax/redeclaration/var-name-redeclaration-attempt-with-class.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", "test/language/block-scope/syntax/redeclaration/var-name-redeclaration-attempt-with-const.js-strict:true": "[test/language/block-scope/syntax/redeclaration/var-name-redeclaration-attempt-with-const.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", "test/language/block-scope/syntax/redeclaration/var-name-redeclaration-attempt-with-function.js-strict:true": "[test/language/block-scope/syntax/redeclaration/var-name-redeclaration-attempt-with-function.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", "test/language/block-scope/syntax/redeclaration/var-name-redeclaration-attempt-with-let.js-strict:true": "[test/language/block-scope/syntax/redeclaration/var-name-redeclaration-attempt-with-let.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", - "test/language/block-scope/syntax/redeclaration/var-redeclaration-attempt-after-async-function.js-strict:true": "[test/language/block-scope/syntax/redeclaration/var-redeclaration-attempt-after-async-function.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", "test/language/block-scope/syntax/redeclaration/var-redeclaration-attempt-after-class.js-strict:true": "[test/language/block-scope/syntax/redeclaration/var-redeclaration-attempt-after-class.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", "test/language/block-scope/syntax/redeclaration/var-redeclaration-attempt-after-const.js-strict:true": "[test/language/block-scope/syntax/redeclaration/var-redeclaration-attempt-after-const.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", "test/language/block-scope/syntax/redeclaration/var-redeclaration-attempt-after-function.js-strict:true": "[test/language/block-scope/syntax/redeclaration/var-redeclaration-attempt-after-function.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", @@ -1101,17 +1091,17 @@ "test/language/comments/hashbang/use-strict.js-strict:false": "[test/language/comments/hashbang/use-strict.js SyntaxError: test/language/comments/hashbang/use-strict.js: 'with' in strict mode (17:0)\n 15 | ---*/\n 16 | \n\u003e 17 | with ({}) {}\n | ^\n 18 | at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/computed-property-names/class/accessor/getter-duplicates.js-strict:true": "[test/language/computed-property-names/class/accessor/getter-duplicates.js TypeError: test/language/computed-property-names/class/accessor/getter-duplicates.js: Cannot read property '_inherits' of undefined at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/computed-property-names/class/accessor/setter-duplicates.js-strict:true": "[test/language/computed-property-names/class/accessor/setter-duplicates.js TypeError: test/language/computed-property-names/class/accessor/setter-duplicates.js: Cannot read property '_inherits' of undefined at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/language/computed-property-names/class/method/constructor-can-be-generator.js-strict:true": "[test/language/computed-property-names/class/method/constructor-can-be-generator.js ReferenceError: regeneratorRuntime is not defined at test/language/computed-property-names/class/method/constructor-can-be-generator.js:10:40(10)]: %!v(MISSING)", - "test/language/computed-property-names/class/method/generator.js-strict:true": "[test/language/computed-property-names/class/method/generator.js ReferenceError: regeneratorRuntime is not defined at test/language/computed-property-names/class/method/generator.js:11:30(10)]: %!v(MISSING)", - "test/language/computed-property-names/class/static/generator-constructor.js-strict:true": "[test/language/computed-property-names/class/static/generator-constructor.js ReferenceError: regeneratorRuntime is not defined at test/language/computed-property-names/class/static/generator-constructor.js:11:44(11)]: %!v(MISSING)", - "test/language/computed-property-names/class/static/generator-prototype.js-strict:true": "[test/language/computed-property-names/class/static/generator-prototype.js Test262Error: Expected a TypeError but got a ReferenceError at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/language/computed-property-names/class/method/constructor-can-be-generator.js-strict:true": "[test/language/computed-property-names/class/method/constructor-can-be-generator.js test/language/computed-property-names/class/method/constructor-can-be-generator.js: Line 10:35 Unexpected token * (and 1 more errors)]: %!v(MISSING)", + "test/language/computed-property-names/class/method/generator.js-strict:true": "[test/language/computed-property-names/class/method/generator.js test/language/computed-property-names/class/method/generator.js: Line 11:25 Unexpected token * (and 3 more errors)]: %!v(MISSING)", + "test/language/computed-property-names/class/static/generator-constructor.js-strict:true": "[test/language/computed-property-names/class/static/generator-constructor.js test/language/computed-property-names/class/static/generator-constructor.js: Line 11:39 Unexpected token * (and 1 more errors)]: %!v(MISSING)", + "test/language/computed-property-names/class/static/generator-prototype.js-strict:true": "[test/language/computed-property-names/class/static/generator-prototype.js test/language/computed-property-names/class/static/generator-prototype.js: Line 12:35 Unexpected token * (and 1 more errors)]: %!v(MISSING)", "test/language/computed-property-names/class/static/getter-prototype.js-strict:true": "[test/language/computed-property-names/class/static/getter-prototype.js Test262Error: Expected a TypeError to be thrown but no exception was thrown at all at harness/sta.js:22:9(49)]: %!v(MISSING)", "test/language/computed-property-names/class/static/method-number.js-strict:true": "[test/language/computed-property-names/class/static/method-number.js Test262Error: Expected [prototype, 1, 2, name, length, caller, arguments, a, c] and [1, 2, length, name, prototype, a, c] to have the same contents. at harness/sta.js:22:9(49)]: %!v(MISSING)", "test/language/computed-property-names/class/static/method-prototype.js-strict:true": "[test/language/computed-property-names/class/static/method-prototype.js Test262Error: Expected a TypeError to be thrown but no exception was thrown at all at harness/sta.js:22:9(49)]: %!v(MISSING)", "test/language/computed-property-names/class/static/method-string.js-strict:true": "[test/language/computed-property-names/class/static/method-string.js Test262Error: Expected [prototype, name, length, caller, arguments, a, b, c, d] and [length, name, prototype, a, b, c, d] to have the same contents. at harness/sta.js:22:9(49)]: %!v(MISSING)", "test/language/computed-property-names/class/static/method-symbol.js-strict:true": "[test/language/computed-property-names/class/static/method-symbol.js Test262Error: Expected [prototype, name, length, caller, arguments, a, c] and [length, name, prototype, a, c] to have the same contents. at harness/sta.js:22:9(49)]: %!v(MISSING)", "test/language/computed-property-names/class/static/setter-prototype.js-strict:true": "[test/language/computed-property-names/class/static/setter-prototype.js Test262Error: Expected a TypeError to be thrown but no exception was thrown at all at harness/sta.js:22:9(49)]: %!v(MISSING)", - "test/language/computed-property-names/object/method/generator.js-strict:true": "[test/language/computed-property-names/object/method/generator.js ReferenceError: regeneratorRuntime is not defined at test/language/computed-property-names/object/method/generator.js:11:19(10)]: %!v(MISSING)", + "test/language/computed-property-names/object/method/generator.js-strict:true": "[test/language/computed-property-names/object/method/generator.js test/language/computed-property-names/object/method/generator.js: Line 11:14 Unexpected token * (and 3 more errors)]: %!v(MISSING)", "test/language/computed-property-names/to-name-side-effects/numbers-object.js-strict:true": "[test/language/computed-property-names/to-name-side-effects/numbers-object.js Test262Error: The result of `counter++` is `0` Expected SameValue(«1», «0») to be true at harness/sta.js:22:9(49)]: %!v(MISSING)", "test/language/computed-property-names/to-name-side-effects/object.js-strict:true": "[test/language/computed-property-names/to-name-side-effects/object.js Test262Error: The result of `counter++` is `0` Expected SameValue(«1», «0») to be true at harness/sta.js:22:9(49)]: %!v(MISSING)", "test/language/eval-code/direct/arrow-fn-a-following-parameter-is-named-arguments-arrow-func-declare-arguments-assign-incl-def-param-arrow-arguments.js-strict:false": "[test/language/eval-code/direct/arrow-fn-a-following-parameter-is-named-arguments-arrow-func-declare-arguments-assign-incl-def-param-arrow-arguments.js SyntaxError: test/language/eval-code/direct/arrow-fn-a-following-parameter-is-named-arguments-arrow-func-declare-arguments-assign-incl-def-param-arrow-arguments.js: arguments is a reserved word in strict mode (11:69)\n 9 | \n 10 | const oldArguments = globalThis.arguments;\n\u003e 11 | const f = (p = eval(\"var arguments = 'param'\"), q = () =\u003e arguments, arguments) =\u003e {}\n | ^\n 12 | assert.throws(SyntaxError, f);\n 13 | assert.sameValue(globalThis.arguments, oldArguments, \"globalThis.arguments unchanged\");\n 14 | at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", @@ -1162,8 +1152,8 @@ "test/language/eval-code/direct/gen-func-decl-fn-body-cntns-arguments-lex-bind-declare-arguments.js-strict:false": "[test/language/eval-code/direct/gen-func-decl-fn-body-cntns-arguments-lex-bind-declare-arguments.js SyntaxError: test/language/eval-code/direct/gen-func-decl-fn-body-cntns-arguments-lex-bind-declare-arguments.js: arguments is a reserved word in strict mode (15:6)\n 13 | \n 14 | function * f(p = eval(\"var arguments\")) {\n\u003e 15 | let arguments;\n | ^\n 16 | }\n 17 | assert.throws(SyntaxError, f);\n 18 | at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/eval-code/direct/gen-func-decl-fn-body-cntns-arguments-var-bind-declare-arguments-and-assign.js-strict:false": "[test/language/eval-code/direct/gen-func-decl-fn-body-cntns-arguments-var-bind-declare-arguments-and-assign.js SyntaxError: test/language/eval-code/direct/gen-func-decl-fn-body-cntns-arguments-var-bind-declare-arguments-and-assign.js: arguments is a reserved word in strict mode (14:6)\n 12 | \n 13 | function * f(p = eval(\"var arguments = 'param'\")) {\n\u003e 14 | var arguments;\n | ^\n 15 | }\n 16 | assert.throws(SyntaxError, f);\n 17 | at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/eval-code/direct/gen-func-decl-fn-body-cntns-arguments-var-bind-declare-arguments.js-strict:false": "[test/language/eval-code/direct/gen-func-decl-fn-body-cntns-arguments-var-bind-declare-arguments.js SyntaxError: test/language/eval-code/direct/gen-func-decl-fn-body-cntns-arguments-var-bind-declare-arguments.js: arguments is a reserved word in strict mode (14:6)\n 12 | \n 13 | function * f(p = eval(\"var arguments\")) {\n\u003e 14 | var arguments;\n | ^\n 15 | }\n 16 | assert.throws(SyntaxError, f);\n 17 | at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/language/eval-code/direct/gen-func-decl-no-pre-existing-arguments-bindings-are-present-declare-arguments-and-assign.js-strict:false": "[test/language/eval-code/direct/gen-func-decl-no-pre-existing-arguments-bindings-are-present-declare-arguments-and-assign.js ReferenceError: regeneratorRuntime is not defined at test/language/eval-code/direct/gen-func-decl-no-pre-existing-arguments-bindings-are-present-declare-arguments-and-assign.js:1:41(7)]: %!v(MISSING)", - "test/language/eval-code/direct/gen-func-decl-no-pre-existing-arguments-bindings-are-present-declare-arguments.js-strict:false": "[test/language/eval-code/direct/gen-func-decl-no-pre-existing-arguments-bindings-are-present-declare-arguments.js ReferenceError: regeneratorRuntime is not defined at test/language/eval-code/direct/gen-func-decl-no-pre-existing-arguments-bindings-are-present-declare-arguments.js:1:41(7)]: %!v(MISSING)", + "test/language/eval-code/direct/gen-func-decl-no-pre-existing-arguments-bindings-are-present-declare-arguments-and-assign.js-strict:false": "[test/language/eval-code/direct/gen-func-decl-no-pre-existing-arguments-bindings-are-present-declare-arguments-and-assign.js test/language/eval-code/direct/gen-func-decl-no-pre-existing-arguments-bindings-are-present-declare-arguments-and-assign.js: Line 13:9 Unexpected token * (and 4 more errors)]: %!v(MISSING)", + "test/language/eval-code/direct/gen-func-decl-no-pre-existing-arguments-bindings-are-present-declare-arguments.js-strict:false": "[test/language/eval-code/direct/gen-func-decl-no-pre-existing-arguments-bindings-are-present-declare-arguments.js test/language/eval-code/direct/gen-func-decl-no-pre-existing-arguments-bindings-are-present-declare-arguments.js: Line 13:9 Unexpected token * (and 4 more errors)]: %!v(MISSING)", "test/language/eval-code/direct/gen-func-expr-named-a-following-parameter-is-named-arguments-declare-arguments-and-assign.js-strict:false": "[test/language/eval-code/direct/gen-func-expr-named-a-following-parameter-is-named-arguments-declare-arguments-and-assign.js SyntaxError: test/language/eval-code/direct/gen-func-expr-named-a-following-parameter-is-named-arguments-declare-arguments-and-assign.js: arguments is a reserved word in strict mode (14:58)\n 12 | assert.sameValue(\"arguments\" in this, false, \"No global 'arguments' binding\");\n 13 | \n\u003e 14 | let f = function * f(p = eval(\"var arguments = 'param'\"), arguments) {\n | ^\n 15 | \n 16 | }\n 17 | assert.throws(SyntaxError, f); at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/eval-code/direct/gen-func-expr-named-a-following-parameter-is-named-arguments-declare-arguments.js-strict:false": "[test/language/eval-code/direct/gen-func-expr-named-a-following-parameter-is-named-arguments-declare-arguments.js SyntaxError: test/language/eval-code/direct/gen-func-expr-named-a-following-parameter-is-named-arguments-declare-arguments.js: arguments is a reserved word in strict mode (14:48)\n 12 | assert.sameValue(\"arguments\" in this, false, \"No global 'arguments' binding\");\n 13 | \n\u003e 14 | let f = function * f(p = eval(\"var arguments\"), arguments) {\n | ^\n 15 | \n 16 | }\n 17 | assert.throws(SyntaxError, f); at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/eval-code/direct/gen-func-expr-named-a-preceding-parameter-is-named-arguments-declare-arguments-and-assign.js-strict:false": "[test/language/eval-code/direct/gen-func-expr-named-a-preceding-parameter-is-named-arguments-declare-arguments-and-assign.js SyntaxError: test/language/eval-code/direct/gen-func-expr-named-a-preceding-parameter-is-named-arguments-declare-arguments-and-assign.js: arguments is a reserved word in strict mode (14:21)\n 12 | assert.sameValue(\"arguments\" in this, false, \"No global 'arguments' binding\");\n 13 | \n\u003e 14 | let f = function * f(arguments, p = eval(\"var arguments = 'param'\")) {\n | ^\n 15 | \n 16 | }\n 17 | assert.throws(SyntaxError, f); at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", @@ -1174,8 +1164,8 @@ "test/language/eval-code/direct/gen-func-expr-named-fn-body-cntns-arguments-lex-bind-declare-arguments.js-strict:false": "[test/language/eval-code/direct/gen-func-expr-named-fn-body-cntns-arguments-lex-bind-declare-arguments.js SyntaxError: test/language/eval-code/direct/gen-func-expr-named-fn-body-cntns-arguments-lex-bind-declare-arguments.js: arguments is a reserved word in strict mode (15:6)\n 13 | \n 14 | let f = function * f(p = eval(\"var arguments\")) {\n\u003e 15 | let arguments;\n | ^\n 16 | }\n 17 | assert.throws(SyntaxError, f);\n 18 | at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/eval-code/direct/gen-func-expr-named-fn-body-cntns-arguments-var-bind-declare-arguments-and-assign.js-strict:false": "[test/language/eval-code/direct/gen-func-expr-named-fn-body-cntns-arguments-var-bind-declare-arguments-and-assign.js SyntaxError: test/language/eval-code/direct/gen-func-expr-named-fn-body-cntns-arguments-var-bind-declare-arguments-and-assign.js: arguments is a reserved word in strict mode (14:6)\n 12 | \n 13 | let f = function * f(p = eval(\"var arguments = 'param'\")) {\n\u003e 14 | var arguments;\n | ^\n 15 | }\n 16 | assert.throws(SyntaxError, f);\n 17 | at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/eval-code/direct/gen-func-expr-named-fn-body-cntns-arguments-var-bind-declare-arguments.js-strict:false": "[test/language/eval-code/direct/gen-func-expr-named-fn-body-cntns-arguments-var-bind-declare-arguments.js SyntaxError: test/language/eval-code/direct/gen-func-expr-named-fn-body-cntns-arguments-var-bind-declare-arguments.js: arguments is a reserved word in strict mode (14:6)\n 12 | \n 13 | let f = function * f(p = eval(\"var arguments\")) {\n\u003e 14 | var arguments;\n | ^\n 15 | }\n 16 | assert.throws(SyntaxError, f);\n 17 | at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/language/eval-code/direct/gen-func-expr-named-no-pre-existing-arguments-bindings-are-present-declare-arguments-and-assign.js-strict:false": "[test/language/eval-code/direct/gen-func-expr-named-no-pre-existing-arguments-bindings-are-present-declare-arguments-and-assign.js TypeError: Value is not an object: undefined at test/language/eval-code/direct/gen-func-expr-named-no-pre-existing-arguments-bindings-are-present-declare-arguments-and-assign.js:11:18(6)]: %!v(MISSING)", - "test/language/eval-code/direct/gen-func-expr-named-no-pre-existing-arguments-bindings-are-present-declare-arguments.js-strict:false": "[test/language/eval-code/direct/gen-func-expr-named-no-pre-existing-arguments-bindings-are-present-declare-arguments.js TypeError: Value is not an object: undefined at test/language/eval-code/direct/gen-func-expr-named-no-pre-existing-arguments-bindings-are-present-declare-arguments.js:11:18(6)]: %!v(MISSING)", + "test/language/eval-code/direct/gen-func-expr-named-no-pre-existing-arguments-bindings-are-present-declare-arguments-and-assign.js-strict:false": "[test/language/eval-code/direct/gen-func-expr-named-no-pre-existing-arguments-bindings-are-present-declare-arguments-and-assign.js test/language/eval-code/direct/gen-func-expr-named-no-pre-existing-arguments-bindings-are-present-declare-arguments-and-assign.js: Line 13:17 Unexpected token * (and 3 more errors)]: %!v(MISSING)", + "test/language/eval-code/direct/gen-func-expr-named-no-pre-existing-arguments-bindings-are-present-declare-arguments.js-strict:false": "[test/language/eval-code/direct/gen-func-expr-named-no-pre-existing-arguments-bindings-are-present-declare-arguments.js test/language/eval-code/direct/gen-func-expr-named-no-pre-existing-arguments-bindings-are-present-declare-arguments.js: Line 13:17 Unexpected token * (and 3 more errors)]: %!v(MISSING)", "test/language/eval-code/direct/gen-func-expr-nameless-a-following-parameter-is-named-arguments-declare-arguments-and-assign.js-strict:false": "[test/language/eval-code/direct/gen-func-expr-nameless-a-following-parameter-is-named-arguments-declare-arguments-and-assign.js SyntaxError: test/language/eval-code/direct/gen-func-expr-nameless-a-following-parameter-is-named-arguments-declare-arguments-and-assign.js: arguments is a reserved word in strict mode (14:57)\n 12 | assert.sameValue(\"arguments\" in this, false, \"No global 'arguments' binding\");\n 13 | \n\u003e 14 | let f = function * (p = eval(\"var arguments = 'param'\"), arguments) {\n | ^\n 15 | \n 16 | }\n 17 | assert.throws(SyntaxError, f); at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/eval-code/direct/gen-func-expr-nameless-a-following-parameter-is-named-arguments-declare-arguments.js-strict:false": "[test/language/eval-code/direct/gen-func-expr-nameless-a-following-parameter-is-named-arguments-declare-arguments.js SyntaxError: test/language/eval-code/direct/gen-func-expr-nameless-a-following-parameter-is-named-arguments-declare-arguments.js: arguments is a reserved word in strict mode (14:47)\n 12 | assert.sameValue(\"arguments\" in this, false, \"No global 'arguments' binding\");\n 13 | \n\u003e 14 | let f = function * (p = eval(\"var arguments\"), arguments) {\n | ^\n 15 | \n 16 | }\n 17 | assert.throws(SyntaxError, f); at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/eval-code/direct/gen-func-expr-nameless-a-preceding-parameter-is-named-arguments-declare-arguments-and-assign.js-strict:false": "[test/language/eval-code/direct/gen-func-expr-nameless-a-preceding-parameter-is-named-arguments-declare-arguments-and-assign.js SyntaxError: test/language/eval-code/direct/gen-func-expr-nameless-a-preceding-parameter-is-named-arguments-declare-arguments-and-assign.js: arguments is a reserved word in strict mode (14:20)\n 12 | assert.sameValue(\"arguments\" in this, false, \"No global 'arguments' binding\");\n 13 | \n\u003e 14 | let f = function * (arguments, p = eval(\"var arguments = 'param'\")) {\n | ^\n 15 | \n 16 | }\n 17 | assert.throws(SyntaxError, f); at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", @@ -1186,8 +1176,8 @@ "test/language/eval-code/direct/gen-func-expr-nameless-fn-body-cntns-arguments-lex-bind-declare-arguments.js-strict:false": "[test/language/eval-code/direct/gen-func-expr-nameless-fn-body-cntns-arguments-lex-bind-declare-arguments.js SyntaxError: test/language/eval-code/direct/gen-func-expr-nameless-fn-body-cntns-arguments-lex-bind-declare-arguments.js: arguments is a reserved word in strict mode (15:6)\n 13 | \n 14 | let f = function * (p = eval(\"var arguments\")) {\n\u003e 15 | let arguments;\n | ^\n 16 | }\n 17 | assert.throws(SyntaxError, f);\n 18 | at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/eval-code/direct/gen-func-expr-nameless-fn-body-cntns-arguments-var-bind-declare-arguments-and-assign.js-strict:false": "[test/language/eval-code/direct/gen-func-expr-nameless-fn-body-cntns-arguments-var-bind-declare-arguments-and-assign.js SyntaxError: test/language/eval-code/direct/gen-func-expr-nameless-fn-body-cntns-arguments-var-bind-declare-arguments-and-assign.js: arguments is a reserved word in strict mode (14:6)\n 12 | \n 13 | let f = function * (p = eval(\"var arguments = 'param'\")) {\n\u003e 14 | var arguments;\n | ^\n 15 | }\n 16 | assert.throws(SyntaxError, f);\n 17 | at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/eval-code/direct/gen-func-expr-nameless-fn-body-cntns-arguments-var-bind-declare-arguments.js-strict:false": "[test/language/eval-code/direct/gen-func-expr-nameless-fn-body-cntns-arguments-var-bind-declare-arguments.js SyntaxError: test/language/eval-code/direct/gen-func-expr-nameless-fn-body-cntns-arguments-var-bind-declare-arguments.js: arguments is a reserved word in strict mode (14:6)\n 12 | \n 13 | let f = function * (p = eval(\"var arguments\")) {\n\u003e 14 | var arguments;\n | ^\n 15 | }\n 16 | assert.throws(SyntaxError, f);\n 17 | at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/language/eval-code/direct/gen-func-expr-nameless-no-pre-existing-arguments-bindings-are-present-declare-arguments-and-assign.js-strict:false": "[test/language/eval-code/direct/gen-func-expr-nameless-no-pre-existing-arguments-bindings-are-present-declare-arguments-and-assign.js TypeError: Value is not an object: undefined at test/language/eval-code/direct/gen-func-expr-nameless-no-pre-existing-arguments-bindings-are-present-declare-arguments-and-assign.js:11:18(6)]: %!v(MISSING)", - "test/language/eval-code/direct/gen-func-expr-nameless-no-pre-existing-arguments-bindings-are-present-declare-arguments.js-strict:false": "[test/language/eval-code/direct/gen-func-expr-nameless-no-pre-existing-arguments-bindings-are-present-declare-arguments.js TypeError: Value is not an object: undefined at test/language/eval-code/direct/gen-func-expr-nameless-no-pre-existing-arguments-bindings-are-present-declare-arguments.js:11:18(6)]: %!v(MISSING)", + "test/language/eval-code/direct/gen-func-expr-nameless-no-pre-existing-arguments-bindings-are-present-declare-arguments-and-assign.js-strict:false": "[test/language/eval-code/direct/gen-func-expr-nameless-no-pre-existing-arguments-bindings-are-present-declare-arguments-and-assign.js test/language/eval-code/direct/gen-func-expr-nameless-no-pre-existing-arguments-bindings-are-present-declare-arguments-and-assign.js: Line 13:17 Unexpected token * (and 3 more errors)]: %!v(MISSING)", + "test/language/eval-code/direct/gen-func-expr-nameless-no-pre-existing-arguments-bindings-are-present-declare-arguments.js-strict:false": "[test/language/eval-code/direct/gen-func-expr-nameless-no-pre-existing-arguments-bindings-are-present-declare-arguments.js test/language/eval-code/direct/gen-func-expr-nameless-no-pre-existing-arguments-bindings-are-present-declare-arguments.js: Line 13:17 Unexpected token * (and 3 more errors)]: %!v(MISSING)", "test/language/eval-code/direct/gen-meth-a-following-parameter-is-named-arguments-declare-arguments-and-assign.js-strict:false": "[test/language/eval-code/direct/gen-meth-a-following-parameter-is-named-arguments-declare-arguments-and-assign.js SyntaxError: test/language/eval-code/direct/gen-meth-a-following-parameter-is-named-arguments-declare-arguments-and-assign.js: arguments is a reserved word in strict mode (14:51)\n 12 | assert.sameValue(\"arguments\" in this, false, \"No global 'arguments' binding\");\n 13 | \n\u003e 14 | let o = { * f(p = eval(\"var arguments = 'param'\"), arguments) {\n | ^\n 15 | \n 16 | }};\n 17 | assert.throws(SyntaxError, o.f); at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/eval-code/direct/gen-meth-a-following-parameter-is-named-arguments-declare-arguments.js-strict:false": "[test/language/eval-code/direct/gen-meth-a-following-parameter-is-named-arguments-declare-arguments.js SyntaxError: test/language/eval-code/direct/gen-meth-a-following-parameter-is-named-arguments-declare-arguments.js: arguments is a reserved word in strict mode (14:41)\n 12 | assert.sameValue(\"arguments\" in this, false, \"No global 'arguments' binding\");\n 13 | \n\u003e 14 | let o = { * f(p = eval(\"var arguments\"), arguments) {\n | ^\n 15 | \n 16 | }};\n 17 | assert.throws(SyntaxError, o.f); at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/eval-code/direct/gen-meth-a-preceding-parameter-is-named-arguments-declare-arguments-and-assign.js-strict:false": "[test/language/eval-code/direct/gen-meth-a-preceding-parameter-is-named-arguments-declare-arguments-and-assign.js SyntaxError: test/language/eval-code/direct/gen-meth-a-preceding-parameter-is-named-arguments-declare-arguments-and-assign.js: arguments is a reserved word in strict mode (14:14)\n 12 | assert.sameValue(\"arguments\" in this, false, \"No global 'arguments' binding\");\n 13 | \n\u003e 14 | let o = { * f(arguments, p = eval(\"var arguments = 'param'\")) {\n | ^\n 15 | \n 16 | }};\n 17 | assert.throws(SyntaxError, o.f); at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", @@ -1198,11 +1188,11 @@ "test/language/eval-code/direct/gen-meth-fn-body-cntns-arguments-lex-bind-declare-arguments.js-strict:false": "[test/language/eval-code/direct/gen-meth-fn-body-cntns-arguments-lex-bind-declare-arguments.js SyntaxError: test/language/eval-code/direct/gen-meth-fn-body-cntns-arguments-lex-bind-declare-arguments.js: arguments is a reserved word in strict mode (15:6)\n 13 | \n 14 | let o = { * f(p = eval(\"var arguments\")) {\n\u003e 15 | let arguments;\n | ^\n 16 | }};\n 17 | assert.throws(SyntaxError, o.f);\n 18 | at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/eval-code/direct/gen-meth-fn-body-cntns-arguments-var-bind-declare-arguments-and-assign.js-strict:false": "[test/language/eval-code/direct/gen-meth-fn-body-cntns-arguments-var-bind-declare-arguments-and-assign.js SyntaxError: test/language/eval-code/direct/gen-meth-fn-body-cntns-arguments-var-bind-declare-arguments-and-assign.js: arguments is a reserved word in strict mode (14:6)\n 12 | \n 13 | let o = { * f(p = eval(\"var arguments = 'param'\")) {\n\u003e 14 | var arguments;\n | ^\n 15 | }};\n 16 | assert.throws(SyntaxError, o.f);\n 17 | at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/eval-code/direct/gen-meth-fn-body-cntns-arguments-var-bind-declare-arguments.js-strict:false": "[test/language/eval-code/direct/gen-meth-fn-body-cntns-arguments-var-bind-declare-arguments.js SyntaxError: test/language/eval-code/direct/gen-meth-fn-body-cntns-arguments-var-bind-declare-arguments.js: arguments is a reserved word in strict mode (14:6)\n 12 | \n 13 | let o = { * f(p = eval(\"var arguments\")) {\n\u003e 14 | var arguments;\n | ^\n 15 | }};\n 16 | assert.throws(SyntaxError, o.f);\n 17 | at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/language/eval-code/direct/gen-meth-no-pre-existing-arguments-bindings-are-present-declare-arguments-and-assign.js-strict:false": "[test/language/eval-code/direct/gen-meth-no-pre-existing-arguments-bindings-are-present-declare-arguments-and-assign.js TypeError: Value is not an object: undefined at test/language/eval-code/direct/gen-meth-no-pre-existing-arguments-bindings-are-present-declare-arguments-and-assign.js:11:18(6)]: %!v(MISSING)", - "test/language/eval-code/direct/gen-meth-no-pre-existing-arguments-bindings-are-present-declare-arguments.js-strict:false": "[test/language/eval-code/direct/gen-meth-no-pre-existing-arguments-bindings-are-present-declare-arguments.js TypeError: Value is not an object: undefined at test/language/eval-code/direct/gen-meth-no-pre-existing-arguments-bindings-are-present-declare-arguments.js:11:18(6)]: %!v(MISSING)", - "test/language/eval-code/direct/lex-env-distinct-cls.js-strict:true": "[test/language/eval-code/direct/lex-env-distinct-cls.js SyntaxError: SyntaxError: \u003ceval\u003e: Line 1:1 Unexpected reserved word at test/language/eval-code/direct/lex-env-distinct-cls.js:19:5(31)]: %!v(MISSING)", - "test/language/eval-code/direct/lex-env-distinct-const.js-strict:true": "[test/language/eval-code/direct/lex-env-distinct-const.js SyntaxError: SyntaxError: \u003ceval\u003e: Line 1:1 Unexpected reserved word at test/language/eval-code/direct/lex-env-distinct-const.js:19:5(26)]: %!v(MISSING)", - "test/language/eval-code/direct/lex-env-distinct-let.js-strict:true": "[test/language/eval-code/direct/lex-env-distinct-let.js SyntaxError: SyntaxError: \u003ceval\u003e: Line 1:5 Unexpected identifier at test/language/eval-code/direct/lex-env-distinct-let.js:19:5(26)]: %!v(MISSING)", + "test/language/eval-code/direct/gen-meth-no-pre-existing-arguments-bindings-are-present-declare-arguments-and-assign.js-strict:false": "[test/language/eval-code/direct/gen-meth-no-pre-existing-arguments-bindings-are-present-declare-arguments-and-assign.js test/language/eval-code/direct/gen-meth-no-pre-existing-arguments-bindings-are-present-declare-arguments-and-assign.js: Line 13:22 Unexpected token * (and 3 more errors)]: %!v(MISSING)", + "test/language/eval-code/direct/gen-meth-no-pre-existing-arguments-bindings-are-present-declare-arguments.js-strict:false": "[test/language/eval-code/direct/gen-meth-no-pre-existing-arguments-bindings-are-present-declare-arguments.js test/language/eval-code/direct/gen-meth-no-pre-existing-arguments-bindings-are-present-declare-arguments.js: Line 13:22 Unexpected token * (and 3 more errors)]: %!v(MISSING)", + "test/language/eval-code/direct/lex-env-distinct-cls.js-strict:true": "[test/language/eval-code/direct/lex-env-distinct-cls.js SyntaxError: SyntaxError: \u003ceval\u003e: Line 1:1 Unexpected reserved word at test/language/eval-code/direct/lex-env-distinct-cls.js:19:5(12)]: %!v(MISSING)", + "test/language/eval-code/direct/lex-env-distinct-const.js-strict:true": "[test/language/eval-code/direct/lex-env-distinct-const.js SyntaxError: SyntaxError: \u003ceval\u003e: Line 1:1 Unexpected reserved word at test/language/eval-code/direct/lex-env-distinct-const.js:19:5(7)]: %!v(MISSING)", + "test/language/eval-code/direct/lex-env-distinct-let.js-strict:true": "[test/language/eval-code/direct/lex-env-distinct-let.js SyntaxError: SyntaxError: \u003ceval\u003e: Line 1:5 Unexpected identifier at test/language/eval-code/direct/lex-env-distinct-let.js:19:5(7)]: %!v(MISSING)", "test/language/eval-code/direct/lex-env-heritage.js-strict:true": "[test/language/eval-code/direct/lex-env-heritage.js Test262Error: non strict mode Expected SameValue(«outside», «inside») to be true at harness/sta.js:22:9(49)]: %!v(MISSING)", "test/language/eval-code/direct/lex-env-no-init-cls.js-strict:true": "[test/language/eval-code/direct/lex-env-no-init-cls.js Test262Error: Expected a ReferenceError but got a SyntaxError at harness/sta.js:22:9(49)]: %!v(MISSING)", "test/language/eval-code/direct/lex-env-no-init-const.js-strict:true": "[test/language/eval-code/direct/lex-env-no-init-const.js Test262Error: Expected a ReferenceError but got a SyntaxError at harness/sta.js:22:9(49)]: %!v(MISSING)", @@ -1489,7 +1479,7 @@ "test/language/expressions/assignmenttargettype/parenthesized-lefthandsideexpression-assignment-assignmentexpression-2.js-strict:true": "[test/language/expressions/assignmenttargettype/parenthesized-lefthandsideexpression-assignment-assignmentexpression-2.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", "test/language/expressions/await/await-BindingIdentifier-in-global.js-strict:true": "[test/language/expressions/await/await-BindingIdentifier-in-global.js SyntaxError: test/language/expressions/await/await-BindingIdentifier-in-global.js: await is a reserved word (12:15)\n 10 | ---*/\n 11 | \n\u003e 12 | async function await() { return 1 }\n | ^\n 13 | assert(await instanceof Function);\n 14 | \n 15 | at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/expressions/await/await-in-nested-function.js-strict:true": "[test/language/expressions/await/await-in-nested-function.js SyntaxError: test/language/expressions/await/await-in-nested-function.js: await is a reserved word (12:4)\n 10 | ---*/\n 11 | \n\u003e 12 | var await;\n | ^\n 13 | async function foo() {\n 14 | function bar() {\n 15 | await = 1; at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/language/expressions/await/await-throws-rejections.js-strict:true": "[test/language/expressions/await/await-throws-rejections.js ReferenceError: regeneratorRuntime is not defined at test/language/expressions/await/await-throws-rejections.js:10:72(3)]: %!v(MISSING)", + "test/language/expressions/await/await-throws-rejections.js-strict:true": "[test/language/expressions/await/await-throws-rejections.js test/language/expressions/await/await-throws-rejections.js: Line 12:7 Unexpected token function (and 7 more errors)]: %!v(MISSING)", "test/language/expressions/call/eval-spread-empty-leading.js-strict:true": "[test/language/expressions/call/eval-spread-empty-leading.js Test262Error: Expected SameValue(«local», «0») to be true at harness/sta.js:22:9(49)]: %!v(MISSING)", "test/language/expressions/call/eval-spread-empty-trailing.js-strict:true": "[test/language/expressions/call/eval-spread-empty-trailing.js Test262Error: Expected SameValue(«local», «0») to be true at harness/sta.js:22:9(49)]: %!v(MISSING)", "test/language/expressions/call/eval-spread.js-strict:true": "[test/language/expressions/call/eval-spread.js Test262Error: Expected SameValue(«local», «1») to be true at harness/sta.js:22:9(49)]: %!v(MISSING)", @@ -1527,22 +1517,22 @@ "test/language/expressions/class/cpn-class-expr-accessors-computed-property-name-from-assignment-expression-coalesce.js-strict:true": "[test/language/expressions/class/cpn-class-expr-accessors-computed-property-name-from-assignment-expression-coalesce.js SyntaxError: test/language/expressions/class/cpn-class-expr-accessors-computed-property-name-from-assignment-expression-coalesce.js: Unexpected token (41:10)\n 39 | \n 40 | let C = class {\n\u003e 41 | get [x ??= 1]() {\n | ^\n 42 | return 2;\n 43 | }\n 44 | at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/expressions/class/cpn-class-expr-accessors-computed-property-name-from-assignment-expression-logical-and.js-strict:true": "[test/language/expressions/class/cpn-class-expr-accessors-computed-property-name-from-assignment-expression-logical-and.js SyntaxError: test/language/expressions/class/cpn-class-expr-accessors-computed-property-name-from-assignment-expression-logical-and.js: Unexpected token (41:11)\n 39 | \n 40 | let C = class {\n\u003e 41 | get [x \u0026\u0026= 1]() {\n | ^\n 42 | return 2;\n 43 | }\n 44 | at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/expressions/class/cpn-class-expr-accessors-computed-property-name-from-assignment-expression-logical-or.js-strict:true": "[test/language/expressions/class/cpn-class-expr-accessors-computed-property-name-from-assignment-expression-logical-or.js SyntaxError: test/language/expressions/class/cpn-class-expr-accessors-computed-property-name-from-assignment-expression-logical-or.js: Unexpected token (41:11)\n 39 | \n 40 | let C = class {\n\u003e 41 | get [x ||= 1]() {\n | ^\n 42 | return 2;\n 43 | }\n 44 | at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/language/expressions/class/cpn-class-expr-accessors-computed-property-name-from-async-arrow-function-expression.js-strict:true": "[test/language/expressions/class/cpn-class-expr-accessors-computed-property-name-from-async-arrow-function-expression.js ReferenceError: regeneratorRuntime is not defined at test/language/expressions/class/cpn-class-expr-accessors-computed-property-name-from-async-arrow-function-expression.js:39:142(3)]: %!v(MISSING)", + "test/language/expressions/class/cpn-class-expr-accessors-computed-property-name-from-async-arrow-function-expression.js-strict:true": "[test/language/expressions/class/cpn-class-expr-accessors-computed-property-name-from-async-arrow-function-expression.js test/language/expressions/class/cpn-class-expr-accessors-computed-property-name-from-async-arrow-function-expression.js: Line 44:11 Unexpected token function (and 27 more errors)]: %!v(MISSING)", "test/language/expressions/class/cpn-class-expr-accessors-computed-property-name-from-expression-coalesce.js-strict:true": "[test/language/expressions/class/cpn-class-expr-accessors-computed-property-name-from-expression-coalesce.js SyntaxError: test/language/expressions/class/cpn-class-expr-accessors-computed-property-name-from-expression-coalesce.js: Unexpected token (41:10)\n 39 | \n 40 | let C = class {\n\u003e 41 | get [x ?? 1]() {\n | ^\n 42 | return 2;\n 43 | }\n 44 | at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/expressions/class/cpn-class-expr-accessors-computed-property-name-from-function-expression.js-strict:true": "[test/language/expressions/class/cpn-class-expr-accessors-computed-property-name-from-function-expression.js Test262Error: Expected SameValue(«undefined», «1») to be true at harness/sta.js:22:9(49)]: %!v(MISSING)", - "test/language/expressions/class/cpn-class-expr-accessors-computed-property-name-from-generator-function-declaration.js-strict:true": "[test/language/expressions/class/cpn-class-expr-accessors-computed-property-name-from-generator-function-declaration.js ReferenceError: regeneratorRuntime is not defined at test/language/expressions/class/cpn-class-expr-accessors-computed-property-name-from-generator-function-declaration.js:36:731(21)]: %!v(MISSING)", + "test/language/expressions/class/cpn-class-expr-accessors-computed-property-name-from-generator-function-declaration.js-strict:true": "[test/language/expressions/class/cpn-class-expr-accessors-computed-property-name-from-generator-function-declaration.js test/language/expressions/class/cpn-class-expr-accessors-computed-property-name-from-generator-function-declaration.js: Line 37:9 Unexpected token * (and 2 more errors)]: %!v(MISSING)", "test/language/expressions/class/cpn-class-expr-accessors-computed-property-name-from-integer-separators.js-strict:true": "[test/language/expressions/class/cpn-class-expr-accessors-computed-property-name-from-integer-separators.js SyntaxError: test/language/expressions/class/cpn-class-expr-accessors-computed-property-name-from-integer-separators.js: Identifier directly after number (40:8)\n 38 | \n 39 | let C = class {\n\u003e 40 | get [1_2_3_4_5_6_7_8]() {\n | ^\n 41 | return 1_2_3_4_5_6_7_8;\n 42 | }\n 43 | at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/language/expressions/class/cpn-class-expr-accessors-computed-property-name-from-yield-expression.js-strict:true": "[test/language/expressions/class/cpn-class-expr-accessors-computed-property-name-from-yield-expression.js test/language/expressions/class/cpn-class-expr-accessors-computed-property-name-from-yield-expression.js: Line 45:21 Unexpected number (and 55 more errors)]: %!v(MISSING)", + "test/language/expressions/class/cpn-class-expr-accessors-computed-property-name-from-yield-expression.js-strict:true": "[test/language/expressions/class/cpn-class-expr-accessors-computed-property-name-from-yield-expression.js test/language/expressions/class/cpn-class-expr-accessors-computed-property-name-from-yield-expression.js: Line 37:9 Unexpected token * (and 37 more errors)]: %!v(MISSING)", "test/language/expressions/class/cpn-class-expr-computed-property-name-from-arrow-function-expression.js-strict:true": "[test/language/expressions/class/cpn-class-expr-computed-property-name-from-arrow-function-expression.js TypeError: Object has no member 'function () {}' at test/language/expressions/class/cpn-class-expr-computed-property-name-from-arrow-function-expression.js:51:18(32)]: %!v(MISSING)", "test/language/expressions/class/cpn-class-expr-computed-property-name-from-assignment-expression-coalesce.js-strict:true": "[test/language/expressions/class/cpn-class-expr-computed-property-name-from-assignment-expression-coalesce.js SyntaxError: test/language/expressions/class/cpn-class-expr-computed-property-name-from-assignment-expression-coalesce.js: Unexpected token (41:6)\n 39 | \n 40 | let C = class {\n\u003e 41 | [x ??= 1]() {\n | ^\n 42 | return 2;\n 43 | }\n 44 | static [x ??= 1]() { at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/expressions/class/cpn-class-expr-computed-property-name-from-assignment-expression-logical-and.js-strict:true": "[test/language/expressions/class/cpn-class-expr-computed-property-name-from-assignment-expression-logical-and.js SyntaxError: test/language/expressions/class/cpn-class-expr-computed-property-name-from-assignment-expression-logical-and.js: Unexpected token (41:7)\n 39 | \n 40 | let C = class {\n\u003e 41 | [x \u0026\u0026= 1]() {\n | ^\n 42 | return 2;\n 43 | }\n 44 | static [x \u0026\u0026= 1]() { at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/expressions/class/cpn-class-expr-computed-property-name-from-assignment-expression-logical-or.js-strict:true": "[test/language/expressions/class/cpn-class-expr-computed-property-name-from-assignment-expression-logical-or.js SyntaxError: test/language/expressions/class/cpn-class-expr-computed-property-name-from-assignment-expression-logical-or.js: Unexpected token (41:7)\n 39 | \n 40 | let C = class {\n\u003e 41 | [x ||= 1]() {\n | ^\n 42 | return 2;\n 43 | }\n 44 | static [x ||= 1]() { at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/language/expressions/class/cpn-class-expr-computed-property-name-from-async-arrow-function-expression.js-strict:true": "[test/language/expressions/class/cpn-class-expr-computed-property-name-from-async-arrow-function-expression.js ReferenceError: regeneratorRuntime is not defined at test/language/expressions/class/cpn-class-expr-computed-property-name-from-async-arrow-function-expression.js:39:142(3)]: %!v(MISSING)", + "test/language/expressions/class/cpn-class-expr-computed-property-name-from-async-arrow-function-expression.js-strict:true": "[test/language/expressions/class/cpn-class-expr-computed-property-name-from-async-arrow-function-expression.js test/language/expressions/class/cpn-class-expr-computed-property-name-from-async-arrow-function-expression.js: Line 40:11 Unexpected token function (and 22 more errors)]: %!v(MISSING)", "test/language/expressions/class/cpn-class-expr-computed-property-name-from-expression-coalesce.js-strict:true": "[test/language/expressions/class/cpn-class-expr-computed-property-name-from-expression-coalesce.js SyntaxError: test/language/expressions/class/cpn-class-expr-computed-property-name-from-expression-coalesce.js: Unexpected token (41:6)\n 39 | \n 40 | let C = class {\n\u003e 41 | [x ?? 1]() {\n | ^\n 42 | return 2;\n 43 | }\n 44 | static [x ?? 1]() { at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/expressions/class/cpn-class-expr-computed-property-name-from-function-expression.js-strict:true": "[test/language/expressions/class/cpn-class-expr-computed-property-name-from-function-expression.js TypeError: Object has no member 'function () {}' at test/language/expressions/class/cpn-class-expr-computed-property-name-from-function-expression.js:51:18(32)]: %!v(MISSING)", - "test/language/expressions/class/cpn-class-expr-computed-property-name-from-generator-function-declaration.js-strict:true": "[test/language/expressions/class/cpn-class-expr-computed-property-name-from-generator-function-declaration.js ReferenceError: regeneratorRuntime is not defined at test/language/expressions/class/cpn-class-expr-computed-property-name-from-generator-function-declaration.js:36:731(21)]: %!v(MISSING)", + "test/language/expressions/class/cpn-class-expr-computed-property-name-from-generator-function-declaration.js-strict:true": "[test/language/expressions/class/cpn-class-expr-computed-property-name-from-generator-function-declaration.js test/language/expressions/class/cpn-class-expr-computed-property-name-from-generator-function-declaration.js: Line 37:9 Unexpected token * (and 2 more errors)]: %!v(MISSING)", "test/language/expressions/class/cpn-class-expr-computed-property-name-from-integer-separators.js-strict:true": "[test/language/expressions/class/cpn-class-expr-computed-property-name-from-integer-separators.js SyntaxError: test/language/expressions/class/cpn-class-expr-computed-property-name-from-integer-separators.js: Identifier directly after number (40:4)\n 38 | \n 39 | let C = class {\n\u003e 40 | [1_2_3_4_5_6_7_8]() {\n | ^\n 41 | return 1_2_3_4_5_6_7_8;\n 42 | }\n 43 | static [1_2_3_4_5_6_7_8]() { at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/language/expressions/class/cpn-class-expr-computed-property-name-from-yield-expression.js-strict:true": "[test/language/expressions/class/cpn-class-expr-computed-property-name-from-yield-expression.js test/language/expressions/class/cpn-class-expr-computed-property-name-from-yield-expression.js: Line 41:21 Unexpected number (and 37 more errors)]: %!v(MISSING)", + "test/language/expressions/class/cpn-class-expr-computed-property-name-from-yield-expression.js-strict:true": "[test/language/expressions/class/cpn-class-expr-computed-property-name-from-yield-expression.js test/language/expressions/class/cpn-class-expr-computed-property-name-from-yield-expression.js: Line 37:9 Unexpected token * (and 31 more errors)]: %!v(MISSING)", "test/language/expressions/class/cpn-class-expr-fields-computed-property-name-from-additive-expression-add.js-strict:true": "[test/language/expressions/class/cpn-class-expr-fields-computed-property-name-from-additive-expression-add.js SyntaxError: test/language/expressions/class/cpn-class-expr-fields-computed-property-name-from-additive-expression-add.js: Unexpected token (40:10)\n 38 | \n 39 | let C = class {\n\u003e 40 | [1 + 1] = 2;\n | ^\n 41 | \n 42 | static [1 + 1] = 2;\n 43 | }; at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/expressions/class/cpn-class-expr-fields-computed-property-name-from-additive-expression-subtract.js-strict:true": "[test/language/expressions/class/cpn-class-expr-fields-computed-property-name-from-additive-expression-subtract.js SyntaxError: test/language/expressions/class/cpn-class-expr-fields-computed-property-name-from-additive-expression-subtract.js: Unexpected token (40:10)\n 38 | \n 39 | let C = class {\n\u003e 40 | [1 - 1] = 0;\n | ^\n 41 | \n 42 | static [1 - 1] = 0;\n 43 | }; at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/expressions/class/cpn-class-expr-fields-computed-property-name-from-arrow-function-expression.js-strict:true": "[test/language/expressions/class/cpn-class-expr-fields-computed-property-name-from-arrow-function-expression.js SyntaxError: test/language/expressions/class/cpn-class-expr-fields-computed-property-name-from-arrow-function-expression.js: Unexpected token (40:14)\n 38 | \n 39 | let C = class {\n\u003e 40 | [() =\u003e { }] = 1;\n | ^\n 41 | \n 42 | static [() =\u003e { }] = 1;\n 43 | }; at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", @@ -2465,7 +2455,6 @@ "test/language/expressions/class/elements/static-private-setter-access-on-inner-class.js-strict:true": "[test/language/expressions/class/elements/static-private-setter-access-on-inner-class.js SyntaxError: test/language/expressions/class/elements/static-private-setter-access-on-inner-class.js: Unexpected character '#' (29:13)\n 27 | \n 28 | var C = class {\n\u003e 29 | static set #f(v) {\n | ^\n 30 | return this._v = v;\n 31 | }\n 32 | at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/expressions/class/elements/static-private-setter-access-on-inner-function.js-strict:true": "[test/language/expressions/class/elements/static-private-setter-access-on-inner-function.js SyntaxError: test/language/expressions/class/elements/static-private-setter-access-on-inner-function.js: Unexpected character '#' (29:13)\n 27 | \n 28 | var C = class {\n\u003e 29 | static set #f(v) {\n | ^\n 30 | this._v = v;\n 31 | }\n 32 | at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/expressions/class/elements/static-private-setter.js-strict:true": "[test/language/expressions/class/elements/static-private-setter.js SyntaxError: test/language/expressions/class/elements/static-private-setter.js: Unexpected character '#' (44:13)\n 42 | \n 43 | var C = class {\n\u003e 44 | static set #f(v) {\n | ^\n 45 | this._v = v;\n 46 | }\n 47 | at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/language/expressions/class/elements/syntax/early-errors/grammar-static-async-meth-prototype.js-strict:true": "[test/language/expressions/class/elements/syntax/early-errors/grammar-static-async-meth-prototype.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", "test/language/expressions/class/elements/syntax/early-errors/grammar-static-get-meth-prototype.js-strict:true": "[test/language/expressions/class/elements/syntax/early-errors/grammar-static-get-meth-prototype.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", "test/language/expressions/class/elements/syntax/early-errors/grammar-static-set-meth-prototype.js-strict:true": "[test/language/expressions/class/elements/syntax/early-errors/grammar-static-set-meth-prototype.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", "test/language/expressions/class/elements/syntax/valid/grammar-field-classelementname-initializer-alt.js-strict:true": "[test/language/expressions/class/elements/syntax/valid/grammar-field-classelementname-initializer-alt.js SyntaxError: test/language/expressions/class/elements/syntax/valid/grammar-field-classelementname-initializer-alt.js: Unexpected token (65:4)\n 63 | \n 64 | var C = class {\n\u003e 65 | $ = 1;\n | ^\n 66 | _ = 2;\n 67 | \\u{6F} = 3;\n 68 | ℘ = 4; // DO NOT CHANGE THE NAME OF THIS FIELD at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", @@ -2481,9 +2470,9 @@ "test/language/expressions/class/elements/syntax/valid/grammar-privatename-no-initializer-with-method.js-strict:true": "[test/language/expressions/class/elements/syntax/valid/grammar-privatename-no-initializer-with-method.js SyntaxError: test/language/expressions/class/elements/syntax/valid/grammar-privatename-no-initializer-with-method.js: Unexpected character '#' (31:2)\n 29 | \n 30 | var C = class {\n\u003e 31 | #x\n | ^\n 32 | m() {}\n 33 | };\n 34 | at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/expressions/class/elements/syntax/valid/grammar-privatenames-multi-line.js-strict:true": "[test/language/expressions/class/elements/syntax/valid/grammar-privatenames-multi-line.js SyntaxError: test/language/expressions/class/elements/syntax/valid/grammar-privatenames-multi-line.js: Unexpected character '#' (31:2)\n 29 | \n 30 | var C = class {\n\u003e 31 | #x\n | ^\n 32 | #y\n 33 | };\n 34 | at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/expressions/class/elements/syntax/valid/grammar-special-prototype-async-gen-meth-valid.js-strict:true": "[test/language/expressions/class/elements/syntax/valid/grammar-special-prototype-async-gen-meth-valid.js SyntaxError: test/language/expressions/class/elements/syntax/valid/grammar-special-prototype-async-gen-meth-valid.js: Unexpected token (40:8)\n 38 | \n 39 | var C = class {\n\u003e 40 | async * prototype() {}\n | ^\n 41 | };\n 42 | \n 43 | assert(C.hasOwnProperty('prototype')); at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/language/expressions/class/elements/syntax/valid/grammar-special-prototype-async-meth-valid.js-strict:true": "[test/language/expressions/class/elements/syntax/valid/grammar-special-prototype-async-meth-valid.js ReferenceError: regeneratorRuntime is not defined at test/language/expressions/class/elements/syntax/valid/grammar-special-prototype-async-meth-valid.js:39:162(7)]: %!v(MISSING)", + "test/language/expressions/class/elements/syntax/valid/grammar-special-prototype-async-meth-valid.js-strict:true": "[test/language/expressions/class/elements/syntax/valid/grammar-special-prototype-async-meth-valid.js test/language/expressions/class/elements/syntax/valid/grammar-special-prototype-async-meth-valid.js: Line 39:112 Unexpected token function (and 12 more errors)]: %!v(MISSING)", "test/language/expressions/class/elements/syntax/valid/grammar-static-ctor-async-gen-meth-valid.js-strict:true": "[test/language/expressions/class/elements/syntax/valid/grammar-static-ctor-async-gen-meth-valid.js SyntaxError: test/language/expressions/class/elements/syntax/valid/grammar-static-ctor-async-gen-meth-valid.js: Unexpected token (24:15)\n 22 | \n 23 | var C = class {\n\u003e 24 | static async * constructor() {}\n | ^\n 25 | constructor() {} // stacks with a valid constructor\n 26 | };\n 27 | at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/language/expressions/class/elements/syntax/valid/grammar-static-ctor-async-meth-valid.js-strict:true": "[test/language/expressions/class/elements/syntax/valid/grammar-static-ctor-async-meth-valid.js ReferenceError: regeneratorRuntime is not defined at test/language/expressions/class/elements/syntax/valid/grammar-static-ctor-async-meth-valid.js:23:130(7)]: %!v(MISSING)", + "test/language/expressions/class/elements/syntax/valid/grammar-static-ctor-async-meth-valid.js-strict:true": "[test/language/expressions/class/elements/syntax/valid/grammar-static-ctor-async-meth-valid.js test/language/expressions/class/elements/syntax/valid/grammar-static-ctor-async-meth-valid.js: Line 23:80 Unexpected token function (and 12 more errors)]: %!v(MISSING)", "test/language/expressions/class/elements/syntax/valid/grammar-static-private-async-gen-meth-prototype.js-strict:true": "[test/language/expressions/class/elements/syntax/valid/grammar-static-private-async-gen-meth-prototype.js SyntaxError: test/language/expressions/class/elements/syntax/valid/grammar-static-private-async-gen-meth-prototype.js: Unexpected token (20:15)\n 18 | \n 19 | var C = class {\n\u003e 20 | static async * #prototype() {}\n | ^\n 21 | };\n 22 | at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/expressions/class/elements/syntax/valid/grammar-static-private-async-meth-prototype.js-strict:true": "[test/language/expressions/class/elements/syntax/valid/grammar-static-private-async-meth-prototype.js SyntaxError: test/language/expressions/class/elements/syntax/valid/grammar-static-private-async-meth-prototype.js: Unexpected character '#' (20:15)\n 18 | \n 19 | var C = class {\n\u003e 20 | static async #prototype() {}\n | ^\n 21 | };\n 22 | at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/expressions/class/elements/syntax/valid/grammar-static-private-meth-prototype.js-strict:true": "[test/language/expressions/class/elements/syntax/valid/grammar-static-private-meth-prototype.js SyntaxError: test/language/expressions/class/elements/syntax/valid/grammar-static-private-meth-prototype.js: Unexpected character '#' (20:9)\n 18 | \n 19 | var C = class {\n\u003e 20 | static #prototype() {}\n | ^\n 21 | };\n 22 | at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", @@ -2523,8 +2512,8 @@ "test/language/expressions/class/elements/wrapped-in-sc-static-private-methods-with-fields.js-strict:true": "[test/language/expressions/class/elements/wrapped-in-sc-static-private-methods-with-fields.js SyntaxError: test/language/expressions/class/elements/wrapped-in-sc-static-private-methods-with-fields.js: Unexpected character '#' (29:15)\n 27 | var C = class {\n 28 | ;;;;\n\u003e 29 | ;;;;;;static #xVal; static #yVal;;;;;;;\n | ^\n 30 | ;;;;\n 31 | static #x(value) {\n 32 | this.#xVal = value; at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/expressions/class/elements/wrapped-in-sc-static-private-methods.js-strict:true": "[test/language/expressions/class/elements/wrapped-in-sc-static-private-methods.js SyntaxError: test/language/expressions/class/elements/wrapped-in-sc-static-private-methods.js: Unexpected character '#' (31:9)\n 29 | ;;;;;;;;;;;;;\n 30 | ;;;;\n\u003e 31 | static #x(value) {\n | ^\n 32 | return value / 2;\n 33 | }\n 34 | static #y(value) { at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/expressions/class/elements/wrapped-in-sc-string-literal-names.js-strict:true": "[test/language/expressions/class/elements/wrapped-in-sc-string-literal-names.js SyntaxError: test/language/expressions/class/elements/wrapped-in-sc-string-literal-names.js: Unexpected token (27:22)\n 25 | var C = class {\n 26 | ;;;;\n\u003e 27 | ;;;;;;'a'; \"b\"; 'c' = 39;\n | ^\n 28 | \"d\" = 42;;;;;;;\n 29 | ;;;;\n 30 | at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/language/expressions/class/heritage-arrow-function.js-strict:true": "[test/language/expressions/class/heritage-arrow-function.js Test262Error: Expected a TypeError but got a ReferenceError at harness/sta.js:22:9(49)]: %!v(MISSING)", - "test/language/expressions/class/heritage-async-arrow-function.js-strict:true": "[test/language/expressions/class/heritage-async-arrow-function.js Test262Error: Expected a TypeError but got a ReferenceError at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/language/expressions/class/heritage-arrow-function.js-strict:true": "[test/language/expressions/class/heritage-arrow-function.js test/language/expressions/class/heritage-arrow-function.js: Line 30:212 Unexpected token function (and 2 more errors)]: %!v(MISSING)", + "test/language/expressions/class/heritage-async-arrow-function.js-strict:true": "[test/language/expressions/class/heritage-async-arrow-function.js test/language/expressions/class/heritage-async-arrow-function.js: Line 30:212 Unexpected token function (and 2 more errors)]: %!v(MISSING)", "test/language/expressions/class/method-static/dflt-params-ref-later.js-strict:true": "[test/language/expressions/class/method-static/dflt-params-ref-later.js Test262Error: Expected a ReferenceError to be thrown but no exception was thrown at all at harness/sta.js:22:9(49)]: %!v(MISSING)", "test/language/expressions/class/method-static/dflt-params-ref-self.js-strict:true": "[test/language/expressions/class/method-static/dflt-params-ref-self.js Test262Error: Expected a ReferenceError to be thrown but no exception was thrown at all at harness/sta.js:22:9(49)]: %!v(MISSING)", "test/language/expressions/class/method/dflt-params-ref-later.js-strict:true": "[test/language/expressions/class/method/dflt-params-ref-later.js Test262Error: Expected a ReferenceError to be thrown but no exception was thrown at all at harness/sta.js:22:9(49)]: %!v(MISSING)", @@ -2728,7 +2717,7 @@ "test/language/expressions/import.meta/distinct-for-each-module.js-strict:true": "[test/language/expressions/import.meta/distinct-for-each-module.js SyntaxError: test/language/expressions/import.meta/distinct-for-each-module.js: Unexpected token (29:20)\n 27 | \n 28 | // The imported module has a distinct import.meta object.\n\u003e 29 | assert.notSameValue(import.meta, fixture_meta,\n | ^\n 30 | \"foreign import.meta accessed via import binding\");\n 31 | assert.notSameValue(import.meta, getMeta(),\n 32 | \"foreign import.meta accessed via function call\"); at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/expressions/import.meta/import-meta-is-an-ordinary-object.js-strict:true": "[test/language/expressions/import.meta/import-meta-is-an-ordinary-object.js SyntaxError: test/language/expressions/import.meta/import-meta-is-an-ordinary-object.js: Unexpected token (28:24)\n 26 | \n 27 | // import.meta is an object.\n\u003e 28 | assert.sameValue(typeof import.meta, \"object\",\n | ^\n 29 | \"typeof import.meta is 'object'\");\n 30 | assert.notSameValue(import.meta, null,\n 31 | \"typeof import.meta is 'object' and import.meta isn't |null|.\"); at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/expressions/import.meta/same-object-returned.js-strict:true": "[test/language/expressions/import.meta/same-object-returned.js SyntaxError: test/language/expressions/import.meta/same-object-returned.js: Unexpected token (28:8)\n 26 | ---*/\n 27 | \n\u003e 28 | var a = import.meta;\n | ^\n 29 | var b = function() { return import.meta; }();\n 30 | \n 31 | assert.sameValue(import.meta, a, at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/language/expressions/import.meta/syntax/goal-async-function-params-or-body.js-strict:true": "[test/language/expressions/import.meta/syntax/goal-async-function-params-or-body.js ReferenceError: regeneratorRuntime is not defined at test/language/expressions/import.meta/syntax/goal-async-function-params-or-body.js:14:53(8)]: %!v(MISSING)", + "test/language/expressions/import.meta/syntax/goal-async-function-params-or-body.js-strict:true": "[test/language/expressions/import.meta/syntax/goal-async-function-params-or-body.js test/language/expressions/import.meta/syntax/goal-async-function-params-or-body.js: Line 14:27 Unexpected token function (and 2 more errors)]: %!v(MISSING)", "test/language/expressions/import.meta/syntax/goal-async-generator-params-or-body.js-strict:true": "[test/language/expressions/import.meta/syntax/goal-async-generator-params-or-body.js SyntaxError: test/language/expressions/import.meta/syntax/goal-async-generator-params-or-body.js: Unexpected token (14:35)\n 12 | ---*/\n 13 | \n\u003e 14 | var AsyncGenerator = async function*(){}.constructor;\n | ^\n 15 | \n 16 | assert.throws(SyntaxError, function() {\n 17 | AsyncGenerator(\"import.meta\"); at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/expressions/import.meta/syntax/goal-module-nested-function.js-strict:true": "[test/language/expressions/import.meta/syntax/goal-module-nested-function.js SyntaxError: test/language/expressions/import.meta/syntax/goal-module-nested-function.js: 'import' and 'export' may only appear at the top level (16:2)\n 14 | \n 15 | function f() {\n\u003e 16 | import.meta;\n | ^\n 17 | }\n 18 | at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/expressions/import.meta/syntax/goal-module.js-strict:true": "[test/language/expressions/import.meta/syntax/goal-module.js SyntaxError: test/language/expressions/import.meta/syntax/goal-module.js: Unexpected token, expected { (15:6)\n 13 | ---*/\n 14 | \n\u003e 15 | import.meta;\n | ^\n 16 | at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", @@ -2848,11 +2837,11 @@ "test/language/expressions/object/cpn-obj-lit-computed-property-name-from-assignment-expression-coalesce.js-strict:true": "[test/language/expressions/object/cpn-obj-lit-computed-property-name-from-assignment-expression-coalesce.js SyntaxError: test/language/expressions/object/cpn-obj-lit-computed-property-name-from-assignment-expression-coalesce.js: Unexpected token (30:6)\n 28 | \n 29 | let o = {\n\u003e 30 | [x ??= 1]: 2\n | ^\n 31 | };\n 32 | \n 33 | assert.sameValue( at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/expressions/object/cpn-obj-lit-computed-property-name-from-assignment-expression-logical-and.js-strict:true": "[test/language/expressions/object/cpn-obj-lit-computed-property-name-from-assignment-expression-logical-and.js SyntaxError: test/language/expressions/object/cpn-obj-lit-computed-property-name-from-assignment-expression-logical-and.js: Unexpected token (30:7)\n 28 | \n 29 | let o = {\n\u003e 30 | [x \u0026\u0026= 1]: 2\n | ^\n 31 | };\n 32 | \n 33 | assert.sameValue( at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/expressions/object/cpn-obj-lit-computed-property-name-from-assignment-expression-logical-or.js-strict:true": "[test/language/expressions/object/cpn-obj-lit-computed-property-name-from-assignment-expression-logical-or.js SyntaxError: test/language/expressions/object/cpn-obj-lit-computed-property-name-from-assignment-expression-logical-or.js: Unexpected token (30:7)\n 28 | \n 29 | let o = {\n\u003e 30 | [x ||= 1]: 2\n | ^\n 31 | };\n 32 | \n 33 | assert.sameValue( at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/language/expressions/object/cpn-obj-lit-computed-property-name-from-async-arrow-function-expression.js-strict:true": "[test/language/expressions/object/cpn-obj-lit-computed-property-name-from-async-arrow-function-expression.js ReferenceError: regeneratorRuntime is not defined at test/language/expressions/object/cpn-obj-lit-computed-property-name-from-async-arrow-function-expression.js:28:61(15)]: %!v(MISSING)", + "test/language/expressions/object/cpn-obj-lit-computed-property-name-from-async-arrow-function-expression.js-strict:true": "[test/language/expressions/object/cpn-obj-lit-computed-property-name-from-async-arrow-function-expression.js test/language/expressions/object/cpn-obj-lit-computed-property-name-from-async-arrow-function-expression.js: Line 29:7 Unexpected token function (and 2 more errors)]: %!v(MISSING)", "test/language/expressions/object/cpn-obj-lit-computed-property-name-from-expression-coalesce.js-strict:true": "[test/language/expressions/object/cpn-obj-lit-computed-property-name-from-expression-coalesce.js SyntaxError: test/language/expressions/object/cpn-obj-lit-computed-property-name-from-expression-coalesce.js: Unexpected token (30:6)\n 28 | \n 29 | let o = {\n\u003e 30 | [x ?? 1]: 2\n | ^\n 31 | };\n 32 | \n 33 | assert.sameValue( at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/language/expressions/object/cpn-obj-lit-computed-property-name-from-generator-function-declaration.js-strict:true": "[test/language/expressions/object/cpn-obj-lit-computed-property-name-from-generator-function-declaration.js ReferenceError: regeneratorRuntime is not defined at test/language/expressions/object/cpn-obj-lit-computed-property-name-from-generator-function-declaration.js:25:235(13)]: %!v(MISSING)", + "test/language/expressions/object/cpn-obj-lit-computed-property-name-from-generator-function-declaration.js-strict:true": "[test/language/expressions/object/cpn-obj-lit-computed-property-name-from-generator-function-declaration.js test/language/expressions/object/cpn-obj-lit-computed-property-name-from-generator-function-declaration.js: Line 26:9 Unexpected token * (and 2 more errors)]: %!v(MISSING)", "test/language/expressions/object/cpn-obj-lit-computed-property-name-from-integer-separators.js-strict:true": "[test/language/expressions/object/cpn-obj-lit-computed-property-name-from-integer-separators.js SyntaxError: test/language/expressions/object/cpn-obj-lit-computed-property-name-from-integer-separators.js: Identifier directly after number (29:4)\n 27 | \n 28 | let o = {\n\u003e 29 | [1_2_3_4_5_6_7_8]: 1_2_3_4_5_6_7_8\n | ^\n 30 | };\n 31 | \n 32 | assert.sameValue( at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/language/expressions/object/cpn-obj-lit-computed-property-name-from-yield-expression.js-strict:true": "[test/language/expressions/object/cpn-obj-lit-computed-property-name-from-yield-expression.js ReferenceError: regeneratorRuntime is not defined at test/language/expressions/object/cpn-obj-lit-computed-property-name-from-yield-expression.js:25:33(12)]: %!v(MISSING)", + "test/language/expressions/object/cpn-obj-lit-computed-property-name-from-yield-expression.js-strict:true": "[test/language/expressions/object/cpn-obj-lit-computed-property-name-from-yield-expression.js test/language/expressions/object/cpn-obj-lit-computed-property-name-from-yield-expression.js: Line 26:9 Unexpected token * (and 5 more errors)]: %!v(MISSING)", "test/language/expressions/object/dstr/meth-ary-init-iter-get-err-array-prototype.js-strict:true": "[test/language/expressions/object/dstr/meth-ary-init-iter-get-err-array-prototype.js Test262Error: Expected a TypeError to be thrown but no exception was thrown at all at harness/sta.js:22:9(49)]: %!v(MISSING)", "test/language/expressions/object/dstr/meth-ary-ptrn-elem-id-init-fn-name-arrow.js-strict:true": "[test/language/expressions/object/dstr/meth-ary-ptrn-elem-id-init-fn-name-arrow.js Test262Error: Expected SameValue(«», «arrow») to be true at harness/sta.js:22:9(49)]: %!v(MISSING)", "test/language/expressions/object/dstr/meth-ary-ptrn-elem-id-init-fn-name-class.js-strict:true": "[test/language/expressions/object/dstr/meth-ary-ptrn-elem-id-init-fn-name-class.js Test262Error: Expected SameValue(«_class», «cls») to be true at harness/sta.js:22:9(49)]: %!v(MISSING)", @@ -2940,8 +2929,6 @@ "test/language/expressions/object/method-definition/async-gen-meth-dflt-params-ref-later.js-strict:true": "[test/language/expressions/object/method-definition/async-gen-meth-dflt-params-ref-later.js SyntaxError: test/language/expressions/object/method-definition/async-gen-meth-dflt-params-ref-later.js: Unexpected token (40:8)\n 38 | var callCount = 0;\n 39 | var obj = {\n\u003e 40 | async *method(x = y, y) {\n | ^\n 41 | \n 42 | callCount = callCount + 1;\n 43 | } at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/expressions/object/method-definition/async-gen-meth-dflt-params-ref-self.js-strict:true": "[test/language/expressions/object/method-definition/async-gen-meth-dflt-params-ref-self.js SyntaxError: test/language/expressions/object/method-definition/async-gen-meth-dflt-params-ref-self.js: Unexpected token (40:8)\n 38 | var callCount = 0;\n 39 | var obj = {\n\u003e 40 | async *method(x = x) {\n | ^\n 41 | \n 42 | callCount = callCount + 1;\n 43 | } at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/expressions/object/method-definition/async-gen-meth-eval-var-scope-syntax-err.js-strict:false": "[test/language/expressions/object/method-definition/async-gen-meth-eval-var-scope-syntax-err.js SyntaxError: test/language/expressions/object/method-definition/async-gen-meth-eval-var-scope-syntax-err.js: Unexpected token (34:8)\n 32 | var callCount = 0;\n 33 | var obj = {\n\u003e 34 | async *method(a = eval(\"var a = 42\")) {\n | ^\n 35 | \n 36 | callCount = callCount + 1;\n 37 | } at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/language/expressions/object/method-definition/async-meth-escaped-async.js-strict:true": "[test/language/expressions/object/method-definition/async-meth-escaped-async.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", - "test/language/expressions/object/method-definition/early-errors-object-method-async-lineterminator.js-strict:true": "[test/language/expressions/object/method-definition/early-errors-object-method-async-lineterminator.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", "test/language/expressions/object/method-definition/escaped-get-e.js-strict:true": "[test/language/expressions/object/method-definition/escaped-get-e.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", "test/language/expressions/object/method-definition/escaped-get-g.js-strict:true": "[test/language/expressions/object/method-definition/escaped-get-g.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", "test/language/expressions/object/method-definition/escaped-get-t.js-strict:true": "[test/language/expressions/object/method-definition/escaped-get-t.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", @@ -2961,7 +2948,7 @@ "test/language/expressions/object/method-definition/name-param-redecl.js-strict:true": "[test/language/expressions/object/method-definition/name-param-redecl.js TypeError SyntaxError]: unexpected error type (%!s(MISSING)), expected (%!s(MISSING))", "test/language/expressions/object/method-definition/name-prop-name-yield-id.js-strict:false": "[test/language/expressions/object/method-definition/name-prop-name-yield-id.js SyntaxError: test/language/expressions/object/method-definition/name-prop-name-yield-id.js: Unexpected token (13:4)\n 11 | ---*/\n 12 | \n\u003e 13 | var yield = 'propName';\n | ^\n 14 | var obj = {\n 15 | [yield]() {}\n 16 | }; at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/expressions/object/method-definition/name-prototype-prop.js-strict:true": "[test/language/expressions/object/method-definition/name-prototype-prop.js Test262Error: Expected SameValue(«true», «false») to be true at harness/sta.js:22:9(49)]: %!v(MISSING)", - "test/language/expressions/object/method-definition/object-method-returns-promise.js-strict:true": "[test/language/expressions/object/method-definition/object-method-returns-promise.js ReferenceError: regeneratorRuntime is not defined at method (test/language/expressions/object/method-definition/object-method-returns-promise.js:12:86(10))]: %!v(MISSING)", + "test/language/expressions/object/method-definition/object-method-returns-promise.js-strict:true": "[test/language/expressions/object/method-definition/object-method-returns-promise.js test/language/expressions/object/method-definition/object-method-returns-promise.js: Line 12:17 Unexpected token function (and 11 more errors)]: %!v(MISSING)", "test/language/expressions/object/object-spread-proxy-ownkeys-returned-keys-order.js-strict:true": "[test/language/expressions/object/object-spread-proxy-ownkeys-returned-keys-order.js SyntaxError: test/language/expressions/object/object-spread-proxy-ownkeys-returned-keys-order.js: Unexpected token (45:2)\n 43 | });\n 44 | \n\u003e 45 | ({...proxy});\n | ^\n 46 | assert.compareArray(getOwnKeys, ownKeysResult);\n 47 | at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/expressions/object/prop-def-id-eval-error-2.js-strict:false": "[test/language/expressions/object/prop-def-id-eval-error-2.js SyntaxError: test/language/expressions/object/prop-def-id-eval-error-2.js: 'with' in strict mode (19:2)\n 17 | \n 18 | assert.throws(Test262Error, function() {\n\u003e 19 | with (p) {\n | ^\n 20 | ({attr});\n 21 | }\n 22 | }); at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/expressions/object/prop-def-id-eval-error.js-strict:false": "[test/language/expressions/object/prop-def-id-eval-error.js SyntaxError: test/language/expressions/object/prop-def-id-eval-error.js: 'with' in strict mode (18:2)\n 16 | \n 17 | assert.throws(Test262Error, function() {\n\u003e 18 | with (obj) {\n | ^\n 19 | ({ attr });\n 20 | }\n 21 | }); at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", @@ -3079,7 +3066,7 @@ "test/language/function-code/switch-case-decl-onlystrict.js-strict:true": "[test/language/function-code/switch-case-decl-onlystrict.js TypeError: Cannot read property 'constructor' of undefined at test/language/function-code/switch-case-decl-onlystrict.js:39:18(10)]: %!v(MISSING)", "test/language/function-code/switch-dflt-decl-onlystrict.js-strict:true": "[test/language/function-code/switch-dflt-decl-onlystrict.js TypeError: Cannot read property 'constructor' of undefined at test/language/function-code/switch-dflt-decl-onlystrict.js:39:18(10)]: %!v(MISSING)", "test/language/global-code/block-decl-strict.js-strict:true": "[test/language/global-code/block-decl-strict.js Test262Error: Expected a ReferenceError to be thrown but no exception was thrown at all at harness/sta.js:22:9(49)]: %!v(MISSING)", - "test/language/global-code/decl-lex-configurable-global.js-strict:true": "[test/language/global-code/decl-lex-configurable-global.js TypeError: Cannot read property 'Array' of undefined at test/language/global-code/decl-lex-configurable-global.js:30:26(36)]: %!v(MISSING)", + "test/language/global-code/decl-lex-configurable-global.js-strict:true": "[test/language/global-code/decl-lex-configurable-global.js TypeError: Cannot read property 'Array' of undefined at test/language/global-code/decl-lex-configurable-global.js:30:25(16)]: %!v(MISSING)", "test/language/global-code/decl-lex-deletion.js-strict:false": "[test/language/global-code/decl-lex-deletion.js SyntaxError: test/language/global-code/decl-lex-deletion.js: Deleting local variable in strict mode (23:0)\n 21 | let test262let;\n 22 | \n\u003e 23 | delete test262let;\n | ^\n 24 | \n 25 | // Binding values are asserted by a dedicated test. IdentifierReferences serve\n 26 | // to ensure that the entries in the environment record persist. at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/global-code/decl-lex-restricted-global.js-strict:true": "[test/language/global-code/decl-lex-restricted-global.js \u003cnil\u003e]: Expected error: %!v(MISSING)", "test/language/global-code/decl-lex.js-strict:true": "[test/language/global-code/decl-lex.js SyntaxError: test/language/global-code/decl-lex.js: \"test262const\" is read-only\n 33 | \n 34 | assert.throws(TypeError, function() {\n\u003e 35 | test262const = 4;\n | ^\n 36 | }, '`const` binding is strictly immutable');\n 37 | assert.sameValue(test262const, 3, '`const` binding cannot be modified');\n 38 | assert.sameValue( at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", @@ -3246,13 +3233,11 @@ "test/language/module-code/eval-rqstd-order.js-strict:true": "[test/language/module-code/eval-rqstd-order.js SyntaxError: test/language/module-code/eval-rqstd-order.js: Unexpected token (41:9)\n 39 | import dflt3, * as ns2 from './eval-rqstd-order-8_FIXTURE.js';\n 40 | \n\u003e 41 | export * as ns3 from './eval-rqstd-order-9_FIXTURE.js';\n | ^\n 42 | at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/module-code/eval-self-once.js-strict:true": "[test/language/module-code/eval-self-once.js SyntaxError: test/language/module-code/eval-self-once.js: Unexpected token (36:9)\n 34 | import dflt2, {} from './eval-self-once.js';\n 35 | export * from './eval-self-once.js';\n\u003e 36 | export * as ns2 from './eval-self-once.js';\n | ^\n 37 | import dflt3, * as ns from './eval-self-once.js';\n 38 | export default null;\n 39 | at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/module-code/eval-this.js-strict:true": "[test/language/module-code/eval-this.js Test262Error: Expected SameValue(«[object global]», «undefined») to be true at harness/sta.js:22:9(49)]: %!v(MISSING)", - "test/language/module-code/export-default-asyncfunction-declaration-binding-exists.js-strict:true": "[test/language/module-code/export-default-asyncfunction-declaration-binding-exists.js ReferenceError SyntaxError]: unexpected error type (%!s(MISSING)), expected (%!s(MISSING))", - "test/language/module-code/export-default-asyncfunction-declaration-binding.js-strict:true": "[test/language/module-code/export-default-asyncfunction-declaration-binding.js ReferenceError: exports is not defined at test/language/module-code/export-default-asyncfunction-declaration-binding.js:16:28(8)]: %!v(MISSING)", + "test/language/module-code/export-default-asyncfunction-declaration-binding.js-strict:true": "[test/language/module-code/export-default-asyncfunction-declaration-binding.js test/language/module-code/export-default-asyncfunction-declaration-binding.js: Line 18:7 Unexpected token function (and 2 more errors)]: %!v(MISSING)", "test/language/module-code/export-default-asyncgenerator-declaration-binding.js-strict:true": "[test/language/module-code/export-default-asyncgenerator-declaration-binding.js SyntaxError: test/language/module-code/export-default-asyncgenerator-declaration-binding.js: Unexpected token (18:30)\n 16 | ---*/\n 17 | \n\u003e 18 | export default async function * AG() {}\n | ^\n 19 | AG.foo = '';\n 20 | at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/module-code/export-default-function-declaration-binding-exists.js-strict:true": "[test/language/module-code/export-default-function-declaration-binding-exists.js ReferenceError SyntaxError]: unexpected error type (%!s(MISSING)), expected (%!s(MISSING))", "test/language/module-code/export-default-function-declaration-binding.js-strict:true": "[test/language/module-code/export-default-function-declaration-binding.js ReferenceError: exports is not defined at test/language/module-code/export-default-function-declaration-binding.js:16:28(8)]: %!v(MISSING)", - "test/language/module-code/export-default-generator-declaration-binding-exists.js-strict:true": "[test/language/module-code/export-default-generator-declaration-binding-exists.js ReferenceError SyntaxError]: unexpected error type (%!s(MISSING)), expected (%!s(MISSING))", - "test/language/module-code/export-default-generator-declaration-binding.js-strict:true": "[test/language/module-code/export-default-generator-declaration-binding.js ReferenceError: exports is not defined at test/language/module-code/export-default-generator-declaration-binding.js:16:28(9)]: %!v(MISSING)", + "test/language/module-code/export-default-generator-declaration-binding.js-strict:true": "[test/language/module-code/export-default-generator-declaration-binding.js test/language/module-code/export-default-generator-declaration-binding.js: Line 18:11 Unexpected token * (and 2 more errors)]: %!v(MISSING)", "test/language/module-code/export-expname-binding-string.js-strict:true": "[test/language/module-code/export-expname-binding-string.js ReferenceError: require is not defined at test/language/module-code/export-expname-binding-string.js:16:37(10)]: %!v(MISSING)", "test/language/module-code/export-expname-from-binding-string.js-strict:true": "[test/language/module-code/export-expname-from-binding-string.js SyntaxError: test/language/module-code/export-expname-from-binding-string.js: Unexpected token (21:20)\n 19 | ---*/\n 20 | import * as Scouts from \"./export-expname-from-binding-string.js\";\n\u003e 21 | export { Mercury as \"☿\" } from \"./export-expname_FIXTURE.js\";\n | ^\n 22 | \n 23 | assert.sameValue(Scouts.Mercury, undefined);\n 24 | assert.sameValue(Scouts[\"☿\"], globalThis.Mercury); at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/module-code/export-expname-from-star-string.js-strict:true": "[test/language/module-code/export-expname-from-star-string.js SyntaxError: test/language/module-code/export-expname-from-star-string.js: Unexpected token (18:9)\n 16 | ---*/\n 17 | import * as Scouts from \"./export-expname-from-star-string.js\";\n\u003e 18 | export * as \"All\" from \"./export-expname_FIXTURE.js\";\n | ^\n 19 | \n 20 | assert.sameValue(Scouts[\"☿\"], undefined);\n 21 | assert.sameValue(Scouts.All[\"☿\"], globalThis.Mercury); at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", @@ -3262,10 +3247,10 @@ "test/language/module-code/export-expname-from-string.js-strict:true": "[test/language/module-code/export-expname-from-string.js SyntaxError: test/language/module-code/export-expname-from-string.js: Unexpected token (21:9)\n 19 | ---*/\n 20 | import * as Scouts from \"./export-expname-from-string.js\";\n\u003e 21 | export { \"☿\" } from \"./export-expname_FIXTURE.js\";\n | ^\n 22 | \n 23 | assert.sameValue(typeof Scouts[\"☿\"], \"function\");\n 24 | at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/module-code/export-expname-import-string-binding.js-strict:true": "[test/language/module-code/export-expname-import-string-binding.js SyntaxError: test/language/module-code/export-expname-import-string-binding.js: Unexpected token (16:9)\n 14 | features: [arbitrary-module-namespace-names]\n 15 | ---*/\n\u003e 16 | import { \"☿\" as Ami } from \"./export-expname_FIXTURE.js\";\n | ^\n 17 | \n 18 | assert.sameValue(Ami, globalThis.Mercury);\n 19 | at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/module-code/export-star-as-dflt.js-strict:true": "[test/language/module-code/export-star-as-dflt.js SyntaxError: test/language/module-code/export-star-as-dflt.js: Unexpected token (22:9)\n 20 | ---*/\n 21 | \n\u003e 22 | export * as default from './export-star-as-dflt_FIXTURE.js';\n | ^\n 23 | import Self from './export-star-as-dflt.js';\n 24 | import { default as named } from './export-star-as-dflt.js';\n 25 | import * as ns from './export-star-as-dflt.js'; at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/language/module-code/instn-iee-bndng-cls.js-strict:true": "[test/language/module-code/instn-iee-bndng-cls.js ReferenceError: exports is not defined at test/language/module-code/instn-iee-bndng-cls.js:41:28(11)]: %!v(MISSING)", - "test/language/module-code/instn-iee-bndng-const.js-strict:true": "[test/language/module-code/instn-iee-bndng-const.js ReferenceError: exports is not defined at test/language/module-code/instn-iee-bndng-const.js:41:28(6)]: %!v(MISSING)", + "test/language/module-code/instn-iee-bndng-cls.js-strict:true": "[test/language/module-code/instn-iee-bndng-cls.js ReferenceError: exports is not defined at test/language/module-code/instn-iee-bndng-cls.js:41:28(10)]: %!v(MISSING)", + "test/language/module-code/instn-iee-bndng-const.js-strict:true": "[test/language/module-code/instn-iee-bndng-const.js ReferenceError: exports is not defined at test/language/module-code/instn-iee-bndng-const.js:41:28(5)]: %!v(MISSING)", "test/language/module-code/instn-iee-bndng-fun.js-strict:true": "[test/language/module-code/instn-iee-bndng-fun.js SyntaxError: test/language/module-code/instn-iee-bndng-fun.js: \"B\" is read-only\n 48 | \n 49 | assert.throws(TypeError, function() {\n\u003e 50 | B = null;\n | ^\n 51 | }, 'binding rejects assignment');\n 52 | \n 53 | assert.sameValue(B(), 77, 'binding value is immutable'); at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/language/module-code/instn-iee-bndng-let.js-strict:true": "[test/language/module-code/instn-iee-bndng-let.js ReferenceError: exports is not defined at test/language/module-code/instn-iee-bndng-let.js:41:28(6)]: %!v(MISSING)", + "test/language/module-code/instn-iee-bndng-let.js-strict:true": "[test/language/module-code/instn-iee-bndng-let.js ReferenceError: exports is not defined at test/language/module-code/instn-iee-bndng-let.js:41:28(5)]: %!v(MISSING)", "test/language/module-code/instn-iee-bndng-var.js-strict:true": "[test/language/module-code/instn-iee-bndng-var.js SyntaxError: test/language/module-code/instn-iee-bndng-var.js: \"B\" is read-only\n 48 | \n 49 | assert.throws(TypeError, function() {\n\u003e 50 | B = null;\n | ^\n 51 | }, 'binding rejects assignment');\n 52 | \n 53 | assert.sameValue(B, undefined, 'binding value is immutable'); at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/module-code/instn-iee-err-ambiguous-as.js-strict:true": "[test/language/module-code/instn-iee-err-ambiguous-as.js ReferenceError SyntaxError]: unexpected error type (%!s(MISSING)), expected (%!s(MISSING))", "test/language/module-code/instn-iee-err-ambiguous.js-strict:true": "[test/language/module-code/instn-iee-err-ambiguous.js ReferenceError SyntaxError]: unexpected error type (%!s(MISSING)), expected (%!s(MISSING))", @@ -3280,27 +3265,27 @@ "test/language/module-code/instn-iee-trlng-comma.js-strict:true": "[test/language/module-code/instn-iee-trlng-comma.js ReferenceError: exports is not defined at test/language/module-code/instn-iee-trlng-comma.js:14:28(5)]: %!v(MISSING)", "test/language/module-code/instn-local-bndng-cls.js-strict:true": "[test/language/module-code/instn-local-bndng-cls.js Test262Error: Binding is created but not initialized. Expected a ReferenceError to be thrown but no exception was thrown at all at harness/sta.js:22:9(49)]: %!v(MISSING)", "test/language/module-code/instn-local-bndng-const.js-strict:true": "[test/language/module-code/instn-local-bndng-const.js SyntaxError: test/language/module-code/instn-local-bndng-const.js: \"test262\" is read-only\n 35 | \n 36 | assert.throws(TypeError, function() {\n\u003e 37 | test262 = null;\n | ^\n 38 | });\n 39 | \n 40 | assert.sameValue(test262, 23, 'binding is not mutable'); at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/language/module-code/instn-local-bndng-export-cls.js-strict:true": "[test/language/module-code/instn-local-bndng-export-cls.js ReferenceError: exports is not defined at test/language/module-code/instn-local-bndng-export-cls.js:20:28(11)]: %!v(MISSING)", - "test/language/module-code/instn-local-bndng-export-const.js-strict:true": "[test/language/module-code/instn-local-bndng-export-const.js ReferenceError: exports is not defined at test/language/module-code/instn-local-bndng-export-const.js:19:28(6)]: %!v(MISSING)", + "test/language/module-code/instn-local-bndng-export-cls.js-strict:true": "[test/language/module-code/instn-local-bndng-export-cls.js ReferenceError: exports is not defined at test/language/module-code/instn-local-bndng-export-cls.js:20:28(10)]: %!v(MISSING)", + "test/language/module-code/instn-local-bndng-export-const.js-strict:true": "[test/language/module-code/instn-local-bndng-export-const.js ReferenceError: exports is not defined at test/language/module-code/instn-local-bndng-export-const.js:19:28(5)]: %!v(MISSING)", "test/language/module-code/instn-local-bndng-export-fun.js-strict:true": "[test/language/module-code/instn-local-bndng-export-fun.js ReferenceError: exports is not defined at test/language/module-code/instn-local-bndng-export-fun.js:20:28(9)]: %!v(MISSING)", - "test/language/module-code/instn-local-bndng-export-gen.js-strict:true": "[test/language/module-code/instn-local-bndng-export-gen.js ReferenceError: exports is not defined at test/language/module-code/instn-local-bndng-export-gen.js:20:28(10)]: %!v(MISSING)", - "test/language/module-code/instn-local-bndng-export-let.js-strict:true": "[test/language/module-code/instn-local-bndng-export-let.js ReferenceError: exports is not defined at test/language/module-code/instn-local-bndng-export-let.js:19:28(6)]: %!v(MISSING)", + "test/language/module-code/instn-local-bndng-export-gen.js-strict:true": "[test/language/module-code/instn-local-bndng-export-gen.js test/language/module-code/instn-local-bndng-export-gen.js: Line 33:290 Unexpected token * (and 2 more errors)]: %!v(MISSING)", + "test/language/module-code/instn-local-bndng-export-let.js-strict:true": "[test/language/module-code/instn-local-bndng-export-let.js ReferenceError: exports is not defined at test/language/module-code/instn-local-bndng-export-let.js:19:28(5)]: %!v(MISSING)", "test/language/module-code/instn-local-bndng-export-var.js-strict:true": "[test/language/module-code/instn-local-bndng-export-var.js ReferenceError: exports is not defined at test/language/module-code/instn-local-bndng-export-var.js:20:28(5)]: %!v(MISSING)", "test/language/module-code/instn-local-bndng-for.js-strict:true": "[test/language/module-code/instn-local-bndng-for.js Test262Error: Expected SameValue(«[object Object]», «undefined») to be true at harness/sta.js:22:9(49)]: %!v(MISSING)", "test/language/module-code/instn-local-bndng-fun.js-strict:true": "[test/language/module-code/instn-local-bndng-fun.js Test262Error: Expected SameValue(«[object Object]», «undefined») to be true at harness/sta.js:22:9(49)]: %!v(MISSING)", - "test/language/module-code/instn-local-bndng-gen.js-strict:true": "[test/language/module-code/instn-local-bndng-gen.js ReferenceError: regeneratorRuntime is not defined at test/language/module-code/instn-local-bndng-gen.js:20:298(27)]: %!v(MISSING)", + "test/language/module-code/instn-local-bndng-gen.js-strict:true": "[test/language/module-code/instn-local-bndng-gen.js test/language/module-code/instn-local-bndng-gen.js: Line 42:9 Unexpected token * (and 2 more errors)]: %!v(MISSING)", "test/language/module-code/instn-local-bndng-let.js-strict:true": "[test/language/module-code/instn-local-bndng-let.js Test262Error: Binding is created but not initialized. Expected a ReferenceError to be thrown but no exception was thrown at all at harness/sta.js:22:9(49)]: %!v(MISSING)", "test/language/module-code/instn-local-bndng-var.js-strict:true": "[test/language/module-code/instn-local-bndng-var.js Test262Error: Expected SameValue(«[object Object]», «undefined») to be true at harness/sta.js:22:9(49)]: %!v(MISSING)", - "test/language/module-code/instn-named-bndng-cls.js-strict:true": "[test/language/module-code/instn-named-bndng-cls.js ReferenceError: exports is not defined at test/language/module-code/instn-named-bndng-cls.js:40:28(11)]: %!v(MISSING)", - "test/language/module-code/instn-named-bndng-const.js-strict:true": "[test/language/module-code/instn-named-bndng-const.js ReferenceError: exports is not defined at test/language/module-code/instn-named-bndng-const.js:40:28(6)]: %!v(MISSING)", - "test/language/module-code/instn-named-bndng-dflt-cls.js-strict:true": "[test/language/module-code/instn-named-bndng-dflt-cls.js ReferenceError: exports is not defined at test/language/module-code/instn-named-bndng-dflt-cls.js:33:28(17)]: %!v(MISSING)", - "test/language/module-code/instn-named-bndng-dflt-expr.js-strict:true": "[test/language/module-code/instn-named-bndng-dflt-expr.js ReferenceError: exports is not defined at test/language/module-code/instn-named-bndng-dflt-expr.js:31:28(11)]: %!v(MISSING)", + "test/language/module-code/instn-named-bndng-cls.js-strict:true": "[test/language/module-code/instn-named-bndng-cls.js ReferenceError: exports is not defined at test/language/module-code/instn-named-bndng-cls.js:40:28(10)]: %!v(MISSING)", + "test/language/module-code/instn-named-bndng-const.js-strict:true": "[test/language/module-code/instn-named-bndng-const.js ReferenceError: exports is not defined at test/language/module-code/instn-named-bndng-const.js:40:28(5)]: %!v(MISSING)", + "test/language/module-code/instn-named-bndng-dflt-cls.js-strict:true": "[test/language/module-code/instn-named-bndng-dflt-cls.js ReferenceError: exports is not defined at test/language/module-code/instn-named-bndng-dflt-cls.js:33:28(16)]: %!v(MISSING)", + "test/language/module-code/instn-named-bndng-dflt-expr.js-strict:true": "[test/language/module-code/instn-named-bndng-dflt-expr.js ReferenceError: exports is not defined at test/language/module-code/instn-named-bndng-dflt-expr.js:31:28(10)]: %!v(MISSING)", "test/language/module-code/instn-named-bndng-dflt-fun-anon.js-strict:true": "[test/language/module-code/instn-named-bndng-dflt-fun-anon.js ReferenceError: exports is not defined at test/language/module-code/instn-named-bndng-dflt-fun-anon.js:45:28(10)]: %!v(MISSING)", "test/language/module-code/instn-named-bndng-dflt-fun-named.js-strict:true": "[test/language/module-code/instn-named-bndng-dflt-fun-named.js ReferenceError: exports is not defined at test/language/module-code/instn-named-bndng-dflt-fun-named.js:45:28(15)]: %!v(MISSING)", - "test/language/module-code/instn-named-bndng-dflt-named.js-strict:true": "[test/language/module-code/instn-named-bndng-dflt-named.js ReferenceError: exports is not defined at test/language/module-code/instn-named-bndng-dflt-named.js:18:28(12)]: %!v(MISSING)", - "test/language/module-code/instn-named-bndng-dflt-star.js-strict:true": "[test/language/module-code/instn-named-bndng-dflt-star.js ReferenceError: exports is not defined at test/language/module-code/instn-named-bndng-dflt-star.js:19:28(12)]: %!v(MISSING)", + "test/language/module-code/instn-named-bndng-dflt-named.js-strict:true": "[test/language/module-code/instn-named-bndng-dflt-named.js ReferenceError: exports is not defined at test/language/module-code/instn-named-bndng-dflt-named.js:18:28(11)]: %!v(MISSING)", + "test/language/module-code/instn-named-bndng-dflt-star.js-strict:true": "[test/language/module-code/instn-named-bndng-dflt-star.js ReferenceError: exports is not defined at test/language/module-code/instn-named-bndng-dflt-star.js:19:28(11)]: %!v(MISSING)", "test/language/module-code/instn-named-bndng-fun.js-strict:true": "[test/language/module-code/instn-named-bndng-fun.js SyntaxError: test/language/module-code/instn-named-bndng-fun.js: \"f2\" is read-only\n 50 | \n 51 | assert.throws(TypeError, function() {\n\u003e 52 | f2 = null;\n | ^\n 53 | }, 'binding rejects assignment');\n 54 | \n 55 | assert.sameValue(f2(), 23, 'binding value is immutable'); at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/language/module-code/instn-named-bndng-let.js-strict:true": "[test/language/module-code/instn-named-bndng-let.js ReferenceError: exports is not defined at test/language/module-code/instn-named-bndng-let.js:40:28(6)]: %!v(MISSING)", + "test/language/module-code/instn-named-bndng-let.js-strict:true": "[test/language/module-code/instn-named-bndng-let.js ReferenceError: exports is not defined at test/language/module-code/instn-named-bndng-let.js:40:28(5)]: %!v(MISSING)", "test/language/module-code/instn-named-bndng-trlng-comma.js-strict:true": "[test/language/module-code/instn-named-bndng-trlng-comma.js SyntaxError: test/language/module-code/instn-named-bndng-trlng-comma.js: \"y\" is read-only\n 47 | \n 48 | assert.throws(TypeError, function() {\n\u003e 49 | y = null;\n | ^\n 50 | }, 'binding rejects assignment');\n 51 | \n 52 | assert.sameValue(y, undefined, 'binding value is immutable'); at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/module-code/instn-named-bndng-var.js-strict:true": "[test/language/module-code/instn-named-bndng-var.js SyntaxError: test/language/module-code/instn-named-bndng-var.js: \"y\" is read-only\n 45 | \n 46 | assert.throws(TypeError, function() {\n\u003e 47 | y = null;\n | ^\n 48 | }, 'binding rejects assignment');\n 49 | \n 50 | assert.sameValue(y, undefined, 'binding value is immutable'); at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/module-code/instn-named-err-ambiguous-as.js-strict:true": "[test/language/module-code/instn-named-err-ambiguous-as.js ReferenceError SyntaxError]: unexpected error type (%!s(MISSING)), expected (%!s(MISSING))", @@ -3336,7 +3321,7 @@ "test/language/module-code/instn-star-star-cycle.js-strict:true": "[test/language/module-code/instn-star-star-cycle.js ReferenceError: require is not defined at test/language/module-code/instn-star-star-cycle.js:45:43(10)]: %!v(MISSING)", "test/language/module-code/namespace/Symbol.iterator.js-strict:true": "[test/language/module-code/namespace/Symbol.iterator.js ReferenceError: require is not defined at test/language/module-code/namespace/Symbol.iterator.js:11:30(10)]: %!v(MISSING)", "test/language/module-code/namespace/Symbol.toStringTag.js-strict:true": "[test/language/module-code/namespace/Symbol.toStringTag.js ReferenceError: require is not defined at test/language/module-code/namespace/Symbol.toStringTag.js:19:33(11)]: %!v(MISSING)", - "test/language/module-code/namespace/internals/define-own-property.js-strict:true": "[test/language/module-code/namespace/internals/define-own-property.js ReferenceError: exports is not defined at test/language/module-code/namespace/internals/define-own-property.js:11:28(23)]: %!v(MISSING)", + "test/language/module-code/namespace/internals/define-own-property.js-strict:true": "[test/language/module-code/namespace/internals/define-own-property.js ReferenceError: exports is not defined at test/language/module-code/namespace/internals/define-own-property.js:11:28(18)]: %!v(MISSING)", "test/language/module-code/namespace/internals/delete-exported-init.js-strict:true": "[test/language/module-code/namespace/internals/delete-exported-init.js ReferenceError: exports is not defined at test/language/module-code/namespace/internals/delete-exported-init.js:15:28(12)]: %!v(MISSING)", "test/language/module-code/namespace/internals/delete-exported-uninit.js-strict:true": "[test/language/module-code/namespace/internals/delete-exported-uninit.js ReferenceError: exports is not defined at test/language/module-code/namespace/internals/delete-exported-uninit.js:15:28(12)]: %!v(MISSING)", "test/language/module-code/namespace/internals/delete-non-exported.js-strict:true": "[test/language/module-code/namespace/internals/delete-non-exported.js ReferenceError: require is not defined at test/language/module-code/namespace/internals/delete-non-exported.js:19:33(11)]: %!v(MISSING)", @@ -3353,7 +3338,7 @@ "test/language/module-code/namespace/internals/get-str-initialize.js-strict:true": "[test/language/module-code/namespace/internals/get-str-initialize.js ReferenceError: exports is not defined at test/language/module-code/namespace/internals/get-str-initialize.js:14:28(12)]: %!v(MISSING)", "test/language/module-code/namespace/internals/get-str-not-found.js-strict:true": "[test/language/module-code/namespace/internals/get-str-not-found.js ReferenceError: exports is not defined at test/language/module-code/namespace/internals/get-str-not-found.js:14:28(11)]: %!v(MISSING)", "test/language/module-code/namespace/internals/get-str-update.js-strict:true": "[test/language/module-code/namespace/internals/get-str-update.js ReferenceError: exports is not defined at test/language/module-code/namespace/internals/get-str-update.js:12:28(12)]: %!v(MISSING)", - "test/language/module-code/namespace/internals/get-sym-found.js-strict:true": "[test/language/module-code/namespace/internals/get-sym-found.js ReferenceError: require is not defined at test/language/module-code/namespace/internals/get-sym-found.js:17:27(29)]: %!v(MISSING)", + "test/language/module-code/namespace/internals/get-sym-found.js-strict:true": "[test/language/module-code/namespace/internals/get-sym-found.js ReferenceError: require is not defined at test/language/module-code/namespace/internals/get-sym-found.js:17:27(10)]: %!v(MISSING)", "test/language/module-code/namespace/internals/get-sym-not-found.js-strict:true": "[test/language/module-code/namespace/internals/get-sym-not-found.js ReferenceError: require is not defined at test/language/module-code/namespace/internals/get-sym-not-found.js:17:30(10)]: %!v(MISSING)", "test/language/module-code/namespace/internals/has-property-str-found-init.js-strict:true": "[test/language/module-code/namespace/internals/has-property-str-found-init.js ReferenceError: exports is not defined at test/language/module-code/namespace/internals/has-property-str-found-init.js:15:28(12)]: %!v(MISSING)", "test/language/module-code/namespace/internals/has-property-str-found-uninit.js-strict:true": "[test/language/module-code/namespace/internals/has-property-str-found-uninit.js ReferenceError: exports is not defined at test/language/module-code/namespace/internals/has-property-str-found-uninit.js:16:28(12)]: %!v(MISSING)", @@ -3367,8 +3352,8 @@ "test/language/module-code/namespace/internals/own-property-keys-binding-types.js-strict:true": "[test/language/module-code/namespace/internals/own-property-keys-binding-types.js ReferenceError: exports is not defined at test/language/module-code/namespace/internals/own-property-keys-binding-types.js:20:28(18)]: %!v(MISSING)", "test/language/module-code/namespace/internals/own-property-keys-sort.js-strict:true": "[test/language/module-code/namespace/internals/own-property-keys-sort.js ReferenceError: exports is not defined at test/language/module-code/namespace/internals/own-property-keys-sort.js:15:28(13)]: %!v(MISSING)", "test/language/module-code/namespace/internals/prevent-extensions.js-strict:true": "[test/language/module-code/namespace/internals/prevent-extensions.js ReferenceError: require is not defined at test/language/module-code/namespace/internals/prevent-extensions.js:11:33(10)]: %!v(MISSING)", - "test/language/module-code/namespace/internals/set-prototype-of-null.js-strict:true": "[test/language/module-code/namespace/internals/set-prototype-of-null.js ReferenceError: require is not defined at test/language/module-code/namespace/internals/set-prototype-of-null.js:12:34(29)]: %!v(MISSING)", - "test/language/module-code/namespace/internals/set-prototype-of.js-strict:true": "[test/language/module-code/namespace/internals/set-prototype-of.js ReferenceError: require is not defined at test/language/module-code/namespace/internals/set-prototype-of.js:10:30(30)]: %!v(MISSING)", + "test/language/module-code/namespace/internals/set-prototype-of-null.js-strict:true": "[test/language/module-code/namespace/internals/set-prototype-of-null.js ReferenceError: require is not defined at test/language/module-code/namespace/internals/set-prototype-of-null.js:12:34(10)]: %!v(MISSING)", + "test/language/module-code/namespace/internals/set-prototype-of.js-strict:true": "[test/language/module-code/namespace/internals/set-prototype-of.js ReferenceError: require is not defined at test/language/module-code/namespace/internals/set-prototype-of.js:10:30(11)]: %!v(MISSING)", "test/language/module-code/namespace/internals/set.js-strict:true": "[test/language/module-code/namespace/internals/set.js ReferenceError: exports is not defined at test/language/module-code/namespace/internals/set.js:11:28(13)]: %!v(MISSING)", "test/language/module-code/parse-err-hoist-lex-fun.js-strict:true": "[test/language/module-code/parse-err-hoist-lex-fun.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", "test/language/module-code/parse-export-empty.js-strict:true": "[test/language/module-code/parse-export-empty.js ReferenceError: exports is not defined at test/language/module-code/parse-export-empty.js:26:28(3)]: %!v(MISSING)", @@ -3400,11 +3385,10 @@ "test/language/statementList/eval-fn-expr-arrow-function-boolean-literal.js-strict:true": "[test/language/statementList/eval-fn-expr-arrow-function-boolean-literal.js SyntaxError: SyntaxError: \u003ceval\u003e: Line 1:18 Unexpected token ) (and 1 more errors) at test/language/statementList/eval-fn-expr-arrow-function-boolean-literal.js:55:18(4)]: %!v(MISSING)", "test/language/statementList/eval-fn-let-declaration.js-strict:true": "[test/language/statementList/eval-fn-let-declaration.js SyntaxError: SyntaxError: \u003ceval\u003e: Line 1:21 Unexpected identifier (and 1 more errors) at test/language/statementList/eval-fn-let-declaration.js:36:18(4)]: %!v(MISSING)", "test/language/statements/async-function/cptn-decl.js-strict:true": "[test/language/statements/async-function/cptn-decl.js SyntaxError: SyntaxError: \u003ceval\u003e: Line 1:7 Unexpected token function (and 2 more errors) at test/language/statements/async-function/cptn-decl.js:13:22(5)]: %!v(MISSING)", - "test/language/statements/async-function/declaration-returns-promise.js-strict:true": "[test/language/statements/async-function/declaration-returns-promise.js ReferenceError: regeneratorRuntime is not defined at test/language/statements/async-function/declaration-returns-promise.js:10:72(3)]: %!v(MISSING)", + "test/language/statements/async-function/declaration-returns-promise.js-strict:true": "[test/language/statements/async-function/declaration-returns-promise.js test/language/statements/async-function/declaration-returns-promise.js: Line 12:7 Unexpected token function (and 3 more errors)]: %!v(MISSING)", "test/language/statements/async-function/early-errors-declaration-formals-body-duplicate.js-strict:true": "[test/language/statements/async-function/early-errors-declaration-formals-body-duplicate.js TypeError SyntaxError]: unexpected error type (%!s(MISSING)), expected (%!s(MISSING))", - "test/language/statements/async-function/escaped-async.js-strict:true": "[test/language/statements/async-function/escaped-async.js ReferenceError SyntaxError]: unexpected error type (%!s(MISSING)), expected (%!s(MISSING))", - "test/language/statements/async-function/evaluation-body.js-strict:true": "[test/language/statements/async-function/evaluation-body.js ReferenceError: regeneratorRuntime is not defined at test/language/statements/async-function/evaluation-body.js:10:72(3)]: %!v(MISSING)", - "test/language/statements/async-function/syntax-declaration-line-terminators-allowed.js-strict:true": "[test/language/statements/async-function/syntax-declaration-line-terminators-allowed.js ReferenceError: regeneratorRuntime is not defined at test/language/statements/async-function/syntax-declaration-line-terminators-allowed.js:10:72(3)]: %!v(MISSING)", + "test/language/statements/async-function/evaluation-body.js-strict:true": "[test/language/statements/async-function/evaluation-body.js test/language/statements/async-function/evaluation-body.js: Line 13:7 Unexpected token function (and 3 more errors)]: %!v(MISSING)", + "test/language/statements/async-function/syntax-declaration-line-terminators-allowed.js-strict:true": "[test/language/statements/async-function/syntax-declaration-line-terminators-allowed.js test/language/statements/async-function/syntax-declaration-line-terminators-allowed.js: Line 12:7 Unexpected token function]: %!v(MISSING)", "test/language/statements/async-generator/dflt-params-abrupt.js-strict:true": "[test/language/statements/async-generator/dflt-params-abrupt.js SyntaxError: test/language/statements/async-generator/dflt-params-abrupt.js: Unexpected token (34:14)\n 32 | \n 33 | var callCount = 0;\n\u003e 34 | async function* f(_ = (function() { throw new Test262Error(); }())) {\n | ^\n 35 | \n 36 | callCount = callCount + 1;\n 37 | } at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/statements/async-generator/dflt-params-ref-later.js-strict:true": "[test/language/statements/async-generator/dflt-params-ref-later.js SyntaxError: test/language/statements/async-generator/dflt-params-ref-later.js: Unexpected token (35:14)\n 33 | \n 34 | var callCount = 0;\n\u003e 35 | async function* f(x = y, y) {\n | ^\n 36 | \n 37 | callCount = callCount + 1;\n 38 | } at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/statements/async-generator/dflt-params-ref-self.js-strict:true": "[test/language/statements/async-generator/dflt-params-ref-self.js SyntaxError: test/language/statements/async-generator/dflt-params-ref-self.js: Unexpected token (35:14)\n 33 | \n 34 | var callCount = 0;\n\u003e 35 | async function* f(x = x) {\n | ^\n 36 | \n 37 | callCount = callCount + 1;\n 38 | } at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", @@ -3462,7 +3446,6 @@ "test/language/statements/class/async-gen-method/dflt-params-abrupt.js-strict:true": "[test/language/statements/class/async-gen-method/dflt-params-abrupt.js SyntaxError: test/language/statements/class/async-gen-method/dflt-params-abrupt.js: Unexpected token (57:8)\n 55 | var callCount = 0;\n 56 | class C {\n\u003e 57 | async *method(_ = (function() { throw new Test262Error(); }())) {\n | ^\n 58 | \n 59 | callCount = callCount + 1;\n 60 | } at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/statements/class/async-gen-method/dflt-params-ref-later.js-strict:true": "[test/language/statements/class/async-gen-method/dflt-params-ref-later.js SyntaxError: test/language/statements/class/async-gen-method/dflt-params-ref-later.js: Unexpected token (58:8)\n 56 | var callCount = 0;\n 57 | class C {\n\u003e 58 | async *method(x = y, y) {\n | ^\n 59 | \n 60 | callCount = callCount + 1;\n 61 | } at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/statements/class/async-gen-method/dflt-params-ref-self.js-strict:true": "[test/language/statements/class/async-gen-method/dflt-params-ref-self.js SyntaxError: test/language/statements/class/async-gen-method/dflt-params-ref-self.js: Unexpected token (58:8)\n 56 | var callCount = 0;\n 57 | class C {\n\u003e 58 | async *method(x = x) {\n | ^\n 59 | \n 60 | callCount = callCount + 1;\n 61 | } at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/language/statements/class/async-meth-escaped-async.js-strict:true": "[test/language/statements/class/async-meth-escaped-async.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", "test/language/statements/class/class-name-ident-await-escaped.js-strict:true": "[test/language/statements/class/class-name-ident-await-escaped.js SyntaxError: test/language/statements/class/class-name-ident-await-escaped.js: await is a reserved word (18:6)\n 16 | ---*/\n 17 | \n\u003e 18 | class aw\\u0061it {}\n | ^\n 19 | at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/statements/class/class-name-ident-await.js-strict:true": "[test/language/statements/class/class-name-ident-await.js SyntaxError: test/language/statements/class/class-name-ident-await.js: await is a reserved word (17:6)\n 15 | ---*/\n 16 | \n\u003e 17 | class await {}\n | ^\n 18 | at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/statements/class/classelementname-abrupt-completion.js-strict:true": "[test/language/statements/class/classelementname-abrupt-completion.js SyntaxError: test/language/statements/class/classelementname-abrupt-completion.js: Missing class properties transform.\n 39 | assert.throws(Test262Error, function() {\n 40 | class C {\n\u003e 41 | [f()]\n | ^\n 42 | }\n 43 | });\n 44 | at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", @@ -3471,22 +3454,22 @@ "test/language/statements/class/cpn-class-decl-accessors-computed-property-name-from-assignment-expression-coalesce.js-strict:true": "[test/language/statements/class/cpn-class-decl-accessors-computed-property-name-from-assignment-expression-coalesce.js SyntaxError: test/language/statements/class/cpn-class-decl-accessors-computed-property-name-from-assignment-expression-coalesce.js: Unexpected token (41:10)\n 39 | \n 40 | class C {\n\u003e 41 | get [x ??= 1]() {\n | ^\n 42 | return 2;\n 43 | }\n 44 | at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/statements/class/cpn-class-decl-accessors-computed-property-name-from-assignment-expression-logical-and.js-strict:true": "[test/language/statements/class/cpn-class-decl-accessors-computed-property-name-from-assignment-expression-logical-and.js SyntaxError: test/language/statements/class/cpn-class-decl-accessors-computed-property-name-from-assignment-expression-logical-and.js: Unexpected token (41:11)\n 39 | \n 40 | class C {\n\u003e 41 | get [x \u0026\u0026= 1]() {\n | ^\n 42 | return 2;\n 43 | }\n 44 | at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/statements/class/cpn-class-decl-accessors-computed-property-name-from-assignment-expression-logical-or.js-strict:true": "[test/language/statements/class/cpn-class-decl-accessors-computed-property-name-from-assignment-expression-logical-or.js SyntaxError: test/language/statements/class/cpn-class-decl-accessors-computed-property-name-from-assignment-expression-logical-or.js: Unexpected token (41:11)\n 39 | \n 40 | class C {\n\u003e 41 | get [x ||= 1]() {\n | ^\n 42 | return 2;\n 43 | }\n 44 | at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/language/statements/class/cpn-class-decl-accessors-computed-property-name-from-async-arrow-function-expression.js-strict:true": "[test/language/statements/class/cpn-class-decl-accessors-computed-property-name-from-async-arrow-function-expression.js ReferenceError: regeneratorRuntime is not defined at test/language/statements/class/cpn-class-decl-accessors-computed-property-name-from-async-arrow-function-expression.js:39:138(3)]: %!v(MISSING)", + "test/language/statements/class/cpn-class-decl-accessors-computed-property-name-from-async-arrow-function-expression.js-strict:true": "[test/language/statements/class/cpn-class-decl-accessors-computed-property-name-from-async-arrow-function-expression.js test/language/statements/class/cpn-class-decl-accessors-computed-property-name-from-async-arrow-function-expression.js: Line 44:11 Unexpected token function (and 27 more errors)]: %!v(MISSING)", "test/language/statements/class/cpn-class-decl-accessors-computed-property-name-from-expression-coalesce.js-strict:true": "[test/language/statements/class/cpn-class-decl-accessors-computed-property-name-from-expression-coalesce.js SyntaxError: test/language/statements/class/cpn-class-decl-accessors-computed-property-name-from-expression-coalesce.js: Unexpected token (41:10)\n 39 | \n 40 | class C {\n\u003e 41 | get [x ?? 1]() {\n | ^\n 42 | return 2;\n 43 | }\n 44 | at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/statements/class/cpn-class-decl-accessors-computed-property-name-from-function-expression.js-strict:true": "[test/language/statements/class/cpn-class-decl-accessors-computed-property-name-from-function-expression.js Test262Error: Expected SameValue(«undefined», «1») to be true at harness/sta.js:22:9(49)]: %!v(MISSING)", - "test/language/statements/class/cpn-class-decl-accessors-computed-property-name-from-generator-function-declaration.js-strict:true": "[test/language/statements/class/cpn-class-decl-accessors-computed-property-name-from-generator-function-declaration.js ReferenceError: regeneratorRuntime is not defined at test/language/statements/class/cpn-class-decl-accessors-computed-property-name-from-generator-function-declaration.js:36:731(21)]: %!v(MISSING)", + "test/language/statements/class/cpn-class-decl-accessors-computed-property-name-from-generator-function-declaration.js-strict:true": "[test/language/statements/class/cpn-class-decl-accessors-computed-property-name-from-generator-function-declaration.js test/language/statements/class/cpn-class-decl-accessors-computed-property-name-from-generator-function-declaration.js: Line 37:9 Unexpected token * (and 2 more errors)]: %!v(MISSING)", "test/language/statements/class/cpn-class-decl-accessors-computed-property-name-from-integer-separators.js-strict:true": "[test/language/statements/class/cpn-class-decl-accessors-computed-property-name-from-integer-separators.js SyntaxError: test/language/statements/class/cpn-class-decl-accessors-computed-property-name-from-integer-separators.js: Identifier directly after number (40:8)\n 38 | \n 39 | class C {\n\u003e 40 | get [1_2_3_4_5_6_7_8]() {\n | ^\n 41 | return 1_2_3_4_5_6_7_8;\n 42 | }\n 43 | at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/language/statements/class/cpn-class-decl-accessors-computed-property-name-from-yield-expression.js-strict:true": "[test/language/statements/class/cpn-class-decl-accessors-computed-property-name-from-yield-expression.js test/language/statements/class/cpn-class-decl-accessors-computed-property-name-from-yield-expression.js: Line 45:21 Unexpected number (and 55 more errors)]: %!v(MISSING)", + "test/language/statements/class/cpn-class-decl-accessors-computed-property-name-from-yield-expression.js-strict:true": "[test/language/statements/class/cpn-class-decl-accessors-computed-property-name-from-yield-expression.js test/language/statements/class/cpn-class-decl-accessors-computed-property-name-from-yield-expression.js: Line 37:9 Unexpected token * (and 37 more errors)]: %!v(MISSING)", "test/language/statements/class/cpn-class-decl-computed-property-name-from-arrow-function-expression.js-strict:true": "[test/language/statements/class/cpn-class-decl-computed-property-name-from-arrow-function-expression.js TypeError: Object has no member 'function () {}' at test/language/statements/class/cpn-class-decl-computed-property-name-from-arrow-function-expression.js:51:18(32)]: %!v(MISSING)", "test/language/statements/class/cpn-class-decl-computed-property-name-from-assignment-expression-coalesce.js-strict:true": "[test/language/statements/class/cpn-class-decl-computed-property-name-from-assignment-expression-coalesce.js SyntaxError: test/language/statements/class/cpn-class-decl-computed-property-name-from-assignment-expression-coalesce.js: Unexpected token (41:6)\n 39 | \n 40 | class C {\n\u003e 41 | [x ??= 1]() {\n | ^\n 42 | return 2;\n 43 | }\n 44 | static [x ??= 1]() { at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/statements/class/cpn-class-decl-computed-property-name-from-assignment-expression-logical-and.js-strict:true": "[test/language/statements/class/cpn-class-decl-computed-property-name-from-assignment-expression-logical-and.js SyntaxError: test/language/statements/class/cpn-class-decl-computed-property-name-from-assignment-expression-logical-and.js: Unexpected token (41:7)\n 39 | \n 40 | class C {\n\u003e 41 | [x \u0026\u0026= 1]() {\n | ^\n 42 | return 2;\n 43 | }\n 44 | static [x \u0026\u0026= 1]() { at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/statements/class/cpn-class-decl-computed-property-name-from-assignment-expression-logical-or.js-strict:true": "[test/language/statements/class/cpn-class-decl-computed-property-name-from-assignment-expression-logical-or.js SyntaxError: test/language/statements/class/cpn-class-decl-computed-property-name-from-assignment-expression-logical-or.js: Unexpected token (41:7)\n 39 | \n 40 | class C {\n\u003e 41 | [x ||= 1]() {\n | ^\n 42 | return 2;\n 43 | }\n 44 | static [x ||= 1]() { at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/language/statements/class/cpn-class-decl-computed-property-name-from-async-arrow-function-expression.js-strict:true": "[test/language/statements/class/cpn-class-decl-computed-property-name-from-async-arrow-function-expression.js ReferenceError: regeneratorRuntime is not defined at test/language/statements/class/cpn-class-decl-computed-property-name-from-async-arrow-function-expression.js:39:138(3)]: %!v(MISSING)", + "test/language/statements/class/cpn-class-decl-computed-property-name-from-async-arrow-function-expression.js-strict:true": "[test/language/statements/class/cpn-class-decl-computed-property-name-from-async-arrow-function-expression.js test/language/statements/class/cpn-class-decl-computed-property-name-from-async-arrow-function-expression.js: Line 40:11 Unexpected token function (and 22 more errors)]: %!v(MISSING)", "test/language/statements/class/cpn-class-decl-computed-property-name-from-expression-coalesce.js-strict:true": "[test/language/statements/class/cpn-class-decl-computed-property-name-from-expression-coalesce.js SyntaxError: test/language/statements/class/cpn-class-decl-computed-property-name-from-expression-coalesce.js: Unexpected token (41:6)\n 39 | \n 40 | class C {\n\u003e 41 | [x ?? 1]() {\n | ^\n 42 | return 2;\n 43 | }\n 44 | static [x ?? 1]() { at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/statements/class/cpn-class-decl-computed-property-name-from-function-expression.js-strict:true": "[test/language/statements/class/cpn-class-decl-computed-property-name-from-function-expression.js TypeError: Object has no member 'function () {}' at test/language/statements/class/cpn-class-decl-computed-property-name-from-function-expression.js:51:18(32)]: %!v(MISSING)", - "test/language/statements/class/cpn-class-decl-computed-property-name-from-generator-function-declaration.js-strict:true": "[test/language/statements/class/cpn-class-decl-computed-property-name-from-generator-function-declaration.js ReferenceError: regeneratorRuntime is not defined at test/language/statements/class/cpn-class-decl-computed-property-name-from-generator-function-declaration.js:36:731(21)]: %!v(MISSING)", + "test/language/statements/class/cpn-class-decl-computed-property-name-from-generator-function-declaration.js-strict:true": "[test/language/statements/class/cpn-class-decl-computed-property-name-from-generator-function-declaration.js test/language/statements/class/cpn-class-decl-computed-property-name-from-generator-function-declaration.js: Line 37:9 Unexpected token * (and 2 more errors)]: %!v(MISSING)", "test/language/statements/class/cpn-class-decl-computed-property-name-from-integer-separators.js-strict:true": "[test/language/statements/class/cpn-class-decl-computed-property-name-from-integer-separators.js SyntaxError: test/language/statements/class/cpn-class-decl-computed-property-name-from-integer-separators.js: Identifier directly after number (40:4)\n 38 | \n 39 | class C {\n\u003e 40 | [1_2_3_4_5_6_7_8]() {\n | ^\n 41 | return 1_2_3_4_5_6_7_8;\n 42 | }\n 43 | static [1_2_3_4_5_6_7_8]() { at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/language/statements/class/cpn-class-decl-computed-property-name-from-yield-expression.js-strict:true": "[test/language/statements/class/cpn-class-decl-computed-property-name-from-yield-expression.js test/language/statements/class/cpn-class-decl-computed-property-name-from-yield-expression.js: Line 41:21 Unexpected number (and 37 more errors)]: %!v(MISSING)", + "test/language/statements/class/cpn-class-decl-computed-property-name-from-yield-expression.js-strict:true": "[test/language/statements/class/cpn-class-decl-computed-property-name-from-yield-expression.js test/language/statements/class/cpn-class-decl-computed-property-name-from-yield-expression.js: Line 37:9 Unexpected token * (and 31 more errors)]: %!v(MISSING)", "test/language/statements/class/cpn-class-decl-fields-computed-property-name-from-additive-expression-add.js-strict:true": "[test/language/statements/class/cpn-class-decl-fields-computed-property-name-from-additive-expression-add.js SyntaxError: test/language/statements/class/cpn-class-decl-fields-computed-property-name-from-additive-expression-add.js: Unexpected token (40:10)\n 38 | \n 39 | let C = class {\n\u003e 40 | [1 + 1] = 2;\n | ^\n 41 | \n 42 | static [1 + 1] = 2;\n 43 | }; at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/statements/class/cpn-class-decl-fields-computed-property-name-from-additive-expression-subtract.js-strict:true": "[test/language/statements/class/cpn-class-decl-fields-computed-property-name-from-additive-expression-subtract.js SyntaxError: test/language/statements/class/cpn-class-decl-fields-computed-property-name-from-additive-expression-subtract.js: Unexpected token (40:10)\n 38 | \n 39 | let C = class {\n\u003e 40 | [1 - 1] = 0;\n | ^\n 41 | \n 42 | static [1 - 1] = 0;\n 43 | }; at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/statements/class/cpn-class-decl-fields-computed-property-name-from-arrow-function-expression.js-strict:true": "[test/language/statements/class/cpn-class-decl-fields-computed-property-name-from-arrow-function-expression.js SyntaxError: test/language/statements/class/cpn-class-decl-fields-computed-property-name-from-arrow-function-expression.js: Unexpected token (40:14)\n 38 | \n 39 | let C = class {\n\u003e 40 | [() =\u003e { }] = 1;\n | ^\n 41 | \n 42 | static [() =\u003e { }] = 1;\n 43 | }; at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", @@ -3549,7 +3532,7 @@ "test/language/statements/class/cpn-class-decl-fields-methods-computed-property-name-from-yield-expression.js-strict:true": "[test/language/statements/class/cpn-class-decl-fields-methods-computed-property-name-from-yield-expression.js SyntaxError: test/language/statements/class/cpn-class-decl-fields-methods-computed-property-name-from-yield-expression.js: Unexpected token (41:12)\n 39 | \n 40 | let C = class {\n\u003e 41 | [yield 9] = () =\u003e {\n | ^\n 42 | return 9;\n 43 | };\n 44 | at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/statements/class/cptn-decl.js-strict:true": "[test/language/statements/class/cptn-decl.js SyntaxError: SyntaxError: \u003ceval\u003e: Line 1:1 Unexpected reserved word at test/language/statements/class/cptn-decl.js:14:22(5)]: %!v(MISSING)", "test/language/statements/class/definition/accessors.js-strict:true": "[test/language/statements/class/definition/accessors.js Test262Error: The result of `'prototype' in desc.get` is `false` Expected SameValue(«true», «false») to be true at harness/sta.js:22:9(49)]: %!v(MISSING)", - "test/language/statements/class/definition/class-method-returns-promise.js-strict:true": "[test/language/statements/class/definition/class-method-returns-promise.js ReferenceError: regeneratorRuntime is not defined at test/language/statements/class/definition/class-method-returns-promise.js:12:163(7)]: %!v(MISSING)", + "test/language/statements/class/definition/class-method-returns-promise.js-strict:true": "[test/language/statements/class/definition/class-method-returns-promise.js test/language/statements/class/definition/class-method-returns-promise.js: Line 12:113 Unexpected token function (and 18 more errors)]: %!v(MISSING)", "test/language/statements/class/definition/fn-name-accessor-get.js-strict:true": "[test/language/statements/class/definition/fn-name-accessor-get.js Test262Error: Expected SameValue(«get», «get id») to be true at harness/sta.js:22:9(49)]: %!v(MISSING)", "test/language/statements/class/definition/fn-name-accessor-set.js-strict:true": "[test/language/statements/class/definition/fn-name-accessor-set.js Test262Error: Expected SameValue(«set», «set id») to be true at harness/sta.js:22:9(49)]: %!v(MISSING)", "test/language/statements/class/definition/fn-name-method.js-strict:true": "[test/language/statements/class/definition/fn-name-method.js Test262Error: via anonymous Symbol Expected SameValue(«value», «») to be true at harness/sta.js:22:9(49)]: %!v(MISSING)", @@ -4499,7 +4482,6 @@ "test/language/statements/class/elements/super-access-inside-a-private-method.js-strict:true": "[test/language/statements/class/elements/super-access-inside-a-private-method.js SyntaxError: test/language/statements/class/elements/super-access-inside-a-private-method.js: Unexpected character '#' (38:2)\n 36 | \n 37 | class C extends A {\n\u003e 38 | #m() {\n | ^\n 39 | return super.method();\n 40 | }\n 41 | at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/statements/class/elements/super-access-inside-a-private-setter.js-strict:true": "[test/language/statements/class/elements/super-access-inside-a-private-setter.js SyntaxError: test/language/statements/class/elements/super-access-inside-a-private-setter.js: Unexpected character '#' (40:6)\n 38 | \n 39 | class C extends A {\n\u003e 40 | set #m(v) {\n | ^\n 41 | this._v = super.method(v);\n 42 | }\n 43 | at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/statements/class/elements/super-fielddefinition-initializer-abrupt-completion.js-strict:true": "[test/language/statements/class/elements/super-fielddefinition-initializer-abrupt-completion.js SyntaxError: test/language/statements/class/elements/super-fielddefinition-initializer-abrupt-completion.js: Unexpected token (46:4)\n 44 | \n 45 | class A {\n\u003e 46 | x = f();\n | ^\n 47 | }\n 48 | \n 49 | class C extends A { at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/language/statements/class/elements/syntax/early-errors/grammar-static-async-meth-prototype.js-strict:true": "[test/language/statements/class/elements/syntax/early-errors/grammar-static-async-meth-prototype.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", "test/language/statements/class/elements/syntax/early-errors/grammar-static-get-meth-prototype.js-strict:true": "[test/language/statements/class/elements/syntax/early-errors/grammar-static-get-meth-prototype.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", "test/language/statements/class/elements/syntax/early-errors/grammar-static-set-meth-prototype.js-strict:true": "[test/language/statements/class/elements/syntax/early-errors/grammar-static-set-meth-prototype.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", "test/language/statements/class/elements/syntax/valid/grammar-field-classelementname-initializer-alt.js-strict:true": "[test/language/statements/class/elements/syntax/valid/grammar-field-classelementname-initializer-alt.js SyntaxError: test/language/statements/class/elements/syntax/valid/grammar-field-classelementname-initializer-alt.js: Unexpected token (65:4)\n 63 | \n 64 | class C {\n\u003e 65 | $ = 1;\n | ^\n 66 | _ = 2;\n 67 | \\u{6F} = 3;\n 68 | ℘ = 4; // DO NOT CHANGE THE NAME OF THIS FIELD at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", @@ -4515,9 +4497,9 @@ "test/language/statements/class/elements/syntax/valid/grammar-privatename-no-initializer-with-method.js-strict:true": "[test/language/statements/class/elements/syntax/valid/grammar-privatename-no-initializer-with-method.js SyntaxError: test/language/statements/class/elements/syntax/valid/grammar-privatename-no-initializer-with-method.js: Unexpected character '#' (31:2)\n 29 | \n 30 | class C {\n\u003e 31 | #x\n | ^\n 32 | m() {}\n 33 | }\n 34 | at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/statements/class/elements/syntax/valid/grammar-privatenames-multi-line.js-strict:true": "[test/language/statements/class/elements/syntax/valid/grammar-privatenames-multi-line.js SyntaxError: test/language/statements/class/elements/syntax/valid/grammar-privatenames-multi-line.js: Unexpected character '#' (31:2)\n 29 | \n 30 | class C {\n\u003e 31 | #x\n | ^\n 32 | #y\n 33 | }\n 34 | at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/statements/class/elements/syntax/valid/grammar-special-prototype-async-gen-meth-valid.js-strict:true": "[test/language/statements/class/elements/syntax/valid/grammar-special-prototype-async-gen-meth-valid.js SyntaxError: test/language/statements/class/elements/syntax/valid/grammar-special-prototype-async-gen-meth-valid.js: Unexpected token (40:8)\n 38 | \n 39 | class C {\n\u003e 40 | async * prototype() {}\n | ^\n 41 | }\n 42 | \n 43 | assert(C.hasOwnProperty('prototype')); at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/language/statements/class/elements/syntax/valid/grammar-special-prototype-async-meth-valid.js-strict:true": "[test/language/statements/class/elements/syntax/valid/grammar-special-prototype-async-meth-valid.js ReferenceError: regeneratorRuntime is not defined at test/language/statements/class/elements/syntax/valid/grammar-special-prototype-async-meth-valid.js:39:158(7)]: %!v(MISSING)", + "test/language/statements/class/elements/syntax/valid/grammar-special-prototype-async-meth-valid.js-strict:true": "[test/language/statements/class/elements/syntax/valid/grammar-special-prototype-async-meth-valid.js test/language/statements/class/elements/syntax/valid/grammar-special-prototype-async-meth-valid.js: Line 39:108 Unexpected token function (and 12 more errors)]: %!v(MISSING)", "test/language/statements/class/elements/syntax/valid/grammar-static-ctor-async-gen-meth-valid.js-strict:true": "[test/language/statements/class/elements/syntax/valid/grammar-static-ctor-async-gen-meth-valid.js SyntaxError: test/language/statements/class/elements/syntax/valid/grammar-static-ctor-async-gen-meth-valid.js: Unexpected token (24:15)\n 22 | \n 23 | class C {\n\u003e 24 | static async * constructor() {}\n | ^\n 25 | constructor() {} // stacks with a valid constructor\n 26 | }\n 27 | at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/language/statements/class/elements/syntax/valid/grammar-static-ctor-async-meth-valid.js-strict:true": "[test/language/statements/class/elements/syntax/valid/grammar-static-ctor-async-meth-valid.js ReferenceError: regeneratorRuntime is not defined at test/language/statements/class/elements/syntax/valid/grammar-static-ctor-async-meth-valid.js:23:126(7)]: %!v(MISSING)", + "test/language/statements/class/elements/syntax/valid/grammar-static-ctor-async-meth-valid.js-strict:true": "[test/language/statements/class/elements/syntax/valid/grammar-static-ctor-async-meth-valid.js test/language/statements/class/elements/syntax/valid/grammar-static-ctor-async-meth-valid.js: Line 23:76 Unexpected token function (and 12 more errors)]: %!v(MISSING)", "test/language/statements/class/elements/syntax/valid/grammar-static-private-async-gen-meth-prototype.js-strict:true": "[test/language/statements/class/elements/syntax/valid/grammar-static-private-async-gen-meth-prototype.js SyntaxError: test/language/statements/class/elements/syntax/valid/grammar-static-private-async-gen-meth-prototype.js: Unexpected token (20:15)\n 18 | \n 19 | class C {\n\u003e 20 | static async * #prototype() {}\n | ^\n 21 | }\n 22 | at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/statements/class/elements/syntax/valid/grammar-static-private-async-meth-prototype.js-strict:true": "[test/language/statements/class/elements/syntax/valid/grammar-static-private-async-meth-prototype.js SyntaxError: test/language/statements/class/elements/syntax/valid/grammar-static-private-async-meth-prototype.js: Unexpected character '#' (20:15)\n 18 | \n 19 | class C {\n\u003e 20 | static async #prototype() {}\n | ^\n 21 | }\n 22 | at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/statements/class/elements/syntax/valid/grammar-static-private-meth-prototype.js-strict:true": "[test/language/statements/class/elements/syntax/valid/grammar-static-private-meth-prototype.js SyntaxError: test/language/statements/class/elements/syntax/valid/grammar-static-private-meth-prototype.js: Unexpected character '#' (20:9)\n 18 | \n 19 | class C {\n\u003e 20 | static #prototype() {}\n | ^\n 21 | }\n 22 | at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", @@ -4613,10 +4595,10 @@ "test/language/statements/class/subclass/builtin-objects/Error/message-property-assignment.js-strict:true": "[test/language/statements/class/subclass/builtin-objects/Error/message-property-assignment.js Test262Error: Expected SameValue(«», «custom-error») to be true at harness/sta.js:22:9(49)]: %!v(MISSING)", "test/language/statements/class/subclass/builtin-objects/Error/super-must-be-called.js-strict:true": "[test/language/statements/class/subclass/builtin-objects/Error/super-must-be-called.js SyntaxError: test/language/statements/class/subclass/builtin-objects/Error/super-must-be-called.js: missing super() call in constructor\n 17 | \n 18 | class CustomError extends Error {\n\u003e 19 | constructor() {}\n | ^\n 20 | }\n 21 | \n 22 | assert.throws(ReferenceError, function() { at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/statements/class/subclass/builtin-objects/Function/super-must-be-called.js-strict:true": "[test/language/statements/class/subclass/builtin-objects/Function/super-must-be-called.js SyntaxError: test/language/statements/class/subclass/builtin-objects/Function/super-must-be-called.js: missing super() call in constructor\n 20 | \n 21 | class Fn extends Function {\n\u003e 22 | constructor() {}\n | ^\n 23 | }\n 24 | \n 25 | assert.throws(ReferenceError, function() { at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/language/statements/class/subclass/builtin-objects/GeneratorFunction/instance-length.js-strict:true": "[test/language/statements/class/subclass/builtin-objects/GeneratorFunction/instance-length.js ReferenceError: regeneratorRuntime is not defined at test/language/statements/class/subclass/builtin-objects/GeneratorFunction/instance-length.js:22:61(22)]: %!v(MISSING)", - "test/language/statements/class/subclass/builtin-objects/GeneratorFunction/instance-name.js-strict:true": "[test/language/statements/class/subclass/builtin-objects/GeneratorFunction/instance-name.js ReferenceError: regeneratorRuntime is not defined at test/language/statements/class/subclass/builtin-objects/GeneratorFunction/instance-name.js:34:61(22)]: %!v(MISSING)", - "test/language/statements/class/subclass/builtin-objects/GeneratorFunction/instance-prototype.js-strict:true": "[test/language/statements/class/subclass/builtin-objects/GeneratorFunction/instance-prototype.js ReferenceError: regeneratorRuntime is not defined at test/language/statements/class/subclass/builtin-objects/GeneratorFunction/instance-prototype.js:22:61(22)]: %!v(MISSING)", - "test/language/statements/class/subclass/builtin-objects/GeneratorFunction/regular-subclassing.js-strict:true": "[test/language/statements/class/subclass/builtin-objects/GeneratorFunction/regular-subclassing.js ReferenceError: regeneratorRuntime is not defined at test/language/statements/class/subclass/builtin-objects/GeneratorFunction/regular-subclassing.js:21:61(23)]: %!v(MISSING)", + "test/language/statements/class/subclass/builtin-objects/GeneratorFunction/instance-length.js-strict:true": "[test/language/statements/class/subclass/builtin-objects/GeneratorFunction/instance-length.js test/language/statements/class/subclass/builtin-objects/GeneratorFunction/instance-length.js: Line 22:55 Unexpected token * (and 1 more errors)]: %!v(MISSING)", + "test/language/statements/class/subclass/builtin-objects/GeneratorFunction/instance-name.js-strict:true": "[test/language/statements/class/subclass/builtin-objects/GeneratorFunction/instance-name.js test/language/statements/class/subclass/builtin-objects/GeneratorFunction/instance-name.js: Line 34:55 Unexpected token * (and 1 more errors)]: %!v(MISSING)", + "test/language/statements/class/subclass/builtin-objects/GeneratorFunction/instance-prototype.js-strict:true": "[test/language/statements/class/subclass/builtin-objects/GeneratorFunction/instance-prototype.js test/language/statements/class/subclass/builtin-objects/GeneratorFunction/instance-prototype.js: Line 22:55 Unexpected token * (and 1 more errors)]: %!v(MISSING)", + "test/language/statements/class/subclass/builtin-objects/GeneratorFunction/regular-subclassing.js-strict:true": "[test/language/statements/class/subclass/builtin-objects/GeneratorFunction/regular-subclassing.js test/language/statements/class/subclass/builtin-objects/GeneratorFunction/regular-subclassing.js: Line 21:55 Unexpected token * (and 1 more errors)]: %!v(MISSING)", "test/language/statements/class/subclass/builtin-objects/GeneratorFunction/super-must-be-called.js-strict:true": "[test/language/statements/class/subclass/builtin-objects/GeneratorFunction/super-must-be-called.js SyntaxError: test/language/statements/class/subclass/builtin-objects/GeneratorFunction/super-must-be-called.js: missing super() call in constructor\n 23 | \n 24 | class GFn1 extends GeneratorFunction {\n\u003e 25 | constructor() {}\n | ^\n 26 | }\n 27 | \n 28 | assert.throws(ReferenceError, function() { at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/statements/class/subclass/builtin-objects/Map/regular-subclassing.js-strict:true": "[test/language/statements/class/subclass/builtin-objects/Map/regular-subclassing.js TypeError: Constructor Map requires 'new' at apply (native)]: %!v(MISSING)", "test/language/statements/class/subclass/builtin-objects/Map/super-must-be-called.js-strict:true": "[test/language/statements/class/subclass/builtin-objects/Map/super-must-be-called.js SyntaxError: test/language/statements/class/subclass/builtin-objects/Map/super-must-be-called.js: missing super() call in constructor\n 18 | \n 19 | class M1 extends Map {\n\u003e 20 | constructor() {}\n | ^\n 21 | }\n 22 | \n 23 | assert.throws(ReferenceError, function() { at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", @@ -4664,11 +4646,11 @@ "test/language/statements/class/subclass/derived-class-return-override-with-string.js-strict:true": "[test/language/statements/class/subclass/derived-class-return-override-with-string.js Test262Error: Expected a TypeError to be thrown but no exception was thrown at all at harness/sta.js:22:9(49)]: %!v(MISSING)", "test/language/statements/class/subclass/derived-class-return-override-with-symbol.js-strict:true": "[test/language/statements/class/subclass/derived-class-return-override-with-symbol.js Test262Error: Expected a TypeError to be thrown but no exception was thrown at all at harness/sta.js:22:9(49)]: %!v(MISSING)", "test/language/statements/class/subclass/superclass-arrow-function.js-strict:true": "[test/language/statements/class/subclass/superclass-arrow-function.js Test262Error: Expected a TypeError but got a Test262Error at harness/sta.js:22:9(49)]: %!v(MISSING)", - "test/language/statements/class/subclass/superclass-async-function.js-strict:true": "[test/language/statements/class/subclass/superclass-async-function.js ReferenceError: regeneratorRuntime is not defined at test/language/statements/class/subclass/superclass-async-function.js:20:71(3)]: %!v(MISSING)", + "test/language/statements/class/subclass/superclass-async-function.js-strict:true": "[test/language/statements/class/subclass/superclass-async-function.js test/language/statements/class/subclass/superclass-async-function.js: Line 22:7 Unexpected token function (and 22 more errors)]: %!v(MISSING)", "test/language/statements/class/subclass/superclass-async-generator-function.js-strict:true": "[test/language/statements/class/subclass/superclass-async-generator-function.js SyntaxError: test/language/statements/class/subclass/superclass-async-generator-function.js: Unexpected token (22:14)\n 20 | ---*/\n 21 | \n\u003e 22 | async function* fn() {}\n | ^\n 23 | \n 24 | assert.throws(TypeError, function() {\n 25 | class A extends fn {} at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/statements/class/super/in-constructor-superproperty-evaluation.js-strict:true": "[test/language/statements/class/super/in-constructor-superproperty-evaluation.js SyntaxError: test/language/statements/class/super/in-constructor-superproperty-evaluation.js: 'super.*' is not allowed before super()\n 9 | class Derived extends Object {\n 10 | constructor() {\n\u003e 11 | super[super()];\n | ^\n 12 | throw new Test262Error();\n 13 | }\n 14 | } at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/statements/class/syntax/class-body-method-definition-super-property.js-strict:true": "[test/language/statements/class/syntax/class-body-method-definition-super-property.js Test262Error: Expected SameValue(«undefined», «1») to be true at harness/sta.js:22:9(49)]: %!v(MISSING)", - "test/language/statements/class/syntax/class-declaration-computed-method-generator-definition.js-strict:true": "[test/language/statements/class/syntax/class-declaration-computed-method-generator-definition.js ReferenceError: regeneratorRuntime is not defined at test/language/statements/class/syntax/class-declaration-computed-method-generator-definition.js:27:28(10)]: %!v(MISSING)", + "test/language/statements/class/syntax/class-declaration-computed-method-generator-definition.js-strict:true": "[test/language/statements/class/syntax/class-declaration-computed-method-generator-definition.js test/language/statements/class/syntax/class-declaration-computed-method-generator-definition.js: Line 27:23 Unexpected token * (and 1 more errors)]: %!v(MISSING)", "test/language/statements/class/syntax/early-errors/class-definition-evaluation-block-duplicate-binding.js-strict:true": "[test/language/statements/class/syntax/early-errors/class-definition-evaluation-block-duplicate-binding.js TypeError SyntaxError]: unexpected error type (%!s(MISSING)), expected (%!s(MISSING))", "test/language/statements/class/syntax/early-errors/class-definition-evaluation-scriptbody-duplicate-binding.js-strict:true": "[test/language/statements/class/syntax/early-errors/class-definition-evaluation-scriptbody-duplicate-binding.js TypeError SyntaxError]: unexpected error type (%!s(MISSING)), expected (%!s(MISSING))", "test/language/statements/class/syntax/escaped-static.js-strict:true": "[test/language/statements/class/syntax/escaped-static.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", @@ -4703,13 +4685,11 @@ "test/language/statements/const/syntax/const-invalid-assignment-statement-body-for-in.js-strict:true": "[test/language/statements/const/syntax/const-invalid-assignment-statement-body-for-in.js SyntaxError: test/language/statements/const/syntax/const-invalid-assignment-statement-body-for-in.js: \"x\" is read-only\n 9 | \n 10 | assert.throws(TypeError, function() {\n\u003e 11 | for (const x in [1, 2, 3]) { x++ }\n | ^\n 12 | });\n 13 | at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/statements/const/syntax/const-invalid-assignment-statement-body-for-of.js-strict:true": "[test/language/statements/const/syntax/const-invalid-assignment-statement-body-for-of.js SyntaxError: test/language/statements/const/syntax/const-invalid-assignment-statement-body-for-of.js: \"x\" is read-only\n 9 | \n 10 | assert.throws(TypeError, function() {\n\u003e 11 | for (const x of [1, 2, 3]) { x++ }\n | ^\n 12 | });\n 13 | at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/statements/const/syntax/with-initializer-label-statement.js-strict:true": "[test/language/statements/const/syntax/with-initializer-label-statement.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", - "test/language/statements/do-while/decl-async-fun.js-strict:true": "[test/language/statements/do-while/decl-async-fun.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", "test/language/statements/do-while/decl-fun.js-strict:true": "[test/language/statements/do-while/decl-fun.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", "test/language/statements/do-while/labelled-fn-stmt.js-strict:true": "[test/language/statements/do-while/labelled-fn-stmt.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", "test/language/statements/do-while/let-array-with-newline.js-strict:false": "[test/language/statements/do-while/let-array-with-newline.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", "test/language/statements/for-await-of/let-block-with-newline.js-strict:false": "[test/language/statements/for-await-of/let-block-with-newline.js SyntaxError: test/language/statements/for-await-of/let-block-with-newline.js: Unexpected token (16:14)\n 14 | ---*/\n 15 | \n\u003e 16 | async function* f() {\n | ^\n 17 | for await (var x of []) let // ASI\n 18 | {}\n 19 | } at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/statements/for-await-of/let-identifier-with-newline.js-strict:false": "[test/language/statements/for-await-of/let-identifier-with-newline.js SyntaxError: test/language/statements/for-await-of/let-identifier-with-newline.js: Unexpected token (16:14)\n 14 | ---*/\n 15 | \n\u003e 16 | async function* f() {\n | ^\n 17 | for await (var x of []) let // ASI\n 18 | x = 1;\n 19 | } at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/language/statements/for-in/decl-async-fun.js-strict:true": "[test/language/statements/for-in/decl-async-fun.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", "test/language/statements/for-in/decl-fun.js-strict:true": "[test/language/statements/for-in/decl-fun.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", "test/language/statements/for-in/dstr/array-rest-before-elision.js-strict:true": "[test/language/statements/for-in/dstr/array-rest-before-elision.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", "test/language/statements/for-in/dstr/array-rest-elision-invalid.js-strict:true": "[test/language/statements/for-in/dstr/array-rest-elision-invalid.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", @@ -4735,7 +4715,6 @@ "test/language/statements/for-of/arguments-unmapped-aliasing.js-strict:false": "[test/language/statements/for-of/arguments-unmapped-aliasing.js TypeError: object is not iterable at test/language/statements/for-of/arguments-unmapped-aliasing.js:19:21(9)]: %!v(MISSING)", "test/language/statements/for-of/arguments-unmapped-mutation.js-strict:false": "[test/language/statements/for-of/arguments-unmapped-mutation.js TypeError: object is not iterable at test/language/statements/for-of/arguments-unmapped-mutation.js:18:21(6)]: %!v(MISSING)", "test/language/statements/for-of/arguments-unmapped.js-strict:false": "[test/language/statements/for-of/arguments-unmapped.js TypeError: object is not iterable at test/language/statements/for-of/arguments-unmapped.js:16:21(6)]: %!v(MISSING)", - "test/language/statements/for-of/decl-async-fun.js-strict:true": "[test/language/statements/for-of/decl-async-fun.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", "test/language/statements/for-of/decl-fun.js-strict:true": "[test/language/statements/for-of/decl-fun.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", "test/language/statements/for-of/dstr/array-elem-init-fn-name-arrow.js-strict:true": "[test/language/statements/for-of/dstr/array-elem-init-fn-name-arrow.js Test262Error: obj should have an own property name at harness/sta.js:22:9(49)]: %!v(MISSING)", "test/language/statements/for-of/dstr/array-elem-init-fn-name-class.js-strict:true": "[test/language/statements/for-of/dstr/array-elem-init-fn-name-class.js Test262Error: descriptor value should be cls at harness/sta.js:22:9(49)]: %!v(MISSING)", @@ -4751,7 +4730,7 @@ "test/language/statements/for-of/dstr/array-elem-nested-obj-yield-ident-valid.js-strict:false": "[test/language/statements/for-of/dstr/array-elem-nested-obj-yield-ident-valid.js SyntaxError: test/language/statements/for-of/dstr/array-elem-nested-obj-yield-ident-valid.js: Unexpected token (27:4)\n 25 | [...]\n 26 | ---*/\n\u003e 27 | var yield = 2;\n | ^\n 28 | var x;\n 29 | \n 30 | var counter = 0; at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/statements/for-of/dstr/array-elem-put-const.js-strict:true": "[test/language/statements/for-of/dstr/array-elem-put-const.js SyntaxError: test/language/statements/for-of/dstr/array-elem-put-const.js: \"c\" is read-only\n 31 | \n 32 | assert.throws(TypeError, function() {\n\u003e 33 | for ([ c ] of [[1]]) {\n | ^\n 34 | counter += 1;\n 35 | }\n 36 | counter += 1; at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/statements/for-of/dstr/array-elem-put-let.js-strict:true": "[test/language/statements/for-of/dstr/array-elem-put-let.js Test262Error: Expected a ReferenceError to be thrown but no exception was thrown at all at harness/sta.js:22:9(49)]: %!v(MISSING)", - "test/language/statements/for-of/dstr/array-elem-put-unresolvable-no-strict.js-strict:false": "[test/language/statements/for-of/dstr/array-elem-put-unresolvable-no-strict.js ReferenceError: unresolvable is not defined at test/language/statements/for-of/dstr/array-elem-put-unresolvable-no-strict.js:31:108(42)]: %!v(MISSING)", + "test/language/statements/for-of/dstr/array-elem-put-unresolvable-strict.js-strict:true": "[test/language/statements/for-of/dstr/array-elem-put-unresolvable-strict.js Test262Error: Expected a ReferenceError to be thrown but no exception was thrown at all at harness/sta.js:22:9(49)]: %!v(MISSING)", "test/language/statements/for-of/dstr/array-elem-target-simple-no-strict.js-strict:false": "[test/language/statements/for-of/dstr/array-elem-target-simple-no-strict.js SyntaxError: test/language/statements/for-of/dstr/array-elem-target-simple-no-strict.js: eval is a reserved word in strict mode (27:14)\n 25 | [...]\n 26 | ---*/\n\u003e 27 | var argument, eval;\n | ^\n 28 | \n 29 | var counter = 0;\n 30 | at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/statements/for-of/dstr/array-elem-target-yield-valid.js-strict:false": "[test/language/statements/for-of/dstr/array-elem-target-yield-valid.js SyntaxError: test/language/statements/for-of/dstr/array-elem-target-yield-valid.js: Unexpected token (27:4)\n 25 | [...]\n 26 | ---*/\n\u003e 27 | var yield = 'prop';\n | ^\n 28 | var x = {};\n 29 | \n 30 | var counter = 0; at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/statements/for-of/dstr/array-elem-trlg-iter-elision-iter-nrml-close-null.js-strict:true": "[test/language/statements/for-of/dstr/array-elem-trlg-iter-elision-iter-nrml-close-null.js Test262Error: Expected a TypeError to be thrown but no exception was thrown at all at harness/sta.js:22:9(49)]: %!v(MISSING)", @@ -4781,9 +4760,8 @@ "test/language/statements/for-of/dstr/array-rest-nested-obj.js-strict:true": "[test/language/statements/for-of/dstr/array-rest-nested-obj.js SyntaxError: test/language/statements/for-of/dstr/array-rest-nested-obj.js: Unexpected token (32:9)\n 30 | var counter = 0;\n 31 | \n\u003e 32 | for ([...{ 1: x }] of [[1, 2, 3]]) {\n | ^\n 33 | assert.sameValue(x, 2);\n 34 | counter += 1;\n 35 | } at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/statements/for-of/dstr/array-rest-put-const.js-strict:true": "[test/language/statements/for-of/dstr/array-rest-put-const.js SyntaxError: test/language/statements/for-of/dstr/array-rest-put-const.js: \"c\" is read-only\n 31 | \n 32 | assert.throws(TypeError, function() {\n\u003e 33 | for ([ ...c ] of [[1]]) {\n | ^\n 34 | counter += 1;\n 35 | }\n 36 | counter += 1; at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/statements/for-of/dstr/array-rest-put-let.js-strict:true": "[test/language/statements/for-of/dstr/array-rest-put-let.js Test262Error: Expected a ReferenceError to be thrown but no exception was thrown at all at harness/sta.js:22:9(49)]: %!v(MISSING)", - "test/language/statements/for-of/dstr/array-rest-put-unresolvable-no-strict.js-strict:false": "[test/language/statements/for-of/dstr/array-rest-put-unresolvable-no-strict.js ReferenceError: unresolvable is not defined at test/language/statements/for-of/dstr/array-rest-put-unresolvable-no-strict.js:31:112(41)]: %!v(MISSING)", + "test/language/statements/for-of/dstr/array-rest-put-unresolvable-strict.js-strict:true": "[test/language/statements/for-of/dstr/array-rest-put-unresolvable-strict.js Test262Error: Expected a ReferenceError to be thrown but no exception was thrown at all at harness/sta.js:22:9(49)]: %!v(MISSING)", "test/language/statements/for-of/dstr/array-rest-yield-ident-valid.js-strict:false": "[test/language/statements/for-of/dstr/array-rest-yield-ident-valid.js SyntaxError: test/language/statements/for-of/dstr/array-rest-yield-ident-valid.js: Unexpected token (27:4)\n 25 | [...]\n 26 | ---*/\n\u003e 27 | var yield = 'prop';\n | ^\n 28 | var x = {};\n 29 | \n 30 | var counter = 0; at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/language/statements/for-of/dstr/const-ary-init-iter-get-err-array-prototype.js-strict:true": "[test/language/statements/for-of/dstr/const-ary-init-iter-get-err-array-prototype.js Test262Error: Expected a TypeError to be thrown but no exception was thrown at all at harness/sta.js:22:9(49)]: %!v(MISSING)", "test/language/statements/for-of/dstr/const-ary-ptrn-elem-id-init-fn-name-arrow.js-strict:true": "[test/language/statements/for-of/dstr/const-ary-ptrn-elem-id-init-fn-name-arrow.js Test262Error: Expected SameValue(«», «arrow») to be true at harness/sta.js:22:9(49)]: %!v(MISSING)", "test/language/statements/for-of/dstr/const-ary-ptrn-elem-id-init-fn-name-class.js-strict:true": "[test/language/statements/for-of/dstr/const-ary-ptrn-elem-id-init-fn-name-class.js Test262Error: Expected SameValue(«_class», «cls») to be true at harness/sta.js:22:9(49)]: %!v(MISSING)", "test/language/statements/for-of/dstr/const-ary-ptrn-elem-id-init-fn-name-cover.js-strict:true": "[test/language/statements/for-of/dstr/const-ary-ptrn-elem-id-init-fn-name-cover.js Test262Error: Expected SameValue(«», «cover») to be true at harness/sta.js:22:9(49)]: %!v(MISSING)", @@ -4841,7 +4819,7 @@ "test/language/statements/for-of/dstr/obj-id-init-yield-ident-valid.js-strict:false": "[test/language/statements/for-of/dstr/obj-id-init-yield-ident-valid.js SyntaxError: test/language/statements/for-of/dstr/obj-id-init-yield-ident-valid.js: Unexpected token (27:4)\n 25 | [...]\n 26 | ---*/\n\u003e 27 | var yield = 3;\n | ^\n 28 | var x;\n 29 | \n 30 | var counter = 0; at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/statements/for-of/dstr/obj-id-put-const.js-strict:true": "[test/language/statements/for-of/dstr/obj-id-put-const.js SyntaxError: test/language/statements/for-of/dstr/obj-id-put-const.js: \"c\" is read-only\n 31 | \n 32 | assert.throws(TypeError, function() {\n\u003e 33 | for ({ c } of [{ c: 1 }]) {\n | ^\n 34 | counter += 1;\n 35 | }\n 36 | counter += 1; at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/statements/for-of/dstr/obj-id-put-let.js-strict:true": "[test/language/statements/for-of/dstr/obj-id-put-let.js Test262Error: Expected a ReferenceError to be thrown but no exception was thrown at all at harness/sta.js:22:9(49)]: %!v(MISSING)", - "test/language/statements/for-of/dstr/obj-id-put-unresolvable-no-strict.js-strict:false": "[test/language/statements/for-of/dstr/obj-id-put-unresolvable-no-strict.js ReferenceError: unresolvable is not defined at test/language/statements/for-of/dstr/obj-id-put-unresolvable-no-strict.js:31:66(26)]: %!v(MISSING)", + "test/language/statements/for-of/dstr/obj-id-put-unresolvable-strict.js-strict:true": "[test/language/statements/for-of/dstr/obj-id-put-unresolvable-strict.js Test262Error: Expected a ReferenceError to be thrown but no exception was thrown at all at harness/sta.js:22:9(49)]: %!v(MISSING)", "test/language/statements/for-of/dstr/obj-id-simple-no-strict.js-strict:false": "[test/language/statements/for-of/dstr/obj-id-simple-no-strict.js SyntaxError: test/language/statements/for-of/dstr/obj-id-simple-no-strict.js: eval is a reserved word in strict mode (27:4)\n 25 | [...]\n 26 | ---*/\n\u003e 27 | var eval, arguments;\n | ^\n 28 | \n 29 | var counter = 0;\n 30 | at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/statements/for-of/dstr/obj-prop-elem-init-fn-name-arrow.js-strict:true": "[test/language/statements/for-of/dstr/obj-prop-elem-init-fn-name-arrow.js Test262Error: obj should have an own property name at harness/sta.js:22:9(49)]: %!v(MISSING)", "test/language/statements/for-of/dstr/obj-prop-elem-init-fn-name-class.js-strict:true": "[test/language/statements/for-of/dstr/obj-prop-elem-init-fn-name-class.js Test262Error: descriptor value should be cls at harness/sta.js:22:9(49)]: %!v(MISSING)", @@ -4854,7 +4832,7 @@ "test/language/statements/for-of/dstr/obj-prop-nested-obj-yield-ident-valid.js-strict:false": "[test/language/statements/for-of/dstr/obj-prop-nested-obj-yield-ident-valid.js SyntaxError: test/language/statements/for-of/dstr/obj-prop-nested-obj-yield-ident-valid.js: Unexpected token (27:4)\n 25 | [...]\n 26 | ---*/\n\u003e 27 | var yield = 2;\n | ^\n 28 | var result, x;\n 29 | \n 30 | var counter = 0; at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/statements/for-of/dstr/obj-prop-put-const.js-strict:true": "[test/language/statements/for-of/dstr/obj-prop-put-const.js SyntaxError: test/language/statements/for-of/dstr/obj-prop-put-const.js: \"c\" is read-only\n 31 | \n 32 | assert.throws(TypeError, function() {\n\u003e 33 | for ({ a: c } of [{ a: 2 }]) {\n | ^\n 34 | counter += 1;\n 35 | }\n 36 | counter += 1; at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/statements/for-of/dstr/obj-prop-put-let.js-strict:true": "[test/language/statements/for-of/dstr/obj-prop-put-let.js Test262Error: Expected a ReferenceError to be thrown but no exception was thrown at all at harness/sta.js:22:9(49)]: %!v(MISSING)", - "test/language/statements/for-of/dstr/obj-prop-put-unresolvable-no-strict.js-strict:false": "[test/language/statements/for-of/dstr/obj-prop-put-unresolvable-no-strict.js ReferenceError: unresolvable is not defined at test/language/statements/for-of/dstr/obj-prop-put-unresolvable-no-strict.js:31:66(26)]: %!v(MISSING)", + "test/language/statements/for-of/dstr/obj-prop-put-unresolvable-strict.js-strict:true": "[test/language/statements/for-of/dstr/obj-prop-put-unresolvable-strict.js Test262Error: Expected a ReferenceError to be thrown but no exception was thrown at all at harness/sta.js:22:9(49)]: %!v(MISSING)", "test/language/statements/for-of/dstr/obj-rest-computed-property-no-strict.js-strict:false": "[test/language/statements/for-of/dstr/obj-rest-computed-property-no-strict.js SyntaxError: test/language/statements/for-of/dstr/obj-rest-computed-property-no-strict.js: Unexpected token (32:13)\n 30 | var counter = 0;\n 31 | \n\u003e 32 | for ({[a]:b, ...rest} of [{ foo: 1, bar: 2, baz: 3 }]) {\n | ^\n 33 | assert.sameValue(b, 1);\n 34 | assert.sameValue(rest.bar, 2);\n 35 | assert.sameValue(rest.baz, 3); at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/statements/for-of/dstr/obj-rest-computed-property.js-strict:true": "[test/language/statements/for-of/dstr/obj-rest-computed-property.js SyntaxError: test/language/statements/for-of/dstr/obj-rest-computed-property.js: Unexpected token (34:13)\n 32 | var counter = 0;\n 33 | \n\u003e 34 | for ({[a]:b, ...rest} of [{ foo: 1, bar: 2, baz: 3 }]) {\n | ^\n 35 | assert.sameValue(b, 1);\n 36 | assert.sameValue(rest.bar, 2);\n 37 | assert.sameValue(rest.baz, 3); at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/statements/for-of/dstr/obj-rest-descriptors.js-strict:true": "[test/language/statements/for-of/dstr/obj-rest-descriptors.js SyntaxError: test/language/statements/for-of/dstr/obj-rest-descriptors.js: Unexpected token (36:6)\n 34 | var counter = 0;\n 35 | \n\u003e 36 | for ({...rest} of [obj]) {\n | ^\n 37 | verifyProperty(rest, \"a\", {\n 38 | enumerable: true,\n 39 | writable: true, at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", @@ -4880,7 +4858,6 @@ "test/language/statements/for-of/dstr/obj-rest-val-null.js-strict:true": "[test/language/statements/for-of/dstr/obj-rest-val-null.js SyntaxError: test/language/statements/for-of/dstr/obj-rest-val-null.js: Unexpected token (33:8)\n 31 | \n 32 | assert.throws(TypeError, function() {\n\u003e 33 | for ({...rest} of [null\n | ^\n 34 | ]) {\n 35 | counter += 1;\n 36 | } at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/statements/for-of/dstr/obj-rest-val-undefined.js-strict:true": "[test/language/statements/for-of/dstr/obj-rest-val-undefined.js SyntaxError: test/language/statements/for-of/dstr/obj-rest-val-undefined.js: Unexpected token (33:8)\n 31 | \n 32 | assert.throws(TypeError, function() {\n\u003e 33 | for ({...rest} of [undefined\n | ^\n 34 | ]) {\n 35 | counter += 1;\n 36 | } at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/statements/for-of/dstr/obj-rest-valid-object.js-strict:true": "[test/language/statements/for-of/dstr/obj-rest-valid-object.js SyntaxError: test/language/statements/for-of/dstr/obj-rest-valid-object.js: Unexpected token (34:12)\n 32 | var counter = 0;\n 33 | \n\u003e 34 | for ({a, b, ...rest} of [{x: 1, y: 2, a: 5, b: 3}]) {\n | ^\n 35 | assert.sameValue(rest.a, undefined);\n 36 | assert.sameValue(rest.b, undefined);\n 37 | at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/language/statements/for-of/dstr/var-ary-init-iter-get-err-array-prototype.js-strict:true": "[test/language/statements/for-of/dstr/var-ary-init-iter-get-err-array-prototype.js Test262Error: Expected a TypeError to be thrown but no exception was thrown at all at harness/sta.js:22:9(49)]: %!v(MISSING)", "test/language/statements/for-of/dstr/var-ary-ptrn-elem-id-init-fn-name-arrow.js-strict:true": "[test/language/statements/for-of/dstr/var-ary-ptrn-elem-id-init-fn-name-arrow.js Test262Error: Expected SameValue(«», «arrow») to be true at harness/sta.js:22:9(49)]: %!v(MISSING)", "test/language/statements/for-of/dstr/var-ary-ptrn-elem-id-init-fn-name-class.js-strict:true": "[test/language/statements/for-of/dstr/var-ary-ptrn-elem-id-init-fn-name-class.js Test262Error: Expected SameValue(«_class», «cls») to be true at harness/sta.js:22:9(49)]: %!v(MISSING)", "test/language/statements/for-of/dstr/var-ary-ptrn-elem-id-init-fn-name-cover.js-strict:true": "[test/language/statements/for-of/dstr/var-ary-ptrn-elem-id-init-fn-name-cover.js Test262Error: Expected SameValue(«», «cover») to be true at harness/sta.js:22:9(49)]: %!v(MISSING)", @@ -4917,7 +4894,7 @@ "test/language/statements/for-of/iterator-close-via-continue.js-strict:true": "[test/language/statements/for-of/iterator-close-via-continue.js Test262Error: Iterator is closed after `continue` statement Expected SameValue(«0», «1») to be true at harness/sta.js:22:9(49)]: %!v(MISSING)", "test/language/statements/for-of/iterator-close-via-return.js-strict:true": "[test/language/statements/for-of/iterator-close-via-return.js Test262Error: Iterator is closed after `return` statement Expected SameValue(«0», «1») to be true at harness/sta.js:22:9(49)]: %!v(MISSING)", "test/language/statements/for-of/iterator-next-error.js-strict:true": "[test/language/statements/for-of/iterator-next-error.js Test262Error: Iterator is not closed. Expected SameValue(«1», «0») to be true at harness/sta.js:22:9(49)]: %!v(MISSING)", - "test/language/statements/for-of/iterator-next-reference.js-strict:true": "[test/language/statements/for-of/iterator-next-reference.js Test262Error: Should not access the `next` method after the iteration prologue. at test/language/statements/for-of/iterator-next-reference.js:40:195(147)]: %!v(MISSING)", + "test/language/statements/for-of/iterator-next-reference.js-strict:true": "[test/language/statements/for-of/iterator-next-reference.js Test262Error: Should not access the `next` method after the iteration prologue. at get (test/language/statements/for-of/iterator-next-reference.js:35:13(6))]: %!v(MISSING)", "test/language/statements/for-of/iterator-next-result-value-attr-error.js-strict:true": "[test/language/statements/for-of/iterator-next-result-value-attr-error.js Test262Error: Iterator is not closed. Expected SameValue(«1», «0») to be true at harness/sta.js:22:9(49)]: %!v(MISSING)", "test/language/statements/for-of/labelled-fn-stmt-const.js-strict:true": "[test/language/statements/for-of/labelled-fn-stmt-const.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", "test/language/statements/for-of/labelled-fn-stmt-let.js-strict:true": "[test/language/statements/for-of/labelled-fn-stmt-let.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", @@ -4929,7 +4906,6 @@ "test/language/statements/for-of/scope-head-lex-close.js-strict:true": "[test/language/statements/for-of/scope-head-lex-close.js Test262Error: Expected a ReferenceError to be thrown but no exception was thrown at all at harness/sta.js:22:9(49)]: %!v(MISSING)", "test/language/statements/for-of/scope-head-lex-open.js-strict:true": "[test/language/statements/for-of/scope-head-lex-open.js Test262Error: Expected a ReferenceError to be thrown but no exception was thrown at all at harness/sta.js:22:9(49)]: %!v(MISSING)", "test/language/statements/for-of/scope-head-var-none.js-strict:false": "[test/language/statements/for-of/scope-head-var-none.js ReferenceError: let is not defined at test/language/statements/for-of/scope-head-var-none.js:35:5(23)]: %!v(MISSING)", - "test/language/statements/for/decl-async-fun.js-strict:true": "[test/language/statements/for/decl-async-fun.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", "test/language/statements/for/decl-fun.js-strict:true": "[test/language/statements/for/decl-fun.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", "test/language/statements/for/dstr/const-ary-init-iter-get-err-array-prototype.js-strict:true": "[test/language/statements/for/dstr/const-ary-init-iter-get-err-array-prototype.js Test262Error: Expected a TypeError to be thrown but no exception was thrown at all at harness/sta.js:22:9(49)]: %!v(MISSING)", "test/language/statements/for/dstr/const-ary-ptrn-elem-ary-elem-init.js-strict:true": "[test/language/statements/for/dstr/const-ary-ptrn-elem-ary-elem-init.js ReferenceError: x is not defined at test/language/statements/for/dstr/const-ary-ptrn-elem-ary-elem-init.js:55:21(23)]: %!v(MISSING)", @@ -5100,23 +5076,18 @@ "test/language/statements/function/scope-paramsbody-var-open.js-strict:true": "[test/language/statements/function/scope-paramsbody-var-open.js Test262Error: Expected SameValue(«inside», «outside») to be true at harness/sta.js:22:9(49)]: %!v(MISSING)", "test/language/statements/function/unscopables-with-in-nested-fn.js-strict:false": "[test/language/statements/function/unscopables-with-in-nested-fn.js SyntaxError: test/language/statements/function/unscopables-with-in-nested-fn.js: 'with' in strict mode (75:4)\n 73 | (function() {\n 74 | count++;\n\u003e 75 | with (globalThis) {\n | ^\n 76 | count++;\n 77 | assert.sameValue(v, 1, 'The value of `v` is 1');\n 78 | } at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/statements/function/unscopables-with.js-strict:false": "[test/language/statements/function/unscopables-with.js SyntaxError: test/language/statements/function/unscopables-with.js: 'with' in strict mode (74:2)\n 72 | function ref(x) {\n 73 | count++;\n\u003e 74 | with (globalThis) {\n | ^\n 75 | count++;\n 76 | assert.sameValue(v, undefined, 'The value of `v` is expected to equal `undefined`');\n 77 | } at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", - "test/language/statements/if/if-async-fun-else-async-fun.js-strict:true": "[test/language/statements/if/if-async-fun-else-async-fun.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", - "test/language/statements/if/if-async-fun-else-stmt.js-strict:true": "[test/language/statements/if/if-async-fun-else-stmt.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", - "test/language/statements/if/if-async-fun-no-else.js-strict:true": "[test/language/statements/if/if-async-fun-no-else.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", "test/language/statements/if/if-decl-else-decl-strict.js-strict:true": "[test/language/statements/if/if-decl-else-decl-strict.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", "test/language/statements/if/if-decl-else-stmt-strict.js-strict:true": "[test/language/statements/if/if-decl-else-stmt-strict.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", "test/language/statements/if/if-decl-no-else-strict.js-strict:true": "[test/language/statements/if/if-decl-no-else-strict.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", "test/language/statements/if/if-fun-else-fun-strict.js-strict:true": "[test/language/statements/if/if-fun-else-fun-strict.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", "test/language/statements/if/if-fun-else-stmt-strict.js-strict:true": "[test/language/statements/if/if-fun-else-stmt-strict.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", "test/language/statements/if/if-fun-no-else-strict.js-strict:true": "[test/language/statements/if/if-fun-no-else-strict.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", - "test/language/statements/if/if-stmt-else-async-fun.js-strict:true": "[test/language/statements/if/if-stmt-else-async-fun.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", "test/language/statements/if/if-stmt-else-decl-strict.js-strict:true": "[test/language/statements/if/if-stmt-else-decl-strict.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", "test/language/statements/if/if-stmt-else-fun-strict.js-strict:true": "[test/language/statements/if/if-stmt-else-fun-strict.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", "test/language/statements/if/labelled-fn-stmt-first.js-strict:true": "[test/language/statements/if/labelled-fn-stmt-first.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", "test/language/statements/if/labelled-fn-stmt-lone.js-strict:true": "[test/language/statements/if/labelled-fn-stmt-lone.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", "test/language/statements/if/labelled-fn-stmt-second.js-strict:true": "[test/language/statements/if/labelled-fn-stmt-second.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", "test/language/statements/if/let-array-with-newline.js-strict:false": "[test/language/statements/if/let-array-with-newline.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", - "test/language/statements/labeled/decl-async-function.js-strict:true": "[test/language/statements/labeled/decl-async-function.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", "test/language/statements/labeled/decl-cls.js-strict:true": "[test/language/statements/labeled/decl-cls.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", "test/language/statements/labeled/decl-const.js-strict:true": "[test/language/statements/labeled/decl-const.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", "test/language/statements/labeled/decl-fun-strict.js-strict:true": "[test/language/statements/labeled/decl-fun-strict.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", @@ -5189,15 +5160,13 @@ "test/language/statements/switch/cptn-dflt-fall-thru-nrml.js-strict:true": "[test/language/statements/switch/cptn-dflt-fall-thru-nrml.js Test262Error: Empty value does not replace previous non-empty value Expected SameValue(«undefined», «7») to be true at harness/sta.js:22:9(49)]: %!v(MISSING)", "test/language/statements/switch/cptn-no-dflt-match-fall-thru-abrupt-empty.js-strict:true": "[test/language/statements/switch/cptn-no-dflt-match-fall-thru-abrupt-empty.js Test262Error: Empty value does not replace previous non-empty value Expected SameValue(«undefined», «14») to be true at harness/sta.js:22:9(49)]: %!v(MISSING)", "test/language/statements/switch/cptn-no-dflt-match-fall-thru-nrml.js-strict:true": "[test/language/statements/switch/cptn-no-dflt-match-fall-thru-nrml.js Test262Error: Empty value does not replace previous non-empty value Expected SameValue(«undefined», «7») to be true at harness/sta.js:22:9(49)]: %!v(MISSING)", + "test/language/statements/switch/scope-lex-async-function.js-strict:true": "[test/language/statements/switch/scope-lex-async-function.js test/language/statements/switch/scope-lex-async-function.js: Line 22:36 Unexpected token function (and 2 more errors) runtime]: error %!v(MISSING) happened at the wrong phase (expected %!s(MISSING))", "test/language/statements/switch/scope-lex-async-generator.js-strict:true": "[test/language/statements/switch/scope-lex-async-generator.js SyntaxError: test/language/statements/switch/scope-lex-async-generator.js: Unexpected token (22:37)\n 20 | ---*/\n 21 | \n\u003e 22 | switch (0) { default: async function * x() {} }\n | ^\n 23 | x;\n 24 | at \u003ceval\u003e:2:28542(114) runtime]: error %!v(MISSING) happened at the wrong phase (expected %!s(MISSING))", + "test/language/statements/switch/scope-lex-generator.js-strict:true": "[test/language/statements/switch/scope-lex-generator.js test/language/statements/switch/scope-lex-generator.js: Line 22:38 Unexpected token * (and 1 more errors) runtime]: error %!v(MISSING) happened at the wrong phase (expected %!s(MISSING))", "test/language/statements/switch/scope-lex-open-case.js-strict:true": "[test/language/statements/switch/scope-lex-open-case.js Test262Error: Expected SameValue(«inside», «outside») to be true at harness/sta.js:22:9(49)]: %!v(MISSING)", "test/language/statements/switch/scope-lex-open-dflt.js-strict:true": "[test/language/statements/switch/scope-lex-open-dflt.js Test262Error: Expected SameValue(«inside», «outside») to be true at harness/sta.js:22:9(49)]: %!v(MISSING)", - "test/language/statements/switch/syntax/redeclaration/async-function-name-redeclaration-attempt-with-async-function.js-strict:true": "[test/language/statements/switch/syntax/redeclaration/async-function-name-redeclaration-attempt-with-async-function.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", "test/language/statements/switch/syntax/redeclaration/async-function-name-redeclaration-attempt-with-class.js-strict:true": "[test/language/statements/switch/syntax/redeclaration/async-function-name-redeclaration-attempt-with-class.js TypeError SyntaxError]: unexpected error type (%!s(MISSING)), expected (%!s(MISSING))", - "test/language/statements/switch/syntax/redeclaration/async-function-name-redeclaration-attempt-with-function.js-strict:true": "[test/language/statements/switch/syntax/redeclaration/async-function-name-redeclaration-attempt-with-function.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", "test/language/statements/switch/syntax/redeclaration/async-function-name-redeclaration-attempt-with-let.js-strict:true": "[test/language/statements/switch/syntax/redeclaration/async-function-name-redeclaration-attempt-with-let.js TypeError SyntaxError]: unexpected error type (%!s(MISSING)), expected (%!s(MISSING))", - "test/language/statements/switch/syntax/redeclaration/async-function-name-redeclaration-attempt-with-var.js-strict:true": "[test/language/statements/switch/syntax/redeclaration/async-function-name-redeclaration-attempt-with-var.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", - "test/language/statements/switch/syntax/redeclaration/class-name-redeclaration-attempt-with-async-function.js-strict:true": "[test/language/statements/switch/syntax/redeclaration/class-name-redeclaration-attempt-with-async-function.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", "test/language/statements/switch/syntax/redeclaration/class-name-redeclaration-attempt-with-class.js-strict:true": "[test/language/statements/switch/syntax/redeclaration/class-name-redeclaration-attempt-with-class.js TypeError SyntaxError]: unexpected error type (%!s(MISSING)), expected (%!s(MISSING))", "test/language/statements/switch/syntax/redeclaration/class-name-redeclaration-attempt-with-const.js-strict:true": "[test/language/statements/switch/syntax/redeclaration/class-name-redeclaration-attempt-with-const.js TypeError SyntaxError]: unexpected error type (%!s(MISSING)), expected (%!s(MISSING))", "test/language/statements/switch/syntax/redeclaration/class-name-redeclaration-attempt-with-function.js-strict:true": "[test/language/statements/switch/syntax/redeclaration/class-name-redeclaration-attempt-with-function.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", @@ -5209,18 +5178,15 @@ "test/language/statements/switch/syntax/redeclaration/const-name-redeclaration-attempt-with-function.js-strict:true": "[test/language/statements/switch/syntax/redeclaration/const-name-redeclaration-attempt-with-function.js TypeError SyntaxError]: unexpected error type (%!s(MISSING)), expected (%!s(MISSING))", "test/language/statements/switch/syntax/redeclaration/const-name-redeclaration-attempt-with-let.js-strict:true": "[test/language/statements/switch/syntax/redeclaration/const-name-redeclaration-attempt-with-let.js TypeError SyntaxError]: unexpected error type (%!s(MISSING)), expected (%!s(MISSING))", "test/language/statements/switch/syntax/redeclaration/const-name-redeclaration-attempt-with-var.js-strict:true": "[test/language/statements/switch/syntax/redeclaration/const-name-redeclaration-attempt-with-var.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", - "test/language/statements/switch/syntax/redeclaration/function-name-redeclaration-attempt-with-async-function.js-strict:true": "[test/language/statements/switch/syntax/redeclaration/function-name-redeclaration-attempt-with-async-function.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", "test/language/statements/switch/syntax/redeclaration/function-name-redeclaration-attempt-with-class.js-strict:true": "[test/language/statements/switch/syntax/redeclaration/function-name-redeclaration-attempt-with-class.js TypeError SyntaxError]: unexpected error type (%!s(MISSING)), expected (%!s(MISSING))", "test/language/statements/switch/syntax/redeclaration/function-name-redeclaration-attempt-with-function.js-strict:true": "[test/language/statements/switch/syntax/redeclaration/function-name-redeclaration-attempt-with-function.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", "test/language/statements/switch/syntax/redeclaration/function-name-redeclaration-attempt-with-let.js-strict:true": "[test/language/statements/switch/syntax/redeclaration/function-name-redeclaration-attempt-with-let.js TypeError SyntaxError]: unexpected error type (%!s(MISSING)), expected (%!s(MISSING))", "test/language/statements/switch/syntax/redeclaration/function-name-redeclaration-attempt-with-var.js-strict:true": "[test/language/statements/switch/syntax/redeclaration/function-name-redeclaration-attempt-with-var.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", - "test/language/statements/switch/syntax/redeclaration/let-name-redeclaration-attempt-with-async-function.js-strict:true": "[test/language/statements/switch/syntax/redeclaration/let-name-redeclaration-attempt-with-async-function.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", "test/language/statements/switch/syntax/redeclaration/let-name-redeclaration-attempt-with-class.js-strict:true": "[test/language/statements/switch/syntax/redeclaration/let-name-redeclaration-attempt-with-class.js TypeError SyntaxError]: unexpected error type (%!s(MISSING)), expected (%!s(MISSING))", "test/language/statements/switch/syntax/redeclaration/let-name-redeclaration-attempt-with-const.js-strict:true": "[test/language/statements/switch/syntax/redeclaration/let-name-redeclaration-attempt-with-const.js TypeError SyntaxError]: unexpected error type (%!s(MISSING)), expected (%!s(MISSING))", "test/language/statements/switch/syntax/redeclaration/let-name-redeclaration-attempt-with-function.js-strict:true": "[test/language/statements/switch/syntax/redeclaration/let-name-redeclaration-attempt-with-function.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", "test/language/statements/switch/syntax/redeclaration/let-name-redeclaration-attempt-with-let.js-strict:true": "[test/language/statements/switch/syntax/redeclaration/let-name-redeclaration-attempt-with-let.js TypeError SyntaxError]: unexpected error type (%!s(MISSING)), expected (%!s(MISSING))", "test/language/statements/switch/syntax/redeclaration/let-name-redeclaration-attempt-with-var.js-strict:true": "[test/language/statements/switch/syntax/redeclaration/let-name-redeclaration-attempt-with-var.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", - "test/language/statements/switch/syntax/redeclaration/var-name-redeclaration-attempt-with-async-function.js-strict:true": "[test/language/statements/switch/syntax/redeclaration/var-name-redeclaration-attempt-with-async-function.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", "test/language/statements/switch/syntax/redeclaration/var-name-redeclaration-attempt-with-class.js-strict:true": "[test/language/statements/switch/syntax/redeclaration/var-name-redeclaration-attempt-with-class.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", "test/language/statements/switch/syntax/redeclaration/var-name-redeclaration-attempt-with-const.js-strict:true": "[test/language/statements/switch/syntax/redeclaration/var-name-redeclaration-attempt-with-const.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", "test/language/statements/switch/syntax/redeclaration/var-name-redeclaration-attempt-with-function.js-strict:true": "[test/language/statements/switch/syntax/redeclaration/var-name-redeclaration-attempt-with-function.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", @@ -5279,7 +5245,6 @@ "test/language/statements/variable/dstr/obj-ptrn-rest-val-obj.js-strict:true": "[test/language/statements/variable/dstr/obj-ptrn-rest-val-obj.js SyntaxError: test/language/statements/variable/dstr/obj-ptrn-rest-val-obj.js: Unexpected token (21:11)\n 19 | ---*/\n 20 | \n\u003e 21 | var {a, b, ...rest} = {x: 1, y: 2, a: 5, b: 3};\n | ^\n 22 | \n 23 | assert.sameValue(rest.a, undefined);\n 24 | assert.sameValue(rest.b, undefined); at \u003ceval\u003e:2:28542(114)]: %!v(MISSING)", "test/language/statements/variable/fn-name-cover.js-strict:true": "[test/language/statements/variable/fn-name-cover.js Test262Error: Expected SameValue(«», «cover») to be true at harness/sta.js:22:9(49)]: %!v(MISSING)", "test/language/statements/variable/fn-name-fn.js-strict:true": "[test/language/statements/variable/fn-name-fn.js Test262Error: Expected SameValue(«», «fn») to be true at harness/sta.js:22:9(49)]: %!v(MISSING)", - "test/language/statements/while/decl-async-fun.js-strict:true": "[test/language/statements/while/decl-async-fun.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", "test/language/statements/while/decl-fun.js-strict:true": "[test/language/statements/while/decl-fun.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", "test/language/statements/while/labelled-fn-stmt.js-strict:true": "[test/language/statements/while/labelled-fn-stmt.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))", "test/language/statements/while/let-array-with-newline.js-strict:false": "[test/language/statements/while/let-array-with-newline.js Test262: This statement should not be evaluated.]: error is not an object (%!v(MISSING))",