WebKit Bugzilla
Attachment 339817 Details for
Bug 185389
: test262/Runner.pm: move input files to JSTests/test262
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch
bug-185389-20180508101218.patch (text/plain), 731.50 KB, created by
valerie
on 2018-05-08 07:12:20 PDT
(
hide
)
Description:
Patch
Filename:
MIME Type:
Creator:
valerie
Created:
2018-05-08 07:12:20 PDT
Size:
731.50 KB
patch
obsolete
>Subversion Revision: 231482 >diff --git a/Tools/ChangeLog b/Tools/ChangeLog >index 2f11cca080a23888aa0c0aeb6ff5c67e5e42219b..eaa5c58f05c4235e89633a0a2a3c4fc05eac9673 100644 >--- a/Tools/ChangeLog >+++ b/Tools/ChangeLog >@@ -1,3 +1,13 @@ >+2018-05-07 Valerie R Young <valerie@bocoup.com> >+ >+ test262/Runner.pm: move input files to JSTests/test262 >+ https://bugs.webkit.org/show_bug.cgi?id=185389 >+ >+ Reviewed by NOBODY (OOPS!). >+ >+ * Scripts/test262/Runner.pm: >+ (processCLI): >+ > 2018-05-07 Chris Dumez <cdumez@apple.com> > > Unreviewed, fix issue with running Speedometer PerfTest after r231450. >diff --git a/Tools/Scripts/test262/Runner.pm b/Tools/Scripts/test262/Runner.pm >index 2d0a3275033f3ad82148136636e6763941203a7c..ed074b0b69fefe3cbabf89ff473d754f8e359826 100755 >--- a/Tools/Scripts/test262/Runner.pm >+++ b/Tools/Scripts/test262/Runner.pm >@@ -82,8 +82,8 @@ my $failingOnly; > my $latestImport; > my $runningAllTests; > >-my $expectationsFile = abs_path("$Bin/expectations.yaml"); >-my $configFile = abs_path("$Bin/config.yaml"); >+my $expectationsFile = abs_path("$Bin/../../../JSTests/test262/expectations.yaml"); >+my $configFile = abs_path("$Bin/../../../JSTests/test262/config.yaml"); > my $resultsFile = abs_path("$Bin/results.yaml"); > my $summaryTxtFile = abs_path("$Bin/results-summary.txt"); > my $summaryFile = abs_path("$Bin/results-summary.yaml"); >@@ -172,7 +172,6 @@ sub processCLI { > if ($configFile and not -e $configFile) { > die "Config file $configFile does not exist!"; > } >- > $config = LoadFile($configFile) or die $!; > if ($config->{skip} && $config->{skip}->{files}) { > %configSkipHash = map { $_ => 1 } @{$config->{skip}->{files}}; >diff --git a/Tools/Scripts/test262/config.yaml b/Tools/Scripts/test262/config.yaml >deleted file mode 100644 >index 1381dd6b4cf5f81d1f4dea7638dd57acbab22d91..0000000000000000000000000000000000000000 >--- a/Tools/Scripts/test262/config.yaml >+++ /dev/null >@@ -1,13 +0,0 @@ >- >---- >-skip: >- # (uncomment to skip tests based on path) >- # paths: >- # - test/built-ins/Atomics >- features: >- - SharedArrayBuffer >- - Atomics >- - BigInt >- files: >- - test/built-ins/Array/prototype/reverse/length-exceeding-integer-limit-with-object.js >- - test/built-ins/Array/prototype/unshift/length-near-integer-limit.js >diff --git a/Tools/Scripts/test262/expectations.yaml b/Tools/Scripts/test262/expectations.yaml >deleted file mode 100644 >index 8742fbb8bda46ce4e65982207f9a0c917bf14091..0000000000000000000000000000000000000000 >--- a/Tools/Scripts/test262/expectations.yaml >+++ /dev/null >@@ -1,4097 +0,0 @@ >---- >-test/annexB/built-ins/Function/createdynfn-html-close-comment-params.js: >- default: "SyntaxError: Unexpected token '--'. Expected a parameter pattern or a ')' in parameter list." >- strict mode: "SyntaxError: Unexpected token '--'. Expected a parameter pattern or a ')' in parameter list." >-test/annexB/built-ins/Function/createdynfn-html-open-comment-params.js: >- default: "SyntaxError: Unexpected token '}'. Expected a parameter pattern or a ')' in parameter list." >- strict mode: "SyntaxError: Unexpected token '}'. Expected a parameter pattern or a ')' in parameter list." >-test/annexB/built-ins/RegExp/named-groups/non-unicode-malformed.js: >- default: 'SyntaxError: Invalid regular expression: invalid group specifier name' >- strict mode: 'SyntaxError: Invalid regular expression: invalid group specifier name' >-test/annexB/built-ins/RegExp/prototype/Symbol.split/Symbol.match-getter-recompiles-source.js: >- default: 'Test262Error: Expected SameValue(ëû, ëaû) to be true' >- strict mode: 'Test262Error: Expected SameValue(ëû, ëaû) to be true' >-test/annexB/built-ins/RegExp/prototype/compile/pattern-string-invalid-u.js: >- default: 'Test262Error: invalid pattern: { Expected a SyntaxError to be thrown but no exception was thrown at all' >- strict mode: 'Test262Error: invalid pattern: { Expected a SyntaxError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/func-block-decl-eval-func-skip-early-err-block.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/func-block-decl-eval-func-skip-early-err-for-in.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/func-block-decl-eval-func-skip-early-err-for-of.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/func-block-decl-eval-func-skip-early-err-for.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/func-block-decl-eval-func-skip-early-err-switch.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/func-block-decl-eval-func-skip-early-err-try.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/func-if-decl-else-decl-a-eval-func-skip-early-err-block.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/func-if-decl-else-decl-a-eval-func-skip-early-err-for-in.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/func-if-decl-else-decl-a-eval-func-skip-early-err-for-of.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/func-if-decl-else-decl-a-eval-func-skip-early-err-for.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/func-if-decl-else-decl-a-eval-func-skip-early-err-switch.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/func-if-decl-else-decl-a-eval-func-skip-early-err-try.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/func-if-decl-else-decl-b-eval-func-skip-early-err-block.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/func-if-decl-else-decl-b-eval-func-skip-early-err-for-in.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/func-if-decl-else-decl-b-eval-func-skip-early-err-for-of.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/func-if-decl-else-decl-b-eval-func-skip-early-err-for.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/func-if-decl-else-decl-b-eval-func-skip-early-err-switch.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/func-if-decl-else-decl-b-eval-func-skip-early-err-try.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/func-if-decl-else-stmt-eval-func-skip-early-err-block.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/func-if-decl-else-stmt-eval-func-skip-early-err-for-in.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/func-if-decl-else-stmt-eval-func-skip-early-err-for-of.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/func-if-decl-else-stmt-eval-func-skip-early-err-for.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/func-if-decl-else-stmt-eval-func-skip-early-err-switch.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/func-if-decl-else-stmt-eval-func-skip-early-err-try.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/func-if-decl-no-else-eval-func-skip-early-err-block.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/func-if-decl-no-else-eval-func-skip-early-err-for-in.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/func-if-decl-no-else-eval-func-skip-early-err-for-of.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/func-if-decl-no-else-eval-func-skip-early-err-for.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/func-if-decl-no-else-eval-func-skip-early-err-switch.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/func-if-decl-no-else-eval-func-skip-early-err-try.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/func-if-stmt-else-decl-eval-func-skip-early-err-block.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/func-if-stmt-else-decl-eval-func-skip-early-err-for-in.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/func-if-stmt-else-decl-eval-func-skip-early-err-for-of.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/func-if-stmt-else-decl-eval-func-skip-early-err-for.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/func-if-stmt-else-decl-eval-func-skip-early-err-switch.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/func-if-stmt-else-decl-eval-func-skip-early-err-try.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/func-switch-case-eval-func-skip-early-err-block.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/func-switch-case-eval-func-skip-early-err-for-in.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/func-switch-case-eval-func-skip-early-err-for-of.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/func-switch-case-eval-func-skip-early-err-for.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/func-switch-case-eval-func-skip-early-err-switch.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/func-switch-case-eval-func-skip-early-err-try.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/func-switch-dflt-eval-func-skip-early-err-block.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/func-switch-dflt-eval-func-skip-early-err-for-in.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/func-switch-dflt-eval-func-skip-early-err-for-of.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/func-switch-dflt-eval-func-skip-early-err-for.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/func-switch-dflt-eval-func-skip-early-err-switch.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/func-switch-dflt-eval-func-skip-early-err-try.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/global-block-decl-eval-global-existing-global-init.js: >- default: 'Test262Error: binding is initialized to `undefined` Expected SameValue(ëxû, ëundefinedû) to be true' >-test/annexB/language/eval-code/direct/global-block-decl-eval-global-skip-early-err-block.js: >- default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/global-block-decl-eval-global-skip-early-err-for-in.js: >- default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/global-block-decl-eval-global-skip-early-err-for-of.js: >- default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/global-block-decl-eval-global-skip-early-err-for.js: >- default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/global-block-decl-eval-global-skip-early-err-switch.js: >- default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/global-block-decl-eval-global-skip-early-err-try.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/global-if-decl-else-decl-a-eval-global-existing-global-init.js: >- default: 'Test262Error: binding is initialized to `undefined` Expected SameValue(ëxû, ëundefinedû) to be true' >-test/annexB/language/eval-code/direct/global-if-decl-else-decl-a-eval-global-skip-early-err-block.js: >- default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/global-if-decl-else-decl-a-eval-global-skip-early-err-for-in.js: >- default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/global-if-decl-else-decl-a-eval-global-skip-early-err-for-of.js: >- default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/global-if-decl-else-decl-a-eval-global-skip-early-err-for.js: >- default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/global-if-decl-else-decl-a-eval-global-skip-early-err-switch.js: >- default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/global-if-decl-else-decl-a-eval-global-skip-early-err-try.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/global-if-decl-else-decl-b-eval-global-existing-global-init.js: >- default: 'Test262Error: binding is initialized to `undefined` Expected SameValue(ëxû, ëundefinedû) to be true' >-test/annexB/language/eval-code/direct/global-if-decl-else-decl-b-eval-global-skip-early-err-block.js: >- default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/global-if-decl-else-decl-b-eval-global-skip-early-err-for-in.js: >- default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/global-if-decl-else-decl-b-eval-global-skip-early-err-for-of.js: >- default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/global-if-decl-else-decl-b-eval-global-skip-early-err-for.js: >- default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/global-if-decl-else-decl-b-eval-global-skip-early-err-switch.js: >- default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/global-if-decl-else-decl-b-eval-global-skip-early-err-try.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/global-if-decl-else-stmt-eval-global-existing-global-init.js: >- default: 'Test262Error: binding is initialized to `undefined` Expected SameValue(ëxû, ëundefinedû) to be true' >-test/annexB/language/eval-code/direct/global-if-decl-else-stmt-eval-global-skip-early-err-block.js: >- default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/global-if-decl-else-stmt-eval-global-skip-early-err-for-in.js: >- default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/global-if-decl-else-stmt-eval-global-skip-early-err-for-of.js: >- default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/global-if-decl-else-stmt-eval-global-skip-early-err-for.js: >- default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/global-if-decl-else-stmt-eval-global-skip-early-err-switch.js: >- default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/global-if-decl-else-stmt-eval-global-skip-early-err-try.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/global-if-decl-no-else-eval-global-existing-global-init.js: >- default: 'Test262Error: binding is initialized to `undefined` Expected SameValue(ëxû, ëundefinedû) to be true' >-test/annexB/language/eval-code/direct/global-if-decl-no-else-eval-global-skip-early-err-block.js: >- default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/global-if-decl-no-else-eval-global-skip-early-err-for-in.js: >- default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/global-if-decl-no-else-eval-global-skip-early-err-for-of.js: >- default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/global-if-decl-no-else-eval-global-skip-early-err-for.js: >- default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/global-if-decl-no-else-eval-global-skip-early-err-switch.js: >- default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/global-if-decl-no-else-eval-global-skip-early-err-try.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/global-if-stmt-else-decl-eval-global-existing-global-init.js: >- default: 'Test262Error: binding is initialized to `undefined` Expected SameValue(ëxû, ëundefinedû) to be true' >-test/annexB/language/eval-code/direct/global-if-stmt-else-decl-eval-global-skip-early-err-block.js: >- default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/global-if-stmt-else-decl-eval-global-skip-early-err-for-in.js: >- default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/global-if-stmt-else-decl-eval-global-skip-early-err-for-of.js: >- default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/global-if-stmt-else-decl-eval-global-skip-early-err-for.js: >- default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/global-if-stmt-else-decl-eval-global-skip-early-err-switch.js: >- default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/global-if-stmt-else-decl-eval-global-skip-early-err-try.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/global-switch-case-eval-global-existing-global-init.js: >- default: 'Test262Error: binding is initialized to `undefined` Expected SameValue(ëxû, ëundefinedû) to be true' >-test/annexB/language/eval-code/direct/global-switch-case-eval-global-skip-early-err-block.js: >- default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/global-switch-case-eval-global-skip-early-err-for-in.js: >- default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/global-switch-case-eval-global-skip-early-err-for-of.js: >- default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/global-switch-case-eval-global-skip-early-err-for.js: >- default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/global-switch-case-eval-global-skip-early-err-switch.js: >- default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/global-switch-case-eval-global-skip-early-err-try.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/global-switch-dflt-eval-global-existing-global-init.js: >- default: 'Test262Error: binding is initialized to `undefined` Expected SameValue(ëxû, ëundefinedû) to be true' >-test/annexB/language/eval-code/direct/global-switch-dflt-eval-global-skip-early-err-block.js: >- default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/global-switch-dflt-eval-global-skip-early-err-for-in.js: >- default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/global-switch-dflt-eval-global-skip-early-err-for-of.js: >- default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/global-switch-dflt-eval-global-skip-early-err-for.js: >- default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/global-switch-dflt-eval-global-skip-early-err-switch.js: >- default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/global-switch-dflt-eval-global-skip-early-err-try.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/direct/var-env-lower-lex-catch-non-strict.js: >- default: "SyntaxError: Can't create duplicate variable in eval: 'err'" >-test/annexB/language/eval-code/indirect/global-block-decl-eval-global-existing-global-init.js: >- default: 'Test262Error: binding is initialized to `undefined` Expected SameValue(ëxû, ëundefinedû) to be true' >-test/annexB/language/eval-code/indirect/global-block-decl-eval-global-skip-early-err-block.js: >- default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/indirect/global-block-decl-eval-global-skip-early-err-for-in.js: >- default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/indirect/global-block-decl-eval-global-skip-early-err-for-of.js: >- default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/indirect/global-block-decl-eval-global-skip-early-err-for.js: >- default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/indirect/global-block-decl-eval-global-skip-early-err-switch.js: >- default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/indirect/global-block-decl-eval-global-skip-early-err-try.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/indirect/global-if-decl-else-decl-a-eval-global-existing-global-init.js: >- default: 'Test262Error: binding is initialized to `undefined` Expected SameValue(ëxû, ëundefinedû) to be true' >-test/annexB/language/eval-code/indirect/global-if-decl-else-decl-a-eval-global-skip-early-err-block.js: >- default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/indirect/global-if-decl-else-decl-a-eval-global-skip-early-err-for-in.js: >- default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/indirect/global-if-decl-else-decl-a-eval-global-skip-early-err-for-of.js: >- default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/indirect/global-if-decl-else-decl-a-eval-global-skip-early-err-for.js: >- default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/indirect/global-if-decl-else-decl-a-eval-global-skip-early-err-switch.js: >- default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/indirect/global-if-decl-else-decl-a-eval-global-skip-early-err-try.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/indirect/global-if-decl-else-decl-b-eval-global-existing-global-init.js: >- default: 'Test262Error: binding is initialized to `undefined` Expected SameValue(ëxû, ëundefinedû) to be true' >-test/annexB/language/eval-code/indirect/global-if-decl-else-decl-b-eval-global-skip-early-err-block.js: >- default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/indirect/global-if-decl-else-decl-b-eval-global-skip-early-err-for-in.js: >- default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/indirect/global-if-decl-else-decl-b-eval-global-skip-early-err-for-of.js: >- default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/indirect/global-if-decl-else-decl-b-eval-global-skip-early-err-for.js: >- default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/indirect/global-if-decl-else-decl-b-eval-global-skip-early-err-switch.js: >- default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/indirect/global-if-decl-else-decl-b-eval-global-skip-early-err-try.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/indirect/global-if-decl-else-stmt-eval-global-existing-global-init.js: >- default: 'Test262Error: binding is initialized to `undefined` Expected SameValue(ëxû, ëundefinedû) to be true' >-test/annexB/language/eval-code/indirect/global-if-decl-else-stmt-eval-global-skip-early-err-block.js: >- default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/indirect/global-if-decl-else-stmt-eval-global-skip-early-err-for-in.js: >- default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/indirect/global-if-decl-else-stmt-eval-global-skip-early-err-for-of.js: >- default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/indirect/global-if-decl-else-stmt-eval-global-skip-early-err-for.js: >- default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/indirect/global-if-decl-else-stmt-eval-global-skip-early-err-switch.js: >- default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/indirect/global-if-decl-else-stmt-eval-global-skip-early-err-try.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/indirect/global-if-decl-no-else-eval-global-existing-global-init.js: >- default: 'Test262Error: binding is initialized to `undefined` Expected SameValue(ëxû, ëundefinedû) to be true' >-test/annexB/language/eval-code/indirect/global-if-decl-no-else-eval-global-skip-early-err-block.js: >- default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/indirect/global-if-decl-no-else-eval-global-skip-early-err-for-in.js: >- default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/indirect/global-if-decl-no-else-eval-global-skip-early-err-for-of.js: >- default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/indirect/global-if-decl-no-else-eval-global-skip-early-err-for.js: >- default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/indirect/global-if-decl-no-else-eval-global-skip-early-err-switch.js: >- default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/indirect/global-if-decl-no-else-eval-global-skip-early-err-try.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/indirect/global-if-stmt-else-decl-eval-global-existing-global-init.js: >- default: 'Test262Error: binding is initialized to `undefined` Expected SameValue(ëxû, ëundefinedû) to be true' >-test/annexB/language/eval-code/indirect/global-if-stmt-else-decl-eval-global-skip-early-err-block.js: >- default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/indirect/global-if-stmt-else-decl-eval-global-skip-early-err-for-in.js: >- default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/indirect/global-if-stmt-else-decl-eval-global-skip-early-err-for-of.js: >- default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/indirect/global-if-stmt-else-decl-eval-global-skip-early-err-for.js: >- default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/indirect/global-if-stmt-else-decl-eval-global-skip-early-err-switch.js: >- default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/indirect/global-if-stmt-else-decl-eval-global-skip-early-err-try.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/indirect/global-switch-case-eval-global-existing-global-init.js: >- default: 'Test262Error: binding is initialized to `undefined` Expected SameValue(ëxû, ëundefinedû) to be true' >-test/annexB/language/eval-code/indirect/global-switch-case-eval-global-skip-early-err-block.js: >- default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/indirect/global-switch-case-eval-global-skip-early-err-for-in.js: >- default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/indirect/global-switch-case-eval-global-skip-early-err-for-of.js: >- default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/indirect/global-switch-case-eval-global-skip-early-err-for.js: >- default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/indirect/global-switch-case-eval-global-skip-early-err-switch.js: >- default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/indirect/global-switch-case-eval-global-skip-early-err-try.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/indirect/global-switch-dflt-eval-global-existing-global-init.js: >- default: 'Test262Error: binding is initialized to `undefined` Expected SameValue(ëxû, ëundefinedû) to be true' >-test/annexB/language/eval-code/indirect/global-switch-dflt-eval-global-skip-early-err-block.js: >- default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/indirect/global-switch-dflt-eval-global-skip-early-err-for-in.js: >- default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/indirect/global-switch-dflt-eval-global-skip-early-err-for-of.js: >- default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/indirect/global-switch-dflt-eval-global-skip-early-err-for.js: >- default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/indirect/global-switch-dflt-eval-global-skip-early-err-switch.js: >- default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/eval-code/indirect/global-switch-dflt-eval-global-skip-early-err-try.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/expressions/yield/star-iterable-return-emulates-undefined-throws-when-called.js: >- default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >- strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >-test/annexB/language/function-code/block-decl-func-skip-arguments.js: >- default: 'Test262Error: Expected SameValue(ëfunction arguments() {}û, ë[object Arguments]û) to be true' >-test/annexB/language/function-code/block-decl-func-skip-early-err-block.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/function-code/block-decl-func-skip-early-err-for-in.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/function-code/block-decl-func-skip-early-err-for-of.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/function-code/block-decl-func-skip-early-err-for.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/function-code/block-decl-func-skip-early-err-switch.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/function-code/block-decl-func-skip-early-err-try.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/function-code/if-decl-else-decl-a-func-skip-early-err-block.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/function-code/if-decl-else-decl-a-func-skip-early-err-for-in.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/function-code/if-decl-else-decl-a-func-skip-early-err-for-of.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/function-code/if-decl-else-decl-a-func-skip-early-err-for.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/function-code/if-decl-else-decl-a-func-skip-early-err-switch.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/function-code/if-decl-else-decl-a-func-skip-early-err-try.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/function-code/if-decl-else-decl-b-func-skip-early-err-block.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/function-code/if-decl-else-decl-b-func-skip-early-err-for-in.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/function-code/if-decl-else-decl-b-func-skip-early-err-for-of.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/function-code/if-decl-else-decl-b-func-skip-early-err-for.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/function-code/if-decl-else-decl-b-func-skip-early-err-switch.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/function-code/if-decl-else-decl-b-func-skip-early-err-try.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/function-code/if-decl-else-stmt-func-skip-early-err-block.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/function-code/if-decl-else-stmt-func-skip-early-err-for-in.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/function-code/if-decl-else-stmt-func-skip-early-err-for-of.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/function-code/if-decl-else-stmt-func-skip-early-err-for.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/function-code/if-decl-else-stmt-func-skip-early-err-switch.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/function-code/if-decl-else-stmt-func-skip-early-err-try.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/function-code/if-decl-no-else-func-skip-early-err-block.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/function-code/if-decl-no-else-func-skip-early-err-for-in.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/function-code/if-decl-no-else-func-skip-early-err-for-of.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/function-code/if-decl-no-else-func-skip-early-err-for.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/function-code/if-decl-no-else-func-skip-early-err-switch.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/function-code/if-decl-no-else-func-skip-early-err-try.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/function-code/if-stmt-else-decl-func-skip-early-err-block.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/function-code/if-stmt-else-decl-func-skip-early-err-for-in.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/function-code/if-stmt-else-decl-func-skip-early-err-for-of.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/function-code/if-stmt-else-decl-func-skip-early-err-for.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/function-code/if-stmt-else-decl-func-skip-early-err-switch.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/function-code/if-stmt-else-decl-func-skip-early-err-try.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/function-code/switch-case-func-skip-early-err-block.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/function-code/switch-case-func-skip-early-err-for-in.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/function-code/switch-case-func-skip-early-err-for-of.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/function-code/switch-case-func-skip-early-err-for.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/function-code/switch-case-func-skip-early-err-switch.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/function-code/switch-case-func-skip-early-err-try.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/function-code/switch-dflt-func-skip-early-err-block.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/function-code/switch-dflt-func-skip-early-err-for-in.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/function-code/switch-dflt-func-skip-early-err-for-of.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/function-code/switch-dflt-func-skip-early-err-for.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/function-code/switch-dflt-func-skip-early-err-switch.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/function-code/switch-dflt-func-skip-early-err-try.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/global-code/block-decl-global-block-scoping.js: >- default: "TypeError: f is not a function. (In 'f()', 'f' is 123)" >-test/annexB/language/global-code/block-decl-global-existing-block-fn-no-init.js: >- default: 'Test262Error: Expected SameValue(ëfunction f() { }û, ëundefinedû) to be true' >-test/annexB/language/global-code/block-decl-global-existing-fn-update.js: >- default: 'Test262Error: Expected SameValue(ëouter declarationû, ëinner declarationû) to be true' >-test/annexB/language/global-code/block-decl-global-init.js: >- default: 'Test262Error: binding is initialized to `undefined` Expected SameValue(ëfunction f() { }û, ëundefinedû) to be true' >-test/annexB/language/global-code/block-decl-global-no-skip-try.js: >- default: 'Test262Error: Initialized binding created prior to evaluation Expected SameValue(ëfunction f() { return 123; }û, ëundefinedû) to be true' >-test/annexB/language/global-code/block-decl-global-skip-early-err-block.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/global-code/block-decl-global-skip-early-err-for-in.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/global-code/block-decl-global-skip-early-err-for-of.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/global-code/block-decl-global-skip-early-err-for.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/global-code/block-decl-global-skip-early-err-switch.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/global-code/block-decl-global-skip-early-err-try.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/global-code/block-decl-global-skip-early-err.js: >- default: "SyntaxError: Cannot declare a function that shadows a let/const/class/function variable 'f' in strict mode." >-test/annexB/language/global-code/if-decl-else-decl-a-global-block-scoping.js: >- default: "TypeError: f is not a function. (In 'f()', 'f' is 123)" >-test/annexB/language/global-code/if-decl-else-decl-a-global-existing-block-fn-no-init.js: >- default: 'Test262Error: Expected SameValue(ëfunction f() { }û, ëundefinedû) to be true' >-test/annexB/language/global-code/if-decl-else-decl-a-global-existing-fn-update.js: >- default: 'Test262Error: Expected SameValue(ëouter declarationû, ëinner declarationû) to be true' >-test/annexB/language/global-code/if-decl-else-decl-a-global-init.js: >- default: 'Test262Error: binding is initialized to `undefined` Expected SameValue(ëfunction f() { }û, ëundefinedû) to be true' >-test/annexB/language/global-code/if-decl-else-decl-a-global-no-skip-try.js: >- default: 'Test262Error: Initialized binding created prior to evaluation Expected SameValue(ëfunction f() { return 123; }û, ëundefinedû) to be true' >-test/annexB/language/global-code/if-decl-else-decl-a-global-skip-early-err-block.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/global-code/if-decl-else-decl-a-global-skip-early-err-for-in.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/global-code/if-decl-else-decl-a-global-skip-early-err-for-of.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/global-code/if-decl-else-decl-a-global-skip-early-err-for.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/global-code/if-decl-else-decl-a-global-skip-early-err-switch.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/global-code/if-decl-else-decl-a-global-skip-early-err-try.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/global-code/if-decl-else-decl-a-global-skip-early-err.js: >- default: "SyntaxError: Cannot declare a function that shadows a let/const/class/function variable 'f' in strict mode." >-test/annexB/language/global-code/if-decl-else-decl-b-global-block-scoping.js: >- default: "TypeError: f is not a function. (In 'f()', 'f' is 123)" >-test/annexB/language/global-code/if-decl-else-decl-b-global-existing-block-fn-no-init.js: >- default: 'Test262Error: Expected SameValue(ëfunction f() { }û, ëundefinedû) to be true' >-test/annexB/language/global-code/if-decl-else-decl-b-global-existing-fn-update.js: >- default: 'Test262Error: Expected SameValue(ëouter declarationû, ëinner declarationû) to be true' >-test/annexB/language/global-code/if-decl-else-decl-b-global-init.js: >- default: 'Test262Error: binding is initialized to `undefined` Expected SameValue(ëfunction f() { }û, ëundefinedû) to be true' >-test/annexB/language/global-code/if-decl-else-decl-b-global-no-skip-try.js: >- default: 'Test262Error: Initialized binding created prior to evaluation Expected SameValue(ëfunction f() { return 123; }û, ëundefinedû) to be true' >-test/annexB/language/global-code/if-decl-else-decl-b-global-skip-early-err-block.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/global-code/if-decl-else-decl-b-global-skip-early-err-for-in.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/global-code/if-decl-else-decl-b-global-skip-early-err-for-of.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/global-code/if-decl-else-decl-b-global-skip-early-err-for.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/global-code/if-decl-else-decl-b-global-skip-early-err-switch.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/global-code/if-decl-else-decl-b-global-skip-early-err-try.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/global-code/if-decl-else-decl-b-global-skip-early-err.js: >- default: "SyntaxError: Cannot declare a function that shadows a let/const/class/function variable 'f' in strict mode." >-test/annexB/language/global-code/if-decl-else-stmt-global-block-scoping.js: >- default: "TypeError: f is not a function. (In 'f()', 'f' is 123)" >-test/annexB/language/global-code/if-decl-else-stmt-global-existing-block-fn-no-init.js: >- default: 'Test262Error: Expected SameValue(ëfunction f() { }û, ëundefinedû) to be true' >-test/annexB/language/global-code/if-decl-else-stmt-global-existing-fn-update.js: >- default: 'Test262Error: Expected SameValue(ëouter declarationû, ëinner declarationû) to be true' >-test/annexB/language/global-code/if-decl-else-stmt-global-init.js: >- default: 'Test262Error: binding is initialized to `undefined` Expected SameValue(ëfunction f() { }û, ëundefinedû) to be true' >-test/annexB/language/global-code/if-decl-else-stmt-global-no-skip-try.js: >- default: 'Test262Error: Initialized binding created prior to evaluation Expected SameValue(ëfunction f() { return 123; }û, ëundefinedû) to be true' >-test/annexB/language/global-code/if-decl-else-stmt-global-skip-early-err-block.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/global-code/if-decl-else-stmt-global-skip-early-err-for-in.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/global-code/if-decl-else-stmt-global-skip-early-err-for-of.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/global-code/if-decl-else-stmt-global-skip-early-err-for.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/global-code/if-decl-else-stmt-global-skip-early-err-switch.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/global-code/if-decl-else-stmt-global-skip-early-err-try.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/global-code/if-decl-else-stmt-global-skip-early-err.js: >- default: "SyntaxError: Cannot declare a function that shadows a let/const/class/function variable 'f' in strict mode." >-test/annexB/language/global-code/if-decl-no-else-global-block-scoping.js: >- default: "TypeError: f is not a function. (In 'f()', 'f' is 123)" >-test/annexB/language/global-code/if-decl-no-else-global-existing-block-fn-no-init.js: >- default: 'Test262Error: Expected SameValue(ëfunction f() { }û, ëundefinedû) to be true' >-test/annexB/language/global-code/if-decl-no-else-global-existing-fn-update.js: >- default: 'Test262Error: Expected SameValue(ëouter declarationû, ëinner declarationû) to be true' >-test/annexB/language/global-code/if-decl-no-else-global-init.js: >- default: 'Test262Error: binding is initialized to `undefined` Expected SameValue(ëfunction f() { }û, ëundefinedû) to be true' >-test/annexB/language/global-code/if-decl-no-else-global-no-skip-try.js: >- default: 'Test262Error: Initialized binding created prior to evaluation Expected SameValue(ëfunction f() { return 123; }û, ëundefinedû) to be true' >-test/annexB/language/global-code/if-decl-no-else-global-skip-early-err-block.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/global-code/if-decl-no-else-global-skip-early-err-for-in.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/global-code/if-decl-no-else-global-skip-early-err-for-of.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/global-code/if-decl-no-else-global-skip-early-err-for.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/global-code/if-decl-no-else-global-skip-early-err-switch.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/global-code/if-decl-no-else-global-skip-early-err-try.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/global-code/if-decl-no-else-global-skip-early-err.js: >- default: "SyntaxError: Cannot declare a function that shadows a let/const/class/function variable 'f' in strict mode." >-test/annexB/language/global-code/if-stmt-else-decl-global-block-scoping.js: >- default: "TypeError: f is not a function. (In 'f()', 'f' is 123)" >-test/annexB/language/global-code/if-stmt-else-decl-global-existing-block-fn-no-init.js: >- default: 'Test262Error: Expected SameValue(ëfunction f() { }û, ëundefinedû) to be true' >-test/annexB/language/global-code/if-stmt-else-decl-global-existing-fn-update.js: >- default: 'Test262Error: Expected SameValue(ëouter declarationû, ëinner declarationû) to be true' >-test/annexB/language/global-code/if-stmt-else-decl-global-init.js: >- default: 'Test262Error: binding is initialized to `undefined` Expected SameValue(ëfunction f() { }û, ëundefinedû) to be true' >-test/annexB/language/global-code/if-stmt-else-decl-global-no-skip-try.js: >- default: 'Test262Error: Initialized binding created prior to evaluation Expected SameValue(ëfunction f() { return 123; }û, ëundefinedû) to be true' >-test/annexB/language/global-code/if-stmt-else-decl-global-skip-early-err-block.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/global-code/if-stmt-else-decl-global-skip-early-err-for-in.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/global-code/if-stmt-else-decl-global-skip-early-err-for-of.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/global-code/if-stmt-else-decl-global-skip-early-err-for.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/global-code/if-stmt-else-decl-global-skip-early-err-switch.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/global-code/if-stmt-else-decl-global-skip-early-err-try.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/global-code/if-stmt-else-decl-global-skip-early-err.js: >- default: "SyntaxError: Cannot declare a function that shadows a let/const/class/function variable 'f' in strict mode." >-test/annexB/language/global-code/switch-case-global-block-scoping.js: >- default: "TypeError: f is not a function. (In 'f()', 'f' is 123)" >-test/annexB/language/global-code/switch-case-global-existing-block-fn-no-init.js: >- default: 'Test262Error: Expected SameValue(ëfunction f() { }û, ëundefinedû) to be true' >-test/annexB/language/global-code/switch-case-global-existing-fn-update.js: >- default: 'Test262Error: Expected SameValue(ëouter declarationû, ëinner declarationû) to be true' >-test/annexB/language/global-code/switch-case-global-init.js: >- default: 'Test262Error: binding is initialized to `undefined` Expected SameValue(ëfunction f() { }û, ëundefinedû) to be true' >-test/annexB/language/global-code/switch-case-global-no-skip-try.js: >- default: 'Test262Error: Initialized binding created prior to evaluation Expected SameValue(ëfunction f() { return 123; }û, ëundefinedû) to be true' >-test/annexB/language/global-code/switch-case-global-skip-early-err-block.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/global-code/switch-case-global-skip-early-err-for-in.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/global-code/switch-case-global-skip-early-err-for-of.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/global-code/switch-case-global-skip-early-err-for.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/global-code/switch-case-global-skip-early-err-switch.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/global-code/switch-case-global-skip-early-err-try.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/global-code/switch-case-global-skip-early-err.js: >- default: "SyntaxError: Cannot declare a function that shadows a let/const/class/function variable 'f' in strict mode." >-test/annexB/language/global-code/switch-dflt-global-block-scoping.js: >- default: "TypeError: f is not a function. (In 'f()', 'f' is 123)" >-test/annexB/language/global-code/switch-dflt-global-existing-block-fn-no-init.js: >- default: 'Test262Error: Expected SameValue(ëfunction f() { }û, ëundefinedû) to be true' >-test/annexB/language/global-code/switch-dflt-global-existing-fn-update.js: >- default: 'Test262Error: Expected SameValue(ëouter declarationû, ëinner declarationû) to be true' >-test/annexB/language/global-code/switch-dflt-global-init.js: >- default: 'Test262Error: binding is initialized to `undefined` Expected SameValue(ëfunction f() { }û, ëundefinedû) to be true' >-test/annexB/language/global-code/switch-dflt-global-no-skip-try.js: >- default: 'Test262Error: Initialized binding created prior to evaluation Expected SameValue(ëfunction f() { return 123; }û, ëundefinedû) to be true' >-test/annexB/language/global-code/switch-dflt-global-skip-early-err-block.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/global-code/switch-dflt-global-skip-early-err-for-in.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/global-code/switch-dflt-global-skip-early-err-for-of.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/global-code/switch-dflt-global-skip-early-err-for.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/global-code/switch-dflt-global-skip-early-err-switch.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/global-code/switch-dflt-global-skip-early-err-try.js: >- default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/annexB/language/global-code/switch-dflt-global-skip-early-err.js: >- default: "SyntaxError: Cannot declare a function that shadows a let/const/class/function variable 'f' in strict mode." >-test/annexB/language/statements/for-of/iterator-close-return-emulates-undefined-throws-when-called.js: >- default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >- strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >-test/built-ins/Array/of/return-abrupt-from-data-property.js: >- default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >- strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >-test/built-ins/Array/proto-from-ctor-realm.js: >- default: 'Test262Error: Expected SameValue(ëû, ëû) to be true' >- strict mode: 'Test262Error: Expected SameValue(ëû, ëû) to be true' >-test/built-ins/Array/prototype/concat/is-concat-spreadable-is-array-proxy-revoked.js: >- default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >- strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >-test/built-ins/Array/prototype/concat/is-concat-spreadable-proxy.js: >- default: 'Test262Error: Proxy for an array Expected SameValue(ë1û, ë0û) to be true' >- strict mode: 'Test262Error: Proxy for an array Expected SameValue(ë1û, ë0û) to be true' >-test/built-ins/Array/prototype/indexOf/15.4.4.14-3-28.js: >- default: 'Test262Error: Array.prototype.indexOf.call(obj, targetObj) Expected SameValue(ë-1û, ë0û) to be true' >- strict mode: 'Test262Error: Array.prototype.indexOf.call(obj, targetObj) Expected SameValue(ë-1û, ë0û) to be true' >-test/built-ins/Array/prototype/indexOf/15.4.4.14-3-29.js: >- default: 'Test262Error: Array.prototype.indexOf.call(obj, 4294967297) Expected SameValue(ë-1û, ë1û) to be true' >- strict mode: 'Test262Error: Array.prototype.indexOf.call(obj, 4294967297) Expected SameValue(ë-1û, ë1û) to be true' >-test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-28.js: >- default: 'Test262Error: verify length is 4294967296 finally Expected SameValue(ë-1û, ë4294967295û) to be true' >- strict mode: 'Test262Error: verify length is 4294967296 finally Expected SameValue(ë-1û, ë4294967295û) to be true' >-test/built-ins/Array/prototype/pop/S15.4.4.6_A2_T2.js: >- default: 'Test262Error: #4: var obj = {}; obj.length = Number.POSITIVE_INFINITY; obj.pop = Array.prototype.pop; obj.pop(); obj.length === 9007199254740990. Actual: 4294967294' >- strict mode: 'Test262Error: #4: var obj = {}; obj.length = Number.POSITIVE_INFINITY; obj.pop = Array.prototype.pop; obj.pop(); obj.length === 9007199254740990. Actual: 4294967294' >-test/built-ins/Array/prototype/pop/S15.4.4.6_A3_T1.js: >- default: 'Test262Error: #1: var obj = {}; obj.pop = Array.prototype.pop; obj[0] = "x"; obj[4294967295] = "y"; obj.length = 4294967296; obj.pop() === "y". Actual: undefined' >- strict mode: 'Test262Error: #1: var obj = {}; obj.pop = Array.prototype.pop; obj[0] = "x"; obj[4294967295] = "y"; obj.length = 4294967296; obj.pop() === "y". Actual: undefined' >-test/built-ins/Array/prototype/pop/S15.4.4.6_A3_T2.js: >- default: 'Test262Error: #1: var obj = {}; obj.pop = Array.prototype.pop; obj[0] = "x"; obj[4294967296] = "y"; obj.length = 4294967297; obj.pop() === "y". Actual: x' >- strict mode: 'Test262Error: #1: var obj = {}; obj.pop = Array.prototype.pop; obj[0] = "x"; obj[4294967296] = "y"; obj.length = 4294967297; obj.pop() === "y". Actual: x' >-test/built-ins/Array/prototype/pop/clamps-to-integer-limit.js: >- default: 'Test262Error: Length is 2**53 - 1 Expected SameValue(ë4294967294û, ë9007199254740990û) to be true' >- strict mode: 'Test262Error: Length is 2**53 - 1 Expected SameValue(ë4294967294û, ë9007199254740990û) to be true' >-test/built-ins/Array/prototype/pop/length-near-integer-limit.js: >- default: "Test262Error: arrayLike['9007199254740990'] is returned from pop() Expected SameValue(ëundefinedû, ë9007199254740990û) to be true" >- strict mode: "Test262Error: arrayLike['9007199254740990'] is returned from pop() Expected SameValue(ëundefinedû, ë9007199254740990û) to be true" >-test/built-ins/Array/prototype/push/S15.4.4.7_A2_T2.js: >- default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >- strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >-test/built-ins/Array/prototype/push/S15.4.4.7_A4_T1.js: >- default: 'Test262Error: #1: var obj = {}; obj.push = Array.prototype.push; obj.length = 4294967296; obj.push("x", "y", "z") === 4294967299. Actual: 3' >- strict mode: 'Test262Error: #1: var obj = {}; obj.push = Array.prototype.push; obj.length = 4294967296; obj.push("x", "y", "z") === 4294967299. Actual: 3' >-test/built-ins/Array/prototype/push/clamps-to-integer-limit.js: >- default: 'Test262Error: Length is 2**53 - 1 Expected SameValue(ë4294967295û, ë9007199254740991û) to be true' >- strict mode: 'Test262Error: Length is 2**53 - 1 Expected SameValue(ë4294967295û, ë9007199254740991û) to be true' >-test/built-ins/Array/prototype/push/length-near-integer-limit.js: >- default: 'Test262Error: New arrayLike.length is 2**53 - 1 Expected SameValue(ë4294967295û, ë9007199254740991û) to be true' >- strict mode: 'Test262Error: New arrayLike.length is 2**53 - 1 Expected SameValue(ë4294967295û, ë9007199254740991û) to be true' >-test/built-ins/Array/prototype/push/throws-if-integer-limit-exceeded.js: >- default: 'Test262Error: Length is 2**53 - 1 Expected a TypeError to be thrown but no exception was thrown at all' >- strict mode: 'Test262Error: Length is 2**53 - 1 Expected a TypeError to be thrown but no exception was thrown at all' >-test/built-ins/Array/prototype/reverse/length-exceeding-integer-limit-with-proxy.js: >- default: 'Test262Error: Expected a StopReverse but got a Test262Error' >- strict mode: 'Test262Error: Expected a StopReverse but got a Test262Error' >-test/built-ins/Array/prototype/slice/S15.4.4.10_A3_T1.js: >- default: 'Test262Error: #1.1: var obj = {}; obj.slice = Array.prototype.slice; obj[0] = "x"; obj[4294967295] = "y"; obj.length = 4294967296; var arr = obj.slice(0,4294967296); lead to throwing exception. Exception is instance of RangeError. Actual: exception is Test262Error: #1: var obj = {}; obj.slice = Array.prototype.slice; obj[0] = "x"; obj[4294967295] = "y"; obj.length = 4294967296; var arr = obj.slice(0,4294967296); lead to throwing exception.' >- strict mode: 'Test262Error: #1.1: var obj = {}; obj.slice = Array.prototype.slice; obj[0] = "x"; obj[4294967295] = "y"; obj.length = 4294967296; var arr = obj.slice(0,4294967296); lead to throwing exception. Exception is instance of RangeError. Actual: exception is Test262Error: #1: var obj = {}; obj.slice = Array.prototype.slice; obj[0] = "x"; obj[4294967295] = "y"; obj.length = 4294967296; var arr = obj.slice(0,4294967296); lead to throwing exception.' >-test/built-ins/Array/prototype/slice/S15.4.4.10_A3_T2.js: >- default: 'Test262Error: #1.1: var obj = {}; obj.slice = Array.prototype.slice; obj[0] = "x"; obj[4294967296] = "y"; obj.length = 4294967297; var arr = obj.slice(0,4294967297); lead to throwing exception. Exception is instance of RangeError. Actual: exception is Test262Error: #1: var obj = {}; obj.slice = Array.prototype.slice; obj[0] = "x"; obj[4294967296] = "y"; obj.length = 4294967297; var arr = obj.slice(0,4294967297); lead to throwing exception.' >- strict mode: 'Test262Error: #1.1: var obj = {}; obj.slice = Array.prototype.slice; obj[0] = "x"; obj[4294967296] = "y"; obj.length = 4294967297; var arr = obj.slice(0,4294967297); lead to throwing exception. Exception is instance of RangeError. Actual: exception is Test262Error: #1: var obj = {}; obj.slice = Array.prototype.slice; obj[0] = "x"; obj[4294967296] = "y"; obj.length = 4294967297; var arr = obj.slice(0,4294967297); lead to throwing exception.' >-test/built-ins/Array/prototype/slice/create-non-array-invalid-len.js: >- default: 'Test262Error: Expected a RangeError to be thrown but no exception was thrown at all' >- strict mode: 'Test262Error: Expected a RangeError to be thrown but no exception was thrown at all' >-test/built-ins/Array/prototype/slice/create-proto-from-ctor-realm-non-array.js: >- default: 'Test262Error: Expected SameValue(ëû, ë[object Object]û) to be true' >- strict mode: 'Test262Error: Expected SameValue(ëû, ë[object Object]û) to be true' >-test/built-ins/Array/prototype/slice/create-proxied-array-invalid-len.js: >- default: 'Test262Error: Expected a RangeError to be thrown but no exception was thrown at all' >- strict mode: 'Test262Error: Expected a RangeError to be thrown but no exception was thrown at all' >-test/built-ins/Array/prototype/slice/length-exceeding-integer-limit-proxied-array.js: >- default: 'Test262Error: Expected [] and [9007199254740989, 9007199254740990] to have the same contents. slice(9007199254740989)' >- strict mode: 'Test262Error: Expected [] and [9007199254740989, 9007199254740990] to have the same contents. slice(9007199254740989)' >-test/built-ins/Array/prototype/slice/length-exceeding-integer-limit.js: >- default: 'Test262Error: Expected [] and [9007199254740989, 9007199254740990] to have the same contents. slice(9007199254740989)' >- strict mode: 'Test262Error: Expected [] and [9007199254740989, 9007199254740990] to have the same contents. slice(9007199254740989)' >-test/built-ins/Array/prototype/sort/S15.4.4.11_A4_T3.js: >- default: 'Test262Error: #3: var obj = {}; obj.sort = Array.prototype.sort; obj[0] = "z"; obj[1] = "y"; obj[2] = "x"; obj.length = -4294967294; obj.sort(); obj[0] === "z". Actual: y' >- strict mode: 'Test262Error: #3: var obj = {}; obj.sort = Array.prototype.sort; obj[0] = "z"; obj[1] = "y"; obj[2] = "x"; obj.length = -4294967294; obj.sort(); obj[0] === "z". Actual: y' >-test/built-ins/Array/prototype/sort/comparefn-nonfunction-call-throws.js: >- default: 'Test262Error: sample.sort(null); Expected a TypeError to be thrown but no exception was thrown at all' >- strict mode: 'Test262Error: sample.sort(null); Expected a TypeError to be thrown but no exception was thrown at all' >-test/built-ins/Array/prototype/splice/S15.4.4.12_A3_T1.js: >- default: 'Test262Error: #1: var obj = {}; obj.splice = Array.prototype.splice; obj[0] = "x"; obj[4294967295] = "y"; obj.length = 4294967296; var arr = obj.splice(4294967295,1); arr.length === 1. Actual: 0' >- strict mode: 'Test262Error: #1: var obj = {}; obj.splice = Array.prototype.splice; obj[0] = "x"; obj[4294967295] = "y"; obj.length = 4294967296; var arr = obj.splice(4294967295,1); arr.length === 1. Actual: 0' >-test/built-ins/Array/prototype/splice/clamps-length-to-integer-limit.js: >- default: 'Test262Error: Length is 2**53 - 1 Expected SameValue(ë4294967295û, ë9007199254740991û) to be true' >- strict mode: 'Test262Error: Length is 2**53 - 1 Expected SameValue(ë4294967295û, ë9007199254740991û) to be true' >-test/built-ins/Array/prototype/splice/create-non-array-invalid-len.js: >- default: 'Test262Error: Expected a RangeError to be thrown but no exception was thrown at all' >- strict mode: 'Test262Error: Expected a RangeError to be thrown but no exception was thrown at all' >-test/built-ins/Array/prototype/splice/create-proto-from-ctor-realm-non-array.js: >- default: 'Test262Error: Expected SameValue(ëû, ë[object Object]û) to be true' >- strict mode: 'Test262Error: Expected SameValue(ëû, ë[object Object]û) to be true' >-test/built-ins/Array/prototype/splice/create-proxy.js: >- default: 'TypeError: Attempted to assign to readonly property.' >- strict mode: 'TypeError: Attempted to assign to readonly property.' >-test/built-ins/Array/prototype/splice/create-species-length-exceeding-integer-limit.js: >- default: 'Test262Error: Expected a StopSplice but got a Test262Error' >- strict mode: 'Test262Error: Expected a StopSplice but got a Test262Error' >-test/built-ins/Array/prototype/splice/create-species-undef-invalid-len.js: >- default: 'Test262Error: Expected a RangeError to be thrown but no exception was thrown at all' >- strict mode: 'Test262Error: Expected a RangeError to be thrown but no exception was thrown at all' >-test/built-ins/Array/prototype/splice/length-and-deleteCount-exceeding-integer-limit.js: >- default: "Test262Error: Expected [] and [9007199254740989, 9007199254740990] to have the same contents. arrayLike['9007199254740989'] and arrayLike['9007199254740990'] are removed" >- strict mode: "Test262Error: Expected [] and [9007199254740989, 9007199254740990] to have the same contents. arrayLike['9007199254740989'] and arrayLike['9007199254740990'] are removed" >-test/built-ins/Array/prototype/splice/length-exceeding-integer-limit-shrink-array.js: >- default: "Test262Error: Expected [] and [9007199254740987] to have the same contents. arrayLike['9007199254740987'] is removed" >- strict mode: "Test262Error: Expected [] and [9007199254740987] to have the same contents. arrayLike['9007199254740987'] is removed" >-test/built-ins/Array/prototype/splice/length-near-integer-limit-grow-array.js: >- default: 'Test262Error: New length is 2**53 - 1 Expected SameValue(ë4294967295û, ë9007199254740991û) to be true' >- strict mode: 'Test262Error: New length is 2**53 - 1 Expected SameValue(ë4294967295û, ë9007199254740991û) to be true' >-test/built-ins/Array/prototype/splice/throws-if-integer-limit-exceeded.js: >- default: 'Test262Error: Length is 2**53 - 1 Expected a TypeError but got a Error' >- strict mode: 'Test262Error: Length is 2**53 - 1 Expected a TypeError but got a Error' >-test/built-ins/Array/prototype/unshift/clamps-to-integer-limit.js: >- default: 'Test262Error: Length is 2**53 - 1 Expected SameValue(ë4294967295û, ë9007199254740991û) to be true' >- strict mode: 'Test262Error: Length is 2**53 - 1 Expected SameValue(ë4294967295û, ë9007199254740991û) to be true' >-test/built-ins/ArrayBuffer/proto-from-ctor-realm.js: >- default: 'Test262Error: Expected SameValue(ë[object ArrayBuffer]û, ë[object ArrayBuffer]û) to be true' >- strict mode: 'Test262Error: Expected SameValue(ë[object ArrayBuffer]û, ë[object ArrayBuffer]û) to be true' >-test/built-ins/ArrayBuffer/prototype/byteLength/detached-buffer.js: >- default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >- strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >-test/built-ins/ArrayBuffer/prototype/slice/end-default-if-undefined.js: >- default: 'Test262Error: Expected SameValue(ë0û, ë2û) to be true' >- strict mode: 'Test262Error: Expected SameValue(ë0û, ë2û) to be true' >-test/built-ins/ArrayBuffer/prototype/slice/end-exceeds-length.js: >- default: 'Test262Error: slice(2, 0x100000000) Expected SameValue(ë0û, ë6û) to be true' >- strict mode: 'Test262Error: slice(2, 0x100000000) Expected SameValue(ë0û, ë6û) to be true' >-test/built-ins/ArrayBuffer/prototype/slice/species-constructor-is-undefined.js: >- default: 'TypeError: Slice requires at least one argument.' >- strict mode: 'TypeError: Slice requires at least one argument.' >-test/built-ins/ArrayBuffer/prototype/slice/species-is-null.js: >- default: 'TypeError: Slice requires at least one argument.' >- strict mode: 'TypeError: Slice requires at least one argument.' >-test/built-ins/ArrayBuffer/prototype/slice/species-is-undefined.js: >- default: 'TypeError: Slice requires at least one argument.' >- strict mode: 'TypeError: Slice requires at least one argument.' >-test/built-ins/ArrayBuffer/prototype/slice/species-returns-larger-arraybuffer.js: >- default: 'TypeError: Slice requires at least one argument.' >- strict mode: 'TypeError: Slice requires at least one argument.' >-test/built-ins/ArrayBuffer/prototype/slice/species.js: >- default: 'TypeError: Slice requires at least one argument.' >- strict mode: 'TypeError: Slice requires at least one argument.' >-test/built-ins/ArrayBuffer/prototype/slice/start-default-if-absent.js: >- default: 'TypeError: Slice requires at least one argument.' >- strict mode: 'TypeError: Slice requires at least one argument.' >-test/built-ins/ArrayBuffer/prototype/slice/start-exceeds-length.js: >- default: 'Test262Error: slice(0x100000000, 7) Expected SameValue(ë7û, ë0û) to be true' >- strict mode: 'Test262Error: slice(0x100000000, 7) Expected SameValue(ë7û, ë0û) to be true' >-test/built-ins/ArrayIteratorPrototype/next/detach-typedarray-in-progress.js: >- default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all (Testing with Float64Array.)' >- strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all (Testing with Float64Array.)' >-test/built-ins/AsyncGeneratorFunction/has-instance.js: >- default: 'SyntaxError: Unexpected end of script' >- strict mode: 'SyntaxError: Unexpected end of script' >-test/built-ins/AsyncGeneratorFunction/instance-await-expr-in-param.js: >- default: "SyntaxError: Unexpected token '*'. Expected a parenthesis for argument list." >- strict mode: "SyntaxError: Unexpected token '*'. Expected a parenthesis for argument list." >-test/built-ins/AsyncGeneratorFunction/instance-construct-throws.js: >- default: 'SyntaxError: Unexpected end of script' >- strict mode: 'SyntaxError: Unexpected end of script' >-test/built-ins/AsyncGeneratorFunction/instance-length.js: >- default: 'SyntaxError: Unexpected end of script' >- strict mode: 'SyntaxError: Unexpected end of script' >-test/built-ins/AsyncGeneratorFunction/instance-name.js: >- default: 'SyntaxError: Unexpected end of script' >- strict mode: 'SyntaxError: Unexpected end of script' >-test/built-ins/AsyncGeneratorFunction/instance-prototype.js: >- default: 'SyntaxError: Unexpected end of script' >- strict mode: 'SyntaxError: Unexpected end of script' >-test/built-ins/AsyncGeneratorFunction/instance-yield-expr-in-param.js: >- default: "SyntaxError: Unexpected token '*'. Expected a parenthesis for argument list." >- strict mode: "SyntaxError: Unexpected token '*'. Expected a parenthesis for argument list." >-test/built-ins/AsyncGeneratorFunction/invoked-as-constructor-no-arguments.js: >- default: 'SyntaxError: Unexpected end of script' >- strict mode: 'SyntaxError: Unexpected end of script' >-test/built-ins/AsyncGeneratorFunction/invoked-as-function-multiple-arguments.js: >- default: "SyntaxError: Unexpected token '*'. Expected a parenthesis for argument list." >- strict mode: "SyntaxError: Unexpected token '*'. Expected a parenthesis for argument list." >-test/built-ins/AsyncGeneratorFunction/invoked-as-function-no-arguments.js: >- default: 'SyntaxError: Unexpected end of script' >- strict mode: 'SyntaxError: Unexpected end of script' >-test/built-ins/AsyncGeneratorFunction/invoked-as-function-single-argument.js: >- default: "SyntaxError: Unexpected token '*'. Expected a parenthesis for argument list." >- strict mode: "SyntaxError: Unexpected token '*'. Expected a parenthesis for argument list." >-test/built-ins/Boolean/proto-from-ctor-realm.js: >- default: 'Test262Error: Expected SameValue(ëfalseû, ëfalseû) to be true' >- strict mode: 'Test262Error: Expected SameValue(ëfalseû, ëfalseû) to be true' >-test/built-ins/DataView/custom-proto-access-detaches-buffer.js: >- default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >- strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >-test/built-ins/DataView/detached-buffer.js: >- default: 'Test262Error: throws if buffer is detached Expected a TypeError to be thrown but no exception was thrown at all' >- strict mode: 'Test262Error: throws if buffer is detached Expected a TypeError to be thrown but no exception was thrown at all' >-test/built-ins/DataView/length.js: >- default: 'Test262Error: descriptor value should be 1' >- strict mode: 'Test262Error: descriptor value should be 1' >-test/built-ins/DataView/proto-from-ctor-realm.js: >- default: 'Test262Error: Expected SameValue(ë[object DataView]û, ë[object DataView]û) to be true' >- strict mode: 'Test262Error: Expected SameValue(ë[object DataView]û, ë[object DataView]û) to be true' >-test/built-ins/DataView/prototype/byteLength/detached-buffer.js: >- default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >- strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >-test/built-ins/DataView/prototype/byteOffset/detached-buffer.js: >- default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >- strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >-test/built-ins/DataView/prototype/getFloat32/detached-buffer-before-outofrange-byteoffset.js: >- default: 'Test262Error: 13 Expected a TypeError but got a RangeError' >- strict mode: 'Test262Error: 13 Expected a TypeError but got a RangeError' >-test/built-ins/DataView/prototype/getFloat32/detached-buffer.js: >- default: 'Test262Error: Expected a TypeError but got a RangeError' >- strict mode: 'Test262Error: Expected a TypeError but got a RangeError' >-test/built-ins/DataView/prototype/getFloat64/detached-buffer-before-outofrange-byteoffset.js: >- default: 'Test262Error: 13 Expected a TypeError but got a RangeError' >- strict mode: 'Test262Error: 13 Expected a TypeError but got a RangeError' >-test/built-ins/DataView/prototype/getFloat64/detached-buffer.js: >- default: 'Test262Error: Expected a TypeError but got a RangeError' >- strict mode: 'Test262Error: Expected a TypeError but got a RangeError' >-test/built-ins/DataView/prototype/getInt16/detached-buffer-before-outofrange-byteoffset.js: >- default: 'Test262Error: 13 Expected a TypeError but got a RangeError' >- strict mode: 'Test262Error: 13 Expected a TypeError but got a RangeError' >-test/built-ins/DataView/prototype/getInt16/detached-buffer.js: >- default: 'Test262Error: Expected a TypeError but got a RangeError' >- strict mode: 'Test262Error: Expected a TypeError but got a RangeError' >-test/built-ins/DataView/prototype/getInt32/detached-buffer-before-outofrange-byteoffset.js: >- default: 'Test262Error: 13 Expected a TypeError but got a RangeError' >- strict mode: 'Test262Error: 13 Expected a TypeError but got a RangeError' >-test/built-ins/DataView/prototype/getInt32/detached-buffer.js: >- default: 'Test262Error: Expected a TypeError but got a RangeError' >- strict mode: 'Test262Error: Expected a TypeError but got a RangeError' >-test/built-ins/DataView/prototype/getInt8/detached-buffer-before-outofrange-byteoffset.js: >- default: 'Test262Error: 13 Expected a TypeError but got a RangeError' >- strict mode: 'Test262Error: 13 Expected a TypeError but got a RangeError' >-test/built-ins/DataView/prototype/getInt8/detached-buffer.js: >- default: 'Test262Error: Expected a TypeError but got a RangeError' >- strict mode: 'Test262Error: Expected a TypeError but got a RangeError' >-test/built-ins/DataView/prototype/getUint16/detached-buffer-before-outofrange-byteoffset.js: >- default: 'Test262Error: 13 Expected a TypeError but got a RangeError' >- strict mode: 'Test262Error: 13 Expected a TypeError but got a RangeError' >-test/built-ins/DataView/prototype/getUint16/detached-buffer.js: >- default: 'Test262Error: Expected a TypeError but got a RangeError' >- strict mode: 'Test262Error: Expected a TypeError but got a RangeError' >-test/built-ins/DataView/prototype/getUint32/detached-buffer-before-outofrange-byteoffset.js: >- default: 'Test262Error: 13 Expected a TypeError but got a RangeError' >- strict mode: 'Test262Error: 13 Expected a TypeError but got a RangeError' >-test/built-ins/DataView/prototype/getUint32/detached-buffer.js: >- default: 'Test262Error: Expected a TypeError but got a RangeError' >- strict mode: 'Test262Error: Expected a TypeError but got a RangeError' >-test/built-ins/DataView/prototype/getUint8/detached-buffer-before-outofrange-byteoffset.js: >- default: 'Test262Error: 13 Expected a TypeError but got a RangeError' >- strict mode: 'Test262Error: 13 Expected a TypeError but got a RangeError' >-test/built-ins/DataView/prototype/getUint8/detached-buffer.js: >- default: 'Test262Error: Expected a TypeError but got a RangeError' >- strict mode: 'Test262Error: Expected a TypeError but got a RangeError' >-test/built-ins/DataView/prototype/setFloat32/detached-buffer-before-outofrange-byteoffset.js: >- default: 'Test262Error: 13 Expected a TypeError but got a RangeError' >- strict mode: 'Test262Error: 13 Expected a TypeError but got a RangeError' >-test/built-ins/DataView/prototype/setFloat32/detached-buffer.js: >- default: 'Test262Error: Expected a TypeError but got a RangeError' >- strict mode: 'Test262Error: Expected a TypeError but got a RangeError' >-test/built-ins/DataView/prototype/setFloat64/detached-buffer-before-outofrange-byteoffset.js: >- default: 'Test262Error: 13 Expected a TypeError but got a RangeError' >- strict mode: 'Test262Error: 13 Expected a TypeError but got a RangeError' >-test/built-ins/DataView/prototype/setFloat64/detached-buffer.js: >- default: 'Test262Error: Expected a TypeError but got a RangeError' >- strict mode: 'Test262Error: Expected a TypeError but got a RangeError' >-test/built-ins/DataView/prototype/setInt16/detached-buffer-before-outofrange-byteoffset.js: >- default: 'Test262Error: 13 Expected a TypeError but got a RangeError' >- strict mode: 'Test262Error: 13 Expected a TypeError but got a RangeError' >-test/built-ins/DataView/prototype/setInt16/detached-buffer.js: >- default: 'Test262Error: Expected a TypeError but got a RangeError' >- strict mode: 'Test262Error: Expected a TypeError but got a RangeError' >-test/built-ins/DataView/prototype/setInt32/detached-buffer-before-outofrange-byteoffset.js: >- default: 'Test262Error: 13 Expected a TypeError but got a RangeError' >- strict mode: 'Test262Error: 13 Expected a TypeError but got a RangeError' >-test/built-ins/DataView/prototype/setInt32/detached-buffer.js: >- default: 'Test262Error: Expected a TypeError but got a RangeError' >- strict mode: 'Test262Error: Expected a TypeError but got a RangeError' >-test/built-ins/DataView/prototype/setInt8/detached-buffer-before-outofrange-byteoffset.js: >- default: 'Test262Error: 13 Expected a TypeError but got a RangeError' >- strict mode: 'Test262Error: 13 Expected a TypeError but got a RangeError' >-test/built-ins/DataView/prototype/setInt8/detached-buffer.js: >- default: 'Test262Error: Expected a TypeError but got a RangeError' >- strict mode: 'Test262Error: Expected a TypeError but got a RangeError' >-test/built-ins/DataView/prototype/setUint16/detached-buffer-before-outofrange-byteoffset.js: >- default: 'Test262Error: 13 Expected a TypeError but got a RangeError' >- strict mode: 'Test262Error: 13 Expected a TypeError but got a RangeError' >-test/built-ins/DataView/prototype/setUint16/detached-buffer.js: >- default: 'Test262Error: Expected a TypeError but got a RangeError' >- strict mode: 'Test262Error: Expected a TypeError but got a RangeError' >-test/built-ins/DataView/prototype/setUint32/detached-buffer-before-outofrange-byteoffset.js: >- default: 'Test262Error: 13 Expected a TypeError but got a RangeError' >- strict mode: 'Test262Error: 13 Expected a TypeError but got a RangeError' >-test/built-ins/DataView/prototype/setUint32/detached-buffer.js: >- default: 'Test262Error: Expected a TypeError but got a RangeError' >- strict mode: 'Test262Error: Expected a TypeError but got a RangeError' >-test/built-ins/DataView/prototype/setUint8/detached-buffer-before-outofrange-byteoffset.js: >- default: 'Test262Error: 13 Expected a TypeError but got a RangeError' >- strict mode: 'Test262Error: 13 Expected a TypeError but got a RangeError' >-test/built-ins/DataView/prototype/setUint8/detached-buffer.js: >- default: 'Test262Error: Expected a TypeError but got a RangeError' >- strict mode: 'Test262Error: Expected a TypeError but got a RangeError' >-test/built-ins/Date/TimeClip_negative_zero.js: >- default: 'Test262Error: TimeClip does not return negative zero Expected SameValue(ë0û, ë0û) to be true' >- strict mode: 'Test262Error: TimeClip does not return negative zero Expected SameValue(ë0û, ë0û) to be true' >-test/built-ins/Date/UTC/return-value.js: >- default: 'Test262Error: 1970 Expected SameValue(ëNaNû, ë0û) to be true' >- strict mode: 'Test262Error: 1970 Expected SameValue(ëNaNû, ë0û) to be true' >-test/built-ins/Date/proto-from-ctor-realm-one.js: >- default: 'TypeError: Type error' >- strict mode: 'TypeError: Type error' >-test/built-ins/Date/proto-from-ctor-realm-two.js: >- default: 'TypeError: Type error' >- strict mode: 'TypeError: Type error' >-test/built-ins/Date/proto-from-ctor-realm-zero.js: >- default: 'TypeError: Type error' >- strict mode: 'TypeError: Type error' >-test/built-ins/Date/prototype/getTime/this-value-valid-date.js: >- default: 'Test262Error: -0 Expected SameValue(ë0û, ë0û) to be true' >- strict mode: 'Test262Error: -0 Expected SameValue(ë0û, ë0û) to be true' >-test/built-ins/Error/proto-from-ctor-realm.js: >- default: 'Test262Error: Expected SameValue(ëErrorû, ëErrorû) to be true' >- strict mode: 'Test262Error: Expected SameValue(ëErrorû, ëErrorû) to be true' >-test/built-ins/Function/StrictFunction_restricted-properties.js: >- default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >-test/built-ins/Function/call-bind-this-realm-undef.js: >- default: 'Test262Error: implicit undefined Expected SameValue(ë[object global]û, ë[object Undefined]û) to be true' >- strict mode: 'Test262Error: implicit undefined Expected SameValue(ë[object global]û, ë[object Undefined]û) to be true' >-test/built-ins/Function/internals/Call/class-ctor-realm.js: >- default: 'Test262Error: Expected a TypeError but got a TypeError' >- strict mode: 'Test262Error: Expected a TypeError but got a TypeError' >-test/built-ins/Function/internals/Construct/base-ctor-revoked-proxy-realm.js: >- default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >- strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >-test/built-ins/Function/internals/Construct/base-ctor-revoked-proxy.js: >- default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >- strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >-test/built-ins/Function/internals/Construct/derived-return-val-realm.js: >- default: 'Test262Error: Expected a TypeError but got a TypeError' >- strict mode: 'Test262Error: Expected a TypeError but got a TypeError' >-test/built-ins/Function/internals/Construct/derived-this-uninitialized-realm.js: >- default: 'Test262Error: Expected a ReferenceError but got a ReferenceError' >- strict mode: 'Test262Error: Expected a ReferenceError but got a ReferenceError' >-test/built-ins/Function/proto-from-ctor-realm.js: >- default: 'Test262Error: Expected SameValue(ëfunction () {' >- strict mode: 'Test262Error: Expected SameValue(ëfunction () {' >-test/built-ins/Function/prototype/bind/proto-from-ctor-realm.js: >- default: 'Test262Error: Expected SameValue(ë[object Object]û, ë[object Object]û) to be true' >- strict mode: 'Test262Error: Expected SameValue(ë[object Object]û, ë[object Object]û) to be true' >-test/built-ins/Function/prototype/restricted-property-arguments.js: >- default: "ReferenceError: Can't find variable: verifyNotEnumerable" >- strict mode: "ReferenceError: Can't find variable: verifyNotEnumerable" >-test/built-ins/Function/prototype/restricted-property-caller.js: >- default: "ReferenceError: Can't find variable: verifyNotEnumerable" >- strict mode: "ReferenceError: Can't find variable: verifyNotEnumerable" >-test/built-ins/Function/prototype/toString/AsyncFunction.js: >- default: "SyntaxError: Unexpected token '}'. Expected a ')' or a ',' after a parameter declaration." >- strict mode: "SyntaxError: Unexpected token '}'. Expected a ')' or a ',' after a parameter declaration." >-test/built-ins/Function/prototype/toString/AsyncGenerator.js: >- default: "SyntaxError: Unexpected token '*'. Expected a parenthesis for argument list." >- strict mode: "SyntaxError: Unexpected token '*'. Expected a parenthesis for argument list." >-test/built-ins/Function/prototype/toString/Function.js: >- default: "SyntaxError: Unexpected token '}'. Expected a ')' or a ',' after a parameter declaration." >- strict mode: "SyntaxError: Unexpected token '}'. Expected a ')' or a ',' after a parameter declaration." >-test/built-ins/Function/prototype/toString/GeneratorFunction.js: >- default: "SyntaxError: Unexpected token '}'. Expected a ')' or a ',' after a parameter declaration." >- strict mode: "SyntaxError: Unexpected token '}'. Expected a ')' or a ',' after a parameter declaration." >-test/built-ins/Function/prototype/toString/async-arrow-function.js: >- default: 'Test262Error: looks pretty much like a NativeFunction' >- strict mode: 'Test262Error: looks pretty much like a NativeFunction' >-test/built-ins/Function/prototype/toString/async-function-declaration.js: >- default: 'Test262Error: looks pretty much like a NativeFunction' >- strict mode: 'Test262Error: looks pretty much like a NativeFunction' >-test/built-ins/Function/prototype/toString/async-function-expression.js: >- default: 'Test262Error: looks pretty much like a NativeFunction' >- strict mode: 'Test262Error: looks pretty much like a NativeFunction' >-test/built-ins/Function/prototype/toString/async-generator-declaration.js: >- default: 'Test262Error: looks pretty much like a NativeFunction' >- strict mode: 'Test262Error: looks pretty much like a NativeFunction' >-test/built-ins/Function/prototype/toString/async-generator-expression.js: >- default: 'Test262Error: looks pretty much like a NativeFunction' >- strict mode: 'Test262Error: looks pretty much like a NativeFunction' >-test/built-ins/Function/prototype/toString/async-generator-method-class-expression-static.js: >- default: 'Test262Error: looks pretty much like a NativeFunction' >- strict mode: 'Test262Error: looks pretty much like a NativeFunction' >-test/built-ins/Function/prototype/toString/async-generator-method-class-expression.js: >- default: 'Test262Error: looks pretty much like a NativeFunction' >- strict mode: 'Test262Error: looks pretty much like a NativeFunction' >-test/built-ins/Function/prototype/toString/async-generator-method-class-statement-static.js: >- default: 'Test262Error: looks pretty much like a NativeFunction' >- strict mode: 'Test262Error: looks pretty much like a NativeFunction' >-test/built-ins/Function/prototype/toString/async-generator-method-class-statement.js: >- default: 'Test262Error: looks pretty much like a NativeFunction' >- strict mode: 'Test262Error: looks pretty much like a NativeFunction' >-test/built-ins/Function/prototype/toString/async-generator-method-object.js: >- default: 'Test262Error: looks pretty much like a NativeFunction' >- strict mode: 'Test262Error: looks pretty much like a NativeFunction' >-test/built-ins/Function/prototype/toString/async-method-class-expression-static.js: >- default: 'Test262Error: looks pretty much like a NativeFunction' >- strict mode: 'Test262Error: looks pretty much like a NativeFunction' >-test/built-ins/Function/prototype/toString/async-method-class-expression.js: >- default: 'Test262Error: looks pretty much like a NativeFunction' >- strict mode: 'Test262Error: looks pretty much like a NativeFunction' >-test/built-ins/Function/prototype/toString/async-method-class-statement-static.js: >- default: 'Test262Error: looks pretty much like a NativeFunction' >- strict mode: 'Test262Error: looks pretty much like a NativeFunction' >-test/built-ins/Function/prototype/toString/async-method-class-statement.js: >- default: 'Test262Error: looks pretty much like a NativeFunction' >- strict mode: 'Test262Error: looks pretty much like a NativeFunction' >-test/built-ins/Function/prototype/toString/async-method-object.js: >- default: 'Test262Error: looks pretty much like a NativeFunction' >- strict mode: 'Test262Error: looks pretty much like a NativeFunction' >-test/built-ins/Function/prototype/toString/function-declaration-non-simple-parameter-list.js: >- default: 'Test262Error: looks pretty much like a NativeFunction' >- strict mode: 'Test262Error: looks pretty much like a NativeFunction' >-test/built-ins/Function/prototype/toString/function-declaration.js: >- default: 'Test262Error: looks pretty much like a NativeFunction' >- strict mode: 'Test262Error: looks pretty much like a NativeFunction' >-test/built-ins/Function/prototype/toString/function-expression.js: >- default: 'Test262Error: looks pretty much like a NativeFunction' >- strict mode: 'Test262Error: looks pretty much like a NativeFunction' >-test/built-ins/Function/prototype/toString/generator-function-declaration.js: >- default: 'Test262Error: looks pretty much like a NativeFunction' >- strict mode: 'Test262Error: looks pretty much like a NativeFunction' >-test/built-ins/Function/prototype/toString/generator-function-expression.js: >- default: 'Test262Error: looks pretty much like a NativeFunction' >- strict mode: 'Test262Error: looks pretty much like a NativeFunction' >-test/built-ins/Function/prototype/toString/generator-method.js: >- default: 'Test262Error: looks pretty much like a NativeFunction' >- strict mode: 'Test262Error: looks pretty much like a NativeFunction' >-test/built-ins/Function/prototype/toString/getter-class-expression-static.js: >- default: 'Test262Error: looks pretty much like a NativeFunction' >- strict mode: 'Test262Error: looks pretty much like a NativeFunction' >-test/built-ins/Function/prototype/toString/getter-class-expression.js: >- default: 'Test262Error: looks pretty much like a NativeFunction' >- strict mode: 'Test262Error: looks pretty much like a NativeFunction' >-test/built-ins/Function/prototype/toString/getter-class-statement-static.js: >- default: 'Test262Error: looks pretty much like a NativeFunction' >- strict mode: 'Test262Error: looks pretty much like a NativeFunction' >-test/built-ins/Function/prototype/toString/getter-class-statement.js: >- default: 'Test262Error: looks pretty much like a NativeFunction' >- strict mode: 'Test262Error: looks pretty much like a NativeFunction' >-test/built-ins/Function/prototype/toString/getter-object.js: >- default: 'Test262Error: looks pretty much like a NativeFunction' >- strict mode: 'Test262Error: looks pretty much like a NativeFunction' >-test/built-ins/Function/prototype/toString/line-terminator-normalisation-CR-LF.js: >- default: "ReferenceError: Can't find variable: assertToStringOrNativeFunction" >- strict mode: "ReferenceError: Can't find variable: assertToStringOrNativeFunction" >-test/built-ins/Function/prototype/toString/line-terminator-normalisation-CR.js: >- default: "ReferenceError: Can't find variable: assertToStringOrNativeFunction" >- strict mode: "ReferenceError: Can't find variable: assertToStringOrNativeFunction" >-test/built-ins/Function/prototype/toString/line-terminator-normalisation-LF.js: >- default: 'Test262Error: looks pretty much like a NativeFunction' >- strict mode: 'Test262Error: looks pretty much like a NativeFunction' >-test/built-ins/Function/prototype/toString/method-class-expression-static.js: >- default: 'Test262Error: looks pretty much like a NativeFunction' >- strict mode: 'Test262Error: looks pretty much like a NativeFunction' >-test/built-ins/Function/prototype/toString/method-class-expression.js: >- default: 'Test262Error: looks pretty much like a NativeFunction' >- strict mode: 'Test262Error: looks pretty much like a NativeFunction' >-test/built-ins/Function/prototype/toString/method-class-statement-static.js: >- default: 'Test262Error: looks pretty much like a NativeFunction' >- strict mode: 'Test262Error: looks pretty much like a NativeFunction' >-test/built-ins/Function/prototype/toString/method-class-statement.js: >- default: 'Test262Error: looks pretty much like a NativeFunction' >- strict mode: 'Test262Error: looks pretty much like a NativeFunction' >-test/built-ins/Function/prototype/toString/method-computed-property-name.js: >- default: 'Test262Error: looks pretty much like a NativeFunction' >- strict mode: 'Test262Error: looks pretty much like a NativeFunction' >-test/built-ins/Function/prototype/toString/method-object.js: >- default: 'Test262Error: looks pretty much like a NativeFunction' >- strict mode: 'Test262Error: looks pretty much like a NativeFunction' >-test/built-ins/Function/prototype/toString/setter-class-expression-static.js: >- default: 'Test262Error: looks pretty much like a NativeFunction' >- strict mode: 'Test262Error: looks pretty much like a NativeFunction' >-test/built-ins/Function/prototype/toString/setter-class-expression.js: >- default: 'Test262Error: looks pretty much like a NativeFunction' >- strict mode: 'Test262Error: looks pretty much like a NativeFunction' >-test/built-ins/Function/prototype/toString/setter-class-statement-static.js: >- default: 'Test262Error: looks pretty much like a NativeFunction' >- strict mode: 'Test262Error: looks pretty much like a NativeFunction' >-test/built-ins/Function/prototype/toString/setter-class-statement.js: >- default: 'Test262Error: looks pretty much like a NativeFunction' >- strict mode: 'Test262Error: looks pretty much like a NativeFunction' >-test/built-ins/Function/prototype/toString/setter-object.js: >- default: 'Test262Error: looks pretty much like a NativeFunction' >- strict mode: 'Test262Error: looks pretty much like a NativeFunction' >-test/built-ins/Function/prototype/toString/unicode.js: >- default: 'Test262Error: looks pretty much like a NativeFunction' >- strict mode: 'Test262Error: looks pretty much like a NativeFunction' >-test/built-ins/GeneratorFunction/proto-from-ctor-realm.js: >- default: 'TypeError: Type error' >- strict mode: 'TypeError: Type error' >-test/built-ins/JSON/parse/revived-proxy.js: >- default: 'Test262Error: proxy for array Expected SameValue(ëtrueû, ëfalseû) to be true' >- strict mode: 'Test262Error: proxy for array Expected SameValue(ëtrueû, ëfalseû) to be true' >-test/built-ins/JSON/parse/reviver-array-length-coerce-err.js: >- default: 'Test262Error: Expected a Test262Error to be thrown but no exception was thrown at all' >- strict mode: 'Test262Error: Expected a Test262Error to be thrown but no exception was thrown at all' >-test/built-ins/JSON/parse/reviver-array-length-get-err.js: >- default: 'Test262Error: Expected a Test262Error to be thrown but no exception was thrown at all' >- strict mode: 'Test262Error: Expected a Test262Error to be thrown but no exception was thrown at all' >-test/built-ins/JSON/stringify/replacer-proxy-revoked.js: >- default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >- strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >-test/built-ins/Map/proto-from-ctor-realm.js: >- default: 'Test262Error: Expected SameValue(ë[object Map]û, ë[object Map]û) to be true' >- strict mode: 'Test262Error: Expected SameValue(ë[object Map]û, ë[object Map]û) to be true' >-test/built-ins/Math/cbrt/prop-desc.js: >- default: "ReferenceError: Can't find variable: verifyNotEnumerable" >- strict mode: "ReferenceError: Can't find variable: verifyNotEnumerable" >-test/built-ins/Math/round/S15.8.2.15_A7.js: >- default: "Test262Error: #4: '1 / Math.round(0.49999999999999994) !== 1 / 0'" >- strict mode: "Test262Error: #4: '1 / Math.round(0.49999999999999994) !== 1 / 0'" >-test/built-ins/Number/S9.3.1_A2_U180E.js: >- default: 'Test262Error: Number("\u180E") === NaN. Actual: 0 Expected SameValue(ë0û, ëNaNû) to be true' >- strict mode: 'Test262Error: Number("\u180E") === NaN. Actual: 0 Expected SameValue(ë0û, ëNaNû) to be true' >-test/built-ins/Number/S9.3.1_A3_T1_U180E.js: >- default: 'Test262Error: Number("\u180E") === NaN Expected SameValue(ë0û, ëNaNû) to be true' >- strict mode: 'Test262Error: Number("\u180E") === NaN Expected SameValue(ë0û, ëNaNû) to be true' >-test/built-ins/Number/S9.3.1_A3_T2_U180E.js: >- default: 'Test262Error: Number(dynaString("", "á Â")) === NaN Expected SameValue(ë0û, ëNaNû) to be true' >- strict mode: 'Test262Error: Number(dynaString("", "á Â")) === NaN Expected SameValue(ë0û, ëNaNû) to be true' >-test/built-ins/Number/proto-from-ctor-realm.js: >- default: 'Test262Error: Expected SameValue(ë0û, ë0û) to be true' >- strict mode: 'Test262Error: Expected SameValue(ë0û, ë0û) to be true' >-test/built-ins/Number/prototype/toExponential/range.js: >- default: 'RangeError: toExponential() argument must be between 0 and 20' >- strict mode: 'RangeError: toExponential() argument must be between 0 and 20' >-test/built-ins/Number/prototype/toFixed/range.js: >- default: 'RangeError: toFixed() argument must be between 0 and 20' >- strict mode: 'RangeError: toFixed() argument must be between 0 and 20' >-test/built-ins/Number/prototype/toPrecision/range.js: >- default: 'RangeError: toPrecision() argument must be between 1 and 21' >- strict mode: 'RangeError: toPrecision() argument must be between 1 and 21' >-test/built-ins/Object/defineProperties/15.2.3.7-2-15.js: >- default: 'TypeError: Property description must be an object.' >- strict mode: 'TypeError: Property description must be an object.' >-test/built-ins/Object/defineProperties/15.2.3.7-5-a-16.js: >- default: 'TypeError: Property description must be an object.' >- strict mode: 'TypeError: Property description must be an object.' >-test/built-ins/Object/defineProperties/15.2.3.7-5-b-248.js: >- default: 'TypeError: Property description must be an object.' >- strict mode: 'TypeError: Property description must be an object.' >-test/built-ins/Object/defineProperty/15.2.3.6-4-289-1.js: >- default: "ReferenceError: Can't find variable: verifyEqualTo" >- strict mode: "ReferenceError: Can't find variable: verifyEqualTo" >-test/built-ins/Object/internals/DefineOwnProperty/consistent-value-function-arguments.js: >- default: 'Test262Error: Expected SameValue(ënullû, ë[object Arguments]û) to be true' >-test/built-ins/Object/internals/DefineOwnProperty/consistent-value-function-caller.js: >- default: 'Test262Error: Expected SameValue(ënullû, ëfunction g() {' >-test/built-ins/Object/proto-from-ctor.js: >- default: 'Test262Error: Expected SameValue(ë[object Object]û, ë[object Object]û) to be true' >- strict mode: 'Test262Error: Expected SameValue(ë[object Object]û, ë[object Object]û) to be true' >-test/built-ins/Object/prototype/toString/proxy-function.js: >- default: 'Test262Error: function proxy Expected SameValue(ë[object Object]û, ë[object Function]û) to be true' >- strict mode: 'Test262Error: function proxy Expected SameValue(ë[object Object]û, ë[object Function]û) to be true' >-test/built-ins/Promise/all/resolve-element-function-nonconstructor.js: >- default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >- strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >-test/built-ins/Promise/proto-from-ctor-realm.js: >- default: 'Test262Error: Expected SameValue(ë[object Promise]û, ë[object Promise]û) to be true' >- strict mode: 'Test262Error: Expected SameValue(ë[object Promise]û, ë[object Promise]û) to be true' >-test/built-ins/Promise/reject-function-nonconstructor.js: >- default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >- strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >-test/built-ins/Promise/resolve-function-nonconstructor.js: >- default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >- strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >-test/built-ins/Proxy/apply/arguments-realm.js: >- default: 'Test262Error: Expected SameValue(ëfunction Array() {' >- strict mode: 'Test262Error: Expected SameValue(ëfunction Array() {' >-test/built-ins/Proxy/apply/trap-is-not-callable-realm.js: >- default: 'Test262Error: Expected a TypeError but got a TypeError' >- strict mode: 'Test262Error: Expected a TypeError but got a TypeError' >-test/built-ins/Proxy/construct/arguments-realm.js: >- default: 'Test262Error: Expected SameValue(ëfunction Array() {' >- strict mode: 'Test262Error: Expected SameValue(ëfunction Array() {' >-test/built-ins/Proxy/construct/trap-is-not-callable-realm.js: >- default: 'Test262Error: Expected a TypeError but got a TypeError' >- strict mode: 'Test262Error: Expected a TypeError but got a TypeError' >-test/built-ins/Proxy/construct/trap-is-undefined-proto-from-ctor-realm.js: >- default: 'Test262Error: Expected SameValue(ë[object Object]û, ë[object Object]û) to be true' >- strict mode: 'Test262Error: Expected SameValue(ë[object Object]û, ë[object Object]û) to be true' >-test/built-ins/Proxy/create-handler-is-revoked-proxy.js: >- default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >- strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >-test/built-ins/Proxy/ownKeys/return-duplicate-entries-throws.js: >- default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >- strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >-test/built-ins/Proxy/ownKeys/return-duplicate-symbol-entries-throws.js: >- default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >- strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >-test/built-ins/RegExp/S15.10.2.12_A2_T1.js: >- default: 'Test262Error: #6: Error matching character class S between character 1800 and 1bff' >- strict mode: 'Test262Error: #6: Error matching character class S between character 1800 and 1bff' >-test/built-ins/RegExp/lookBehind/alternations.js: >- default: 'SyntaxError: Invalid regular expression: invalid group specifier name' >- strict mode: 'SyntaxError: Invalid regular expression: invalid group specifier name' >-test/built-ins/RegExp/lookBehind/back-references-to-captures.js: >- default: 'SyntaxError: Invalid regular expression: invalid group specifier name' >- strict mode: 'SyntaxError: Invalid regular expression: invalid group specifier name' >-test/built-ins/RegExp/lookBehind/back-references.js: >- default: 'SyntaxError: Invalid regular expression: invalid group specifier name' >- strict mode: 'SyntaxError: Invalid regular expression: invalid group specifier name' >-test/built-ins/RegExp/lookBehind/captures-negative.js: >- default: 'SyntaxError: Invalid regular expression: invalid group specifier name' >- strict mode: 'SyntaxError: Invalid regular expression: invalid group specifier name' >-test/built-ins/RegExp/lookBehind/captures.js: >- default: 'SyntaxError: Invalid regular expression: invalid group specifier name' >- strict mode: 'SyntaxError: Invalid regular expression: invalid group specifier name' >-test/built-ins/RegExp/lookBehind/do-not-backtrack.js: >- default: 'SyntaxError: Invalid regular expression: invalid group specifier name' >- strict mode: 'SyntaxError: Invalid regular expression: invalid group specifier name' >-test/built-ins/RegExp/lookBehind/greedy-loop.js: >- default: 'SyntaxError: Invalid regular expression: invalid group specifier name' >- strict mode: 'SyntaxError: Invalid regular expression: invalid group specifier name' >-test/built-ins/RegExp/lookBehind/misc.js: >- default: 'SyntaxError: Invalid regular expression: invalid group specifier name' >- strict mode: 'SyntaxError: Invalid regular expression: invalid group specifier name' >-test/built-ins/RegExp/lookBehind/mutual-recursive.js: >- default: 'SyntaxError: Invalid regular expression: invalid group specifier name' >- strict mode: 'SyntaxError: Invalid regular expression: invalid group specifier name' >-test/built-ins/RegExp/lookBehind/negative.js: >- default: 'SyntaxError: Invalid regular expression: invalid group specifier name' >- strict mode: 'SyntaxError: Invalid regular expression: invalid group specifier name' >-test/built-ins/RegExp/lookBehind/nested-lookaround.js: >- default: 'SyntaxError: Invalid regular expression: invalid group specifier name' >- strict mode: 'SyntaxError: Invalid regular expression: invalid group specifier name' >-test/built-ins/RegExp/lookBehind/simple-fixed-length.js: >- default: 'SyntaxError: Invalid regular expression: invalid group specifier name' >- strict mode: 'SyntaxError: Invalid regular expression: invalid group specifier name' >-test/built-ins/RegExp/lookBehind/sliced-strings.js: >- default: 'SyntaxError: Invalid regular expression: invalid group specifier name' >- strict mode: 'SyntaxError: Invalid regular expression: invalid group specifier name' >-test/built-ins/RegExp/lookBehind/start-of-line.js: >- default: 'SyntaxError: Invalid regular expression: invalid group specifier name' >- strict mode: 'SyntaxError: Invalid regular expression: invalid group specifier name' >-test/built-ins/RegExp/lookBehind/sticky.js: >- default: 'SyntaxError: Invalid regular expression: invalid group specifier name' >- strict mode: 'SyntaxError: Invalid regular expression: invalid group specifier name' >-test/built-ins/RegExp/lookBehind/variable-length.js: >- default: 'SyntaxError: Invalid regular expression: invalid group specifier name' >- strict mode: 'SyntaxError: Invalid regular expression: invalid group specifier name' >-test/built-ins/RegExp/lookBehind/word-boundary.js: >- default: 'SyntaxError: Invalid regular expression: invalid group specifier name' >- strict mode: 'SyntaxError: Invalid regular expression: invalid group specifier name' >-test/built-ins/RegExp/named-groups/functional-replace-global.js: >- default: "TypeError: undefined is not an object (evaluating 'groups.fst')" >- strict mode: "TypeError: undefined is not an object (evaluating 'groups.fst')" >-test/built-ins/RegExp/named-groups/groups-object-subclass-sans.js: >- default: 'Test262Error: Expected SameValue(ëbû, ë$<a>û) to be true' >- strict mode: 'Test262Error: Expected SameValue(ëbû, ë$<a>û) to be true' >-test/built-ins/RegExp/named-groups/groups-object-subclass.js: >- default: 'Test262Error: Expected SameValue(ëbû, ë$<a>û) to be true' >- strict mode: 'Test262Error: Expected SameValue(ëbû, ë$<a>û) to be true' >-test/built-ins/RegExp/named-groups/groups-object-undefined.js: >- default: 'Test262Error: Expected true but got false' >- strict mode: 'Test262Error: Expected true but got false' >-test/built-ins/RegExp/named-groups/groups-object.js: >- default: 'Test262Error: Expected SameValue(ënullû, ë[object Object]û) to be true' >- strict mode: 'Test262Error: Expected SameValue(ënullû, ë[object Object]û) to be true' >-test/built-ins/RegExp/named-groups/lookbehind.js: >- default: 'SyntaxError: Invalid regular expression: invalid group specifier name' >- strict mode: 'SyntaxError: Invalid regular expression: invalid group specifier name' >-test/built-ins/RegExp/named-groups/non-unicode-malformed.js: >- default: 'Test262Error: Expected a SyntaxError to be thrown but no exception was thrown at all' >- strict mode: 'Test262Error: Expected a SyntaxError to be thrown but no exception was thrown at all' >-test/built-ins/RegExp/named-groups/non-unicode-references.js: >- default: "TypeError: null is not an object (evaluating 'b.length')" >- strict mode: "TypeError: null is not an object (evaluating 'b.length')" >-test/built-ins/RegExp/named-groups/string-replace-nocaptures.js: >- default: 'Test262Error: Expected SameValue(ë$<snd>$<fst>cdû, ë$<$<fst>cdû) to be true' >- strict mode: 'Test262Error: Expected SameValue(ë$<snd>$<fst>cdû, ë$<$<fst>cdû) to be true' >-test/built-ins/RegExp/named-groups/unicode-malformed.js: >- default: 'Test262Error: Lone k Expected a SyntaxError to be thrown but no exception was thrown at all' >- strict mode: 'Test262Error: Lone k Expected a SyntaxError to be thrown but no exception was thrown at all' >-test/built-ins/RegExp/named-groups/unicode-property-names.js: >- default: 'SyntaxError: Invalid regular expression: invalid group specifier name' >- strict mode: 'SyntaxError: Invalid regular expression: invalid group specifier name' >-test/built-ins/RegExp/named-groups/unicode-references.js: >- default: 'SyntaxError: Invalid regular expression: invalid backreference for unicode pattern' >- strict mode: 'SyntaxError: Invalid regular expression: invalid backreference for unicode pattern' >-test/built-ins/RegExp/property-escapes/character-class.js: >- default: 'Test262Error: Function: /[\p{Hex}-\uFFFF]/u Expected a SyntaxError to be thrown but no exception was thrown at all' >- strict mode: 'Test262Error: Function: /[\p{Hex}-\uFFFF]/u Expected a SyntaxError to be thrown but no exception was thrown at all' >-test/built-ins/RegExp/proto-from-ctor-realm.js: >- default: 'Test262Error: Expected SameValue(ë/(?:)/û, ë/(?:)/û) to be true' >- strict mode: 'Test262Error: Expected SameValue(ë/(?:)/û, ë/(?:)/û) to be true' >-test/built-ins/RegExp/prototype/Symbol.match/builtin-infer-unicode.js: >- default: 'Test262Error: Expected SameValue(ëüÂû, ënullû) to be true' >- strict mode: 'Test262Error: Expected SameValue(ëüÂû, ënullû) to be true' >-test/built-ins/RegExp/prototype/Symbol.replace/result-coerce-capture.js: >- default: 'Test262Error: Expected SameValue(ëû, ëfoo[toString value]barû) to be true' >- strict mode: 'Test262Error: Expected SameValue(ëû, ëfoo[toString value]barû) to be true' >-test/built-ins/RegExp/prototype/Symbol.replace/result-coerce-length.js: >- default: 'Test262Error: Expected SameValue(ëû, ëfoobar$3û) to be true' >- strict mode: 'Test262Error: Expected SameValue(ëû, ëfoobar$3û) to be true' >-test/built-ins/RegExp/prototype/Symbol.replace/result-coerce-matched.js: >- default: 'Test262Error: Expected SameValue(ëû, ëfoo[toString value]barû) to be true' >- strict mode: 'Test262Error: Expected SameValue(ëû, ëfoo[toString value]barû) to be true' >-test/built-ins/RegExp/prototype/Symbol.replace/subst-capture-idx-1.js: >- default: 'Test262Error: Expected SameValue(ëa[cd]eû, ëa[cd$4$0]eû) to be true' >- strict mode: 'Test262Error: Expected SameValue(ëa[cd]eû, ëa[cd$4$0]eû) to be true' >-test/built-ins/RegExp/prototype/Symbol.replace/subst-capture-idx-2.js: >- default: 'Test262Error: Expected SameValue(ëa[cd]eû, ëa[cd$04$00]eû) to be true' >- strict mode: 'Test262Error: Expected SameValue(ëa[cd]eû, ëa[cd$04$00]eû) to be true' >-test/built-ins/RegExp/prototype/Symbol.search/u-lastindex-advance.js: >- default: 'Test262Error: Expected SameValue(ë1û, ë-1û) to be true' >- strict mode: 'Test262Error: Expected SameValue(ë1û, ë-1û) to be true' >-test/built-ins/RegExp/prototype/Symbol.split/u-lastindex-adv-thru-failure.js: >- default: 'Test262Error: Expected SameValue(ë2û, ë1û) to be true' >- strict mode: 'Test262Error: Expected SameValue(ë2û, ë1û) to be true' >-test/built-ins/RegExp/prototype/exec/S15.10.6.2_A5_T3.js: >- default: "TypeError: null is not an object (evaluating '__executed[0]')" >- strict mode: "TypeError: null is not an object (evaluating '__executed[0]')" >-test/built-ins/RegExp/prototype/exec/failure-lastindex-access.js: >- default: 'Test262Error: Expected SameValue(ë0û, ë1û) to be true' >- strict mode: 'Test262Error: Expected SameValue(ë0û, ë1û) to be true' >-test/built-ins/RegExp/prototype/exec/success-lastindex-access.js: >- default: 'Test262Error: Expected SameValue(ë0û, ë1û) to be true' >- strict mode: 'Test262Error: Expected SameValue(ë0û, ë1û) to be true' >-test/built-ins/RegExp/prototype/exec/u-lastindex-adv.js: >- default: 'Test262Error: Expected SameValue(ëüÂû, ënullû) to be true' >- strict mode: 'Test262Error: Expected SameValue(ëüÂû, ënullû) to be true' >-test/built-ins/RegExp/prototype/test/S15.10.6.3_A1_T22.js: >- default: 'Test262Error: #1: __re = /(?:ab|cd)\d?/g; __re.lastIndex=-1; __executed = __re.test("aacd22 "); __executed === true' >- strict mode: 'Test262Error: #1: __re = /(?:ab|cd)\d?/g; __re.lastIndex=-1; __executed = __re.test("aacd22 "); __executed === true' >-test/built-ins/RegExp/u180e.js: >- default: 'Test262Error: \s should not match U+180E Expected SameValue(ë42û, ëá Âû) to be true' >- strict mode: 'Test262Error: \s should not match U+180E Expected SameValue(ë42û, ëá Âû) to be true' >-test/built-ins/RegExp/unicode_restricted_brackets.js: >- default: 'Test262Error: RegExp("]", "u"): Expected a SyntaxError to be thrown but no exception was thrown at all' >- strict mode: 'Test262Error: RegExp("]", "u"): Expected a SyntaxError to be thrown but no exception was thrown at all' >-test/built-ins/RegExp/unicode_restricted_character_class_escape.js: >- default: 'Test262Error: RegExp("[\d-a]", "u"): Expected a SyntaxError to be thrown but no exception was thrown at all' >- strict mode: 'Test262Error: RegExp("[\d-a]", "u"): Expected a SyntaxError to be thrown but no exception was thrown at all' >-test/built-ins/RegExp/unicode_restricted_identity_escape.js: >- default: "Test262Error: Invalid IdentityEscape in AtomEscape: '\\" >- strict mode: "Test262Error: Invalid IdentityEscape in AtomEscape: '\\" >-test/built-ins/RegExp/unicode_restricted_identity_escape_alpha.js: >- default: "Test262Error: IdentityEscape in AtomEscape: 'c' Expected a SyntaxError to be thrown but no exception was thrown at all" >- strict mode: "Test262Error: IdentityEscape in AtomEscape: 'c' Expected a SyntaxError to be thrown but no exception was thrown at all" >-test/built-ins/RegExp/unicode_restricted_identity_escape_c.js: >- default: 'Test262Error: Expected a SyntaxError to be thrown but no exception was thrown at all' >- strict mode: 'Test262Error: Expected a SyntaxError to be thrown but no exception was thrown at all' >-test/built-ins/RegExp/unicode_restricted_incomple_quantifier.js: >- default: 'Test262Error: RegExp("a{", "u"): Expected a SyntaxError to be thrown but no exception was thrown at all' >- strict mode: 'Test262Error: RegExp("a{", "u"): Expected a SyntaxError to be thrown but no exception was thrown at all' >-test/built-ins/RegExp/unicode_restricted_octal_escape.js: >- default: 'Test262Error: RegExp("[\1]", "u"): Expected a SyntaxError to be thrown but no exception was thrown at all' >- strict mode: 'Test262Error: RegExp("[\1]", "u"): Expected a SyntaxError to be thrown but no exception was thrown at all' >-test/built-ins/RegExp/unicode_restricted_quantifiable_assertion.js: >- default: 'Test262Error: RegExp("(?=.)*", "u"): Expected a SyntaxError to be thrown but no exception was thrown at all' >- strict mode: 'Test262Error: RegExp("(?=.)*", "u"): Expected a SyntaxError to be thrown but no exception was thrown at all' >-test/built-ins/Set/proto-from-ctor-realm.js: >- default: 'Test262Error: Expected SameValue(ë[object Set]û, ë[object Set]û) to be true' >- strict mode: 'Test262Error: Expected SameValue(ë[object Set]û, ë[object Set]û) to be true' >-test/built-ins/String/proto-from-ctor-realm.js: >- default: 'Test262Error: Expected SameValue(ëû, ëû) to be true' >- strict mode: 'Test262Error: Expected SameValue(ëû, ëû) to be true' >-test/built-ins/String/prototype/trim/u180e.js: >- default: 'Test262Error: Expected SameValue(ë_û, ë_á Âû) to be true' >- strict mode: 'Test262Error: Expected SameValue(ë_û, ë_á Âû) to be true' >-test/built-ins/ThrowTypeError/extensible.js: >- default: 'Test262Error: Expected SameValue(ëtrueû, ëfalseû) to be true' >- strict mode: 'Test262Error: Expected SameValue(ëtrueû, ëfalseû) to be true' >-test/built-ins/ThrowTypeError/frozen.js: >- default: 'Test262Error: Expected SameValue(ëfalseû, ëtrueû) to be true' >- strict mode: 'Test262Error: Expected SameValue(ëfalseû, ëtrueû) to be true' >-test/built-ins/ThrowTypeError/length.js: >- default: 'Test262Error: Expected obj[length] to have configurable:false.' >- strict mode: 'Test262Error: Expected obj[length] to have configurable:false.' >-test/built-ins/ThrowTypeError/unique-per-realm-non-simple.js: >- default: 'Test262Error: callee.get Expected SameValue(ëfunction () {' >-test/built-ins/TypedArray/prototype/fill/fill-values-conversion-once.js: >- default: 'Test262Error: additional unexpected ToNumber() calls Expected SameValue(ë3û, ë2û) to be true (Testing with Float64Array.)' >- strict mode: 'Test262Error: additional unexpected ToNumber() calls Expected SameValue(ë3û, ë2û) to be true (Testing with Float64Array.)' >-test/built-ins/TypedArray/prototype/filter/speciesctor-get-ctor-returns-throws.js: >- default: 'Test262Error: 42 Expected a TypeError to be thrown but no exception was thrown at all (Testing with Float64Array.)' >- strict mode: 'Test262Error: 42 Expected a TypeError to be thrown but no exception was thrown at all (Testing with Float64Array.)' >-test/built-ins/TypedArray/prototype/filter/speciesctor-get-species-custom-ctor-length-throws.js: >- default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all (Testing with Float64Array.)' >- strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all (Testing with Float64Array.)' >-test/built-ins/TypedArray/prototype/indexOf/length-zero-returns-minus-one.js: >- default: 'Test262Error: (Testing with Float64Array.)' >- strict mode: 'Test262Error: (Testing with Float64Array.)' >-test/built-ins/TypedArray/prototype/lastIndexOf/length-zero-returns-minus-one.js: >- default: 'Test262Error: (Testing with Float64Array.)' >- strict mode: 'Test262Error: (Testing with Float64Array.)' >-test/built-ins/TypedArray/prototype/slice/arraylength-internal.js: >- default: 'Test262Error: Expected SameValue(ëtrueû, ëfalseû) to be true (Testing with Float64Array.)' >- strict mode: 'Test262Error: Expected SameValue(ëtrueû, ëfalseû) to be true (Testing with Float64Array.)' >-test/built-ins/TypedArray/prototype/slice/detached-buffer-zero-count-custom-ctor-other-targettype.js: >- default: 'TypeError: Underlying ArrayBuffer has been detached from the view (Testing with Float64Array.)' >- strict mode: 'TypeError: Underlying ArrayBuffer has been detached from the view (Testing with Float64Array.)' >-test/built-ins/TypedArray/prototype/slice/detached-buffer-zero-count-custom-ctor-same-targettype.js: >- default: 'TypeError: Underlying ArrayBuffer has been detached from the view (Testing with Float64Array.)' >- strict mode: 'TypeError: Underlying ArrayBuffer has been detached from the view (Testing with Float64Array.)' >-test/built-ins/TypedArray/prototype/slice/results-with-empty-length.js: >- default: 'Test262Error: begin == length & result.hasOwnProperty(0) === false Expected SameValue(ëtrueû, ëfalseû) to be true (Testing with Float64Array.)' >- strict mode: 'Test262Error: begin == length & result.hasOwnProperty(0) === false Expected SameValue(ëtrueû, ëfalseû) to be true (Testing with Float64Array.)' >-test/built-ins/TypedArray/prototype/slice/speciesctor-get-species-custom-ctor-length-throws.js: >- default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all (Testing with Float64Array.)' >- strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all (Testing with Float64Array.)' >-test/built-ins/TypedArray/prototype/sort/comparefn-nonfunction-call-throws.js: >- default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all (Testing with Float64Array.)' >- strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all (Testing with Float64Array.)' >-test/built-ins/TypedArray/prototype/subarray/results-with-empty-length.js: >- default: 'Test262Error: begin == length & result.hasOwnProperty(0) === false Expected SameValue(ëtrueû, ëfalseû) to be true (Testing with Float64Array.)' >- strict mode: 'Test262Error: begin == length & result.hasOwnProperty(0) === false Expected SameValue(ëtrueû, ëfalseû) to be true (Testing with Float64Array.)' >-test/built-ins/TypedArray/prototype/toLocaleString/calls-tostring-from-each-value.js: >- default: 'Test262Error: should not call valueOf if toString is present (Testing with Float64Array.)' >- strict mode: 'Test262Error: should not call valueOf if toString is present (Testing with Float64Array.)' >-test/built-ins/TypedArray/prototype/toLocaleString/calls-valueof-from-each-value.js: >- default: 'Test262Error: returns expected value Expected SameValue(ëhacks2,hacks1û, ëhacks1,hacks2û) to be true (Testing with Float64Array.)' >- strict mode: 'Test262Error: returns expected value Expected SameValue(ëhacks2,hacks1û, ëhacks1,hacks2û) to be true (Testing with Float64Array.)' >-test/built-ins/TypedArrayConstructors/ctors/buffer-arg/bufferbyteoffset-throws-from-modulo-element-size.js: >- default: 'Test262Error: Expected a RangeError to be thrown but no exception was thrown at all (Testing with Float64Array.)' >- strict mode: 'Test262Error: Expected a RangeError to be thrown but no exception was thrown at all (Testing with Float64Array.)' >-test/built-ins/TypedArrayConstructors/ctors/buffer-arg/byteoffset-to-number-detachbuffer.js: >- default: 'Test262Error: Expected a TypeError but got a RangeError (Testing with Float64Array.)' >- strict mode: 'Test262Error: Expected a TypeError but got a RangeError (Testing with Float64Array.)' >-test/built-ins/TypedArrayConstructors/ctors/buffer-arg/detachedbuffer.js: >- default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all (Testing with Float64Array.)' >- strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all (Testing with Float64Array.)' >-test/built-ins/TypedArrayConstructors/ctors/buffer-arg/length-to-number-detachbuffer.js: >- default: 'Test262Error: Expected a TypeError but got a RangeError (Testing with Float64Array.)' >- strict mode: 'Test262Error: Expected a TypeError but got a RangeError (Testing with Float64Array.)' >-test/built-ins/TypedArrayConstructors/ctors/buffer-arg/proto-from-ctor-realm.js: >- default: 'TypeError: Receiver should be a typed array view (Testing with Float64Array.)' >- strict mode: 'TypeError: Receiver should be a typed array view (Testing with Float64Array.)' >-test/built-ins/TypedArrayConstructors/ctors/length-arg/proto-from-ctor-realm.js: >- default: 'TypeError: Receiver should be a typed array view (Testing with Float64Array.)' >- strict mode: 'TypeError: Receiver should be a typed array view (Testing with Float64Array.)' >-test/built-ins/TypedArrayConstructors/ctors/no-args/proto-from-ctor-realm.js: >- default: 'TypeError: Receiver should be a typed array view (Testing with Float64Array.)' >- strict mode: 'TypeError: Receiver should be a typed array view (Testing with Float64Array.)' >-test/built-ins/TypedArrayConstructors/ctors/object-arg/length-excessive-throws.js: >- default: 'Test262Error: Expected a RangeError to be thrown but no exception was thrown at all (Testing with Float64Array.)' >- strict mode: 'Test262Error: Expected a RangeError to be thrown but no exception was thrown at all (Testing with Float64Array.)' >-test/built-ins/TypedArrayConstructors/ctors/object-arg/proto-from-ctor-realm.js: >- default: 'TypeError: Receiver should be a typed array view (Testing with Float64Array.)' >- strict mode: 'TypeError: Receiver should be a typed array view (Testing with Float64Array.)' >-test/built-ins/TypedArrayConstructors/ctors/typedarray-arg/detached-when-species-retrieved-different-type.js: >- default: 'Test262Error: TypeError thrown for detached source buffer Expected a TypeError to be thrown but no exception was thrown at all (Testing with Float64Array.)' >- strict mode: 'Test262Error: TypeError thrown for detached source buffer Expected a TypeError to be thrown but no exception was thrown at all (Testing with Float64Array.)' >-test/built-ins/TypedArrayConstructors/ctors/typedarray-arg/detached-when-species-retrieved-same-type.js: >- default: 'Test262Error: TypeError thrown for detached source buffer Expected a TypeError to be thrown but no exception was thrown at all (Testing with Float64Array.)' >- strict mode: 'Test262Error: TypeError thrown for detached source buffer Expected a TypeError to be thrown but no exception was thrown at all (Testing with Float64Array.)' >-test/built-ins/TypedArrayConstructors/ctors/typedarray-arg/other-ctor-buffer-ctor-access-throws.js: >- default: 'Test262Error: Expected a Test262Error to be thrown but no exception was thrown at all (Testing with Float64Array.)' >- strict mode: 'Test262Error: Expected a Test262Error to be thrown but no exception was thrown at all (Testing with Float64Array.)' >-test/built-ins/TypedArrayConstructors/ctors/typedarray-arg/other-ctor-buffer-ctor-custom-species-proto-from-ctor-realm.js: >- default: 'Test262Error: Expected SameValue(ë[object ArrayBuffer]û, ë[object ArrayBuffer]û) to be true (Testing with Float64Array.)' >- strict mode: 'Test262Error: Expected SameValue(ë[object ArrayBuffer]û, ë[object ArrayBuffer]û) to be true (Testing with Float64Array.)' >-test/built-ins/TypedArrayConstructors/ctors/typedarray-arg/other-ctor-buffer-ctor-custom-species.js: >- default: 'Test262Error: Expected SameValue(ë[object ArrayBuffer]û, ë[object Object]û) to be true (Testing with Float64Array.)' >- strict mode: 'Test262Error: Expected SameValue(ë[object ArrayBuffer]û, ë[object Object]û) to be true (Testing with Float64Array.)' >-test/built-ins/TypedArrayConstructors/ctors/typedarray-arg/other-ctor-buffer-ctor-not-object-throws.js: >- default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all (Testing with Float64Array.)' >- strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all (Testing with Float64Array.)' >-test/built-ins/TypedArrayConstructors/ctors/typedarray-arg/other-ctor-buffer-ctor-species-access-throws.js: >- default: 'Test262Error: Expected a Test262Error to be thrown but no exception was thrown at all (Testing with Float64Array.)' >- strict mode: 'Test262Error: Expected a Test262Error to be thrown but no exception was thrown at all (Testing with Float64Array.)' >-test/built-ins/TypedArrayConstructors/ctors/typedarray-arg/other-ctor-buffer-ctor-species-not-ctor-throws.js: >- default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all (Testing with Float64Array.)' >- strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all (Testing with Float64Array.)' >-test/built-ins/TypedArrayConstructors/ctors/typedarray-arg/other-ctor-buffer-ctor-species-prototype-throws.js: >- default: 'Test262Error: Expected a Test262Error to be thrown but no exception was thrown at all (Testing with Float64Array.)' >- strict mode: 'Test262Error: Expected a Test262Error to be thrown but no exception was thrown at all (Testing with Float64Array.)' >-test/built-ins/TypedArrayConstructors/ctors/typedarray-arg/proto-from-ctor-realm.js: >- default: 'TypeError: Receiver should be a typed array view (Testing with Float64Array.)' >- strict mode: 'TypeError: Receiver should be a typed array view (Testing with Float64Array.)' >-test/built-ins/TypedArrayConstructors/ctors/typedarray-arg/same-ctor-buffer-ctor-access-throws.js: >- default: 'Test262Error: Expected a Test262Error to be thrown but no exception was thrown at all (Testing with Float64Array.)' >- strict mode: 'Test262Error: Expected a Test262Error to be thrown but no exception was thrown at all (Testing with Float64Array.)' >-test/built-ins/TypedArrayConstructors/ctors/typedarray-arg/same-ctor-buffer-ctor-species-custom-proto-from-ctor-realm.js: >- default: 'Test262Error: Expected SameValue(ë[object ArrayBuffer]û, ë[object ArrayBuffer]û) to be true (Testing with Float64Array.)' >- strict mode: 'Test262Error: Expected SameValue(ë[object ArrayBuffer]û, ë[object ArrayBuffer]û) to be true (Testing with Float64Array.)' >-test/built-ins/TypedArrayConstructors/ctors/typedarray-arg/same-ctor-buffer-ctor-species-custom.js: >- default: 'Test262Error: Expected SameValue(ë[object ArrayBuffer]û, ë[object Object]û) to be true (Testing with Float64Array.)' >- strict mode: 'Test262Error: Expected SameValue(ë[object ArrayBuffer]û, ë[object Object]û) to be true (Testing with Float64Array.)' >-test/built-ins/TypedArrayConstructors/ctors/typedarray-arg/same-ctor-buffer-ctor-species-not-ctor.js: >- default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all (Testing with Float64Array.)' >- strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all (Testing with Float64Array.)' >-test/built-ins/TypedArrayConstructors/ctors/typedarray-arg/same-ctor-buffer-ctor-species-prototype-throws.js: >- default: 'Test262Error: Expected a Test262Error to be thrown but no exception was thrown at all (Testing with Float64Array.)' >- strict mode: 'Test262Error: Expected a Test262Error to be thrown but no exception was thrown at all (Testing with Float64Array.)' >-test/built-ins/TypedArrayConstructors/ctors/typedarray-arg/same-ctor-buffer-ctor-species-throws.js: >- default: 'Test262Error: Expected a Test262Error to be thrown but no exception was thrown at all (Testing with Float64Array.)' >- strict mode: 'Test262Error: Expected a Test262Error to be thrown but no exception was thrown at all (Testing with Float64Array.)' >-test/built-ins/TypedArrayConstructors/ctors/typedarray-arg/same-ctor-buffer-ctor-value-not-obj-throws.js: >- default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all (Testing with Float64Array.)' >- strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all (Testing with Float64Array.)' >-test/built-ins/TypedArrayConstructors/from/custom-ctor-returns-other-instance.js: >- default: 'TypeError: TypedArray.from requires its this argument subclass a TypedArray constructor (Testing with Float64Array.)' >- strict mode: 'TypeError: TypedArray.from requires its this argument subclass a TypedArray constructor (Testing with Float64Array.)' >-test/built-ins/TypedArrayConstructors/from/custom-ctor.js: >- default: 'Test262Error: Expected a Test262Error but got a TypeError (Testing with Float64Array.)' >- strict mode: 'Test262Error: Expected a Test262Error but got a TypeError (Testing with Float64Array.)' >-test/built-ins/TypedArrayConstructors/from/new-instance-using-custom-ctor.js: >- default: 'TypeError: TypedArray.from requires its this argument subclass a TypedArray constructor (Testing with Float64Array.)' >- strict mode: 'TypeError: TypedArray.from requires its this argument subclass a TypedArray constructor (Testing with Float64Array.)' >-test/built-ins/TypedArrayConstructors/from/set-value-abrupt-completion.js: >- default: 'Test262Error: interrupted source iteration Expected SameValue(ë1û, ë[object Object]û) to be true (Testing with Float64Array.)' >- strict mode: 'Test262Error: interrupted source iteration Expected SameValue(ë1û, ë[object Object]û) to be true (Testing with Float64Array.)' >-test/built-ins/TypedArrayConstructors/internals/DefineOwnProperty/conversion-operation-consistent-nan.js: >- default: 'TypeError: Attempting to store non-enumerable or non-writable property on a typed array at index: 0 (Testing with Float32Array.)' >- strict mode: 'TypeError: Attempting to store non-enumerable or non-writable property on a typed array at index: 0 (Testing with Float32Array.)' >-test/built-ins/TypedArrayConstructors/internals/DefineOwnProperty/conversion-operation.js: >- default: 'TypeError: Attempting to store non-enumerable or non-writable property on a typed array at index: 0 (Testing with Float64Array.)' >- strict mode: 'TypeError: Attempting to store non-enumerable or non-writable property on a typed array at index: 0 (Testing with Float64Array.)' >-test/built-ins/TypedArrayConstructors/internals/DefineOwnProperty/desc-value-throws.js: >- default: 'Test262Error: Expected a Test262Error but got a TypeError (Testing with Float64Array.)' >- strict mode: 'Test262Error: Expected a Test262Error but got a TypeError (Testing with Float64Array.)' >-test/built-ins/TypedArrayConstructors/internals/DefineOwnProperty/detached-buffer.js: >- default: 'Test262Error: Return false before Detached Buffer check when value is a negative number Expected SameValue(ëtrueû, ëfalseû) to be true (Testing with Float64Array.)' >- strict mode: 'Test262Error: Return false before Detached Buffer check when value is a negative number Expected SameValue(ëtrueû, ëfalseû) to be true (Testing with Float64Array.)' >-test/built-ins/TypedArrayConstructors/internals/DefineOwnProperty/key-is-lower-than-zero.js: >- default: 'Test262Error: -1 Expected SameValue(ëtrueû, ëfalseû) to be true (Testing with Float64Array.)' >- strict mode: 'Test262Error: -1 Expected SameValue(ëtrueû, ëfalseû) to be true (Testing with Float64Array.)' >-test/built-ins/TypedArrayConstructors/internals/DefineOwnProperty/key-is-minus-zero.js: >- default: 'Test262Error: defineProperty returns false Expected SameValue(ëtrueû, ëfalseû) to be true (Testing with Float64Array.)' >- strict mode: 'Test262Error: defineProperty returns false Expected SameValue(ëtrueû, ëfalseû) to be true (Testing with Float64Array.)' >-test/built-ins/TypedArrayConstructors/internals/DefineOwnProperty/key-is-not-integer.js: >- default: 'Test262Error: 0.1 Expected SameValue(ëtrueû, ëfalseû) to be true (Testing with Float64Array.)' >- strict mode: 'Test262Error: 0.1 Expected SameValue(ëtrueû, ëfalseû) to be true (Testing with Float64Array.)' >-test/built-ins/TypedArrayConstructors/internals/DefineOwnProperty/key-is-numericindex.js: >- default: 'Test262Error: property is writable Expected SameValue(ëfalseû, ëtrueû) to be true (Testing with Float64Array.)' >- strict mode: 'Test262Error: property is writable Expected SameValue(ëfalseû, ëtrueû) to be true (Testing with Float64Array.)' >-test/built-ins/TypedArrayConstructors/internals/DefineOwnProperty/set-value.js: >- default: 'Test262Error: set value for sample[0] returns true Expected SameValue(ëfalseû, ëtrueû) to be true (Testing with Float64Array.)' >- strict mode: 'Test262Error: set value for sample[0] returns true Expected SameValue(ëfalseû, ëtrueû) to be true (Testing with Float64Array.)' >-test/built-ins/TypedArrayConstructors/internals/DefineOwnProperty/tonumber-value-detached-buffer.js: >- default: 'Test262Error: detaching a ArrayBuffer during defining an element of a typed array viewing it should throw Expected a TypeError to be thrown but no exception was thrown at all (Testing with Float64Array.)' >- strict mode: 'Test262Error: detaching a ArrayBuffer during defining an element of a typed array viewing it should throw Expected a TypeError to be thrown but no exception was thrown at all (Testing with Float64Array.)' >-test/built-ins/TypedArrayConstructors/internals/Get/detached-buffer.js: >- default: 'Test262Error: detach buffer runs before checking for 1.1 Expected a TypeError to be thrown but no exception was thrown at all (Testing with Float64Array.)' >- strict mode: 'Test262Error: detach buffer runs before checking for 1.1 Expected a TypeError to be thrown but no exception was thrown at all (Testing with Float64Array.)' >-test/built-ins/TypedArrayConstructors/internals/Get/infinity-detached-buffer.js: >- default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all (Testing with Float64Array.)' >- strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all (Testing with Float64Array.)' >-test/built-ins/TypedArrayConstructors/internals/Get/key-is-not-integer.js: >- default: 'Test262Error: OrdinaryGet was called! Ref: 9.1.8.1 3.c (Testing with Float64Array.)' >- strict mode: 'Test262Error: OrdinaryGet was called! Ref: 9.1.8.1 3.c (Testing with Float64Array.)' >-test/built-ins/TypedArrayConstructors/internals/Get/key-is-not-minus-zero.js: >- default: 'Test262Error: OrdinaryGet was called! Ref: 9.1.8.1 3.c (Testing with Float64Array.)' >- strict mode: 'Test262Error: OrdinaryGet was called! Ref: 9.1.8.1 3.c (Testing with Float64Array.)' >-test/built-ins/TypedArrayConstructors/internals/Get/key-is-out-of-bounds.js: >- default: 'Test262Error: OrdinaryGet was called! Ref: 9.1.8.1 3.c (Testing with Float64Array.)' >- strict mode: 'Test262Error: OrdinaryGet was called! Ref: 9.1.8.1 3.c (Testing with Float64Array.)' >-test/built-ins/TypedArrayConstructors/internals/GetOwnProperty/enumerate-detached-buffer.js: >- default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all (Testing with Float64Array.)' >- strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all (Testing with Float64Array.)' >-test/built-ins/TypedArrayConstructors/internals/GetOwnProperty/index-prop-desc.js: >- default: 'Test262Error: index descriptor is writable [0] Expected SameValue(ëfalseû, ëtrueû) to be true (Testing with Float64Array.)' >- strict mode: 'Test262Error: index descriptor is writable [0] Expected SameValue(ëfalseû, ëtrueû) to be true (Testing with Float64Array.)' >-test/built-ins/TypedArrayConstructors/internals/GetOwnProperty/key-is-out-of-bounds.js: >- default: 'Test262Error: Expected SameValue(ë[object Object]û, ëundefinedû) to be true (Testing with Float64Array.)' >- strict mode: 'Test262Error: Expected SameValue(ë[object Object]û, ëundefinedû) to be true (Testing with Float64Array.)' >-test/built-ins/TypedArrayConstructors/internals/HasProperty/abrupt-from-ordinary-has-parent-hasproperty.js: >- default: 'Test262Error: (Testing with Float64Array.)' >- strict mode: 'Test262Error: (Testing with Float64Array.)' >-test/built-ins/TypedArrayConstructors/internals/HasProperty/detached-buffer-realm.js: >- default: 'Test262Error: 0 Expected a TypeError to be thrown but no exception was thrown at all (Testing with Float64Array.)' >- strict mode: 'Test262Error: 0 Expected a TypeError to be thrown but no exception was thrown at all (Testing with Float64Array.)' >-test/built-ins/TypedArrayConstructors/internals/HasProperty/detached-buffer.js: >- default: 'Test262Error: 0 Expected a TypeError to be thrown but no exception was thrown at all (Testing with Float64Array.)' >- strict mode: 'Test262Error: 0 Expected a TypeError to be thrown but no exception was thrown at all (Testing with Float64Array.)' >-test/built-ins/TypedArrayConstructors/internals/HasProperty/infinity-with-detached-buffer.js: >- default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all (Testing with Float64Array.)' >-test/built-ins/TypedArrayConstructors/internals/HasProperty/inherited-property.js: >- default: 'Test262Error: 42 Expected SameValue(ëtrueû, ëfalseû) to be true (Testing with Float64Array.)' >- strict mode: 'Test262Error: 42 Expected SameValue(ëtrueû, ëfalseû) to be true (Testing with Float64Array.)' >-test/built-ins/TypedArrayConstructors/internals/HasProperty/key-is-greater-than-last-index.js: >- default: 'Test262Error: 1 Expected SameValue(ëtrueû, ëfalseû) to be true (Testing with Float64Array.)' >- strict mode: 'Test262Error: 1 Expected SameValue(ëtrueû, ëfalseû) to be true (Testing with Float64Array.)' >-test/built-ins/TypedArrayConstructors/internals/HasProperty/key-is-lower-than-zero.js: >- default: 'Test262Error: -1 Expected SameValue(ëtrueû, ëfalseû) to be true (Testing with Float64Array.)' >- strict mode: 'Test262Error: -1 Expected SameValue(ëtrueû, ëfalseû) to be true (Testing with Float64Array.)' >-test/built-ins/TypedArrayConstructors/internals/HasProperty/key-is-minus-zero.js: >- default: 'Test262Error: -0 Expected SameValue(ëtrueû, ëfalseû) to be true (Testing with Float64Array.)' >- strict mode: 'Test262Error: -0 Expected SameValue(ëtrueû, ëfalseû) to be true (Testing with Float64Array.)' >-test/built-ins/TypedArrayConstructors/internals/HasProperty/key-is-not-integer.js: >- default: 'Test262Error: 1.1 Expected SameValue(ëtrueû, ëfalseû) to be true (Testing with Float64Array.)' >- strict mode: 'Test262Error: 1.1 Expected SameValue(ëtrueû, ëfalseû) to be true (Testing with Float64Array.)' >-test/built-ins/TypedArrayConstructors/internals/Set/detached-buffer.js: >- default: 'Test262Error: detach buffer runs before checking for 1.1 Expected a TypeError to be thrown but no exception was thrown at all (Testing with Float64Array.)' >- strict mode: 'Test262Error: detach buffer runs before checking for 1.1 Expected a TypeError to be thrown but no exception was thrown at all (Testing with Float64Array.)' >-test/built-ins/TypedArrayConstructors/internals/Set/key-is-minus-zero.js: >- default: 'Test262Error: -0 Expected SameValue(ëtrueû, ëfalseû) to be true (Testing with Float64Array.)' >- strict mode: 'Test262Error: -0 Expected SameValue(ëtrueû, ëfalseû) to be true (Testing with Float64Array.)' >-test/built-ins/TypedArrayConstructors/internals/Set/key-is-not-integer.js: >- default: 'Test262Error: 1.1 Expected SameValue(ëtrueû, ëfalseû) to be true (Testing with Float64Array.)' >- strict mode: 'Test262Error: 1.1 Expected SameValue(ëtrueû, ëfalseû) to be true (Testing with Float64Array.)' >-test/built-ins/TypedArrayConstructors/internals/Set/key-is-out-of-bounds.js: >- default: 'Test262Error: -1 Expected SameValue(ëtrueû, ëfalseû) to be true (Testing with Float64Array.)' >- strict mode: 'Test262Error: -1 Expected SameValue(ëtrueû, ëfalseû) to be true (Testing with Float64Array.)' >-test/built-ins/TypedArrayConstructors/internals/Set/tonumber-value-throws.js: >- default: 'Test262Error: ToNumber runs before ToInteger(index) Expected a Test262Error to be thrown but no exception was thrown at all (Testing with Float64Array.)' >- strict mode: 'Test262Error: ToNumber runs before ToInteger(index) Expected a Test262Error to be thrown but no exception was thrown at all (Testing with Float64Array.)' >-test/built-ins/TypedArrayConstructors/of/custom-ctor-returns-other-instance.js: >- default: 'TypeError: TypedArray.of requires its this argument to subclass a TypedArray constructor (Testing with Float64Array.)' >- strict mode: 'TypeError: TypedArray.of requires its this argument to subclass a TypedArray constructor (Testing with Float64Array.)' >-test/built-ins/TypedArrayConstructors/of/custom-ctor.js: >- default: 'Test262Error: Expected a Test262Error but got a TypeError (Testing with Float64Array.)' >- strict mode: 'Test262Error: Expected a Test262Error but got a TypeError (Testing with Float64Array.)' >-test/built-ins/TypedArrayConstructors/of/new-instance-using-custom-ctor.js: >- default: 'TypeError: TypedArray.of requires its this argument to subclass a TypedArray constructor (Testing with Float64Array.)' >- strict mode: 'TypeError: TypedArray.of requires its this argument to subclass a TypedArray constructor (Testing with Float64Array.)' >-test/built-ins/WeakMap/proto-from-ctor-realm.js: >- default: 'Test262Error: Expected SameValue(ë[object WeakMap]û, ë[object WeakMap]û) to be true' >- strict mode: 'Test262Error: Expected SameValue(ë[object WeakMap]û, ë[object WeakMap]û) to be true' >-test/built-ins/WeakSet/proto-from-ctor-realm.js: >- default: 'Test262Error: Expected SameValue(ë[object WeakSet]û, ë[object WeakSet]û) to be true' >- strict mode: 'Test262Error: Expected SameValue(ë[object WeakSet]û, ë[object WeakSet]û) to be true' >-test/built-ins/global/global-object.js: >- default: "ReferenceError: Can't find variable: global" >- strict mode: "ReferenceError: Can't find variable: global" >-test/built-ins/global/property-descriptor.js: >- default: "TypeError: undefined is not an object (evaluating 'Object.getOwnPropertyDescriptor(obj, name).enumerable')" >- strict mode: "TypeError: undefined is not an object (evaluating 'Object.getOwnPropertyDescriptor(obj, name).enumerable')" >-test/built-ins/parseFloat/S15.1.2.3_A2_T10_U180E.js: >- default: 'Test262Error: Single leading U+180E Expected SameValue(ë1.1û, ëNaNû) to be true' >- strict mode: 'Test262Error: Single leading U+180E Expected SameValue(ë1.1û, ëNaNû) to be true' >-test/built-ins/parseInt/S15.1.2.2_A2_T10_U180E.js: >- default: 'Test262Error: Single leading U+180E Expected SameValue(ë1û, ëNaNû) to be true' >- strict mode: 'Test262Error: Single leading U+180E Expected SameValue(ë1û, ëNaNû) to be true' >-test/harness/assert-throws-early-referenceerror.js: >- default: 'Test262Error: Function: 1 = 1; Expected a ReferenceError to be thrown but no exception was thrown at all' >- strict mode: 'Test262Error: Function: 1 = 1; Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/intl402/Collator/default-options-object-prototype.js: >- default: 'Test262Error: Expected SameValue(ëbaseû, ëvariantû) to be true' >- strict mode: 'Test262Error: Expected SameValue(ëbaseû, ëvariantû) to be true' >-test/intl402/Collator/length.js: >- default: 'Test262Error: Expected obj[length] to have configurable:true.' >- strict mode: 'Test262Error: Expected obj[length] to have configurable:true.' >-test/intl402/Collator/prototype/compare/compare-function-name.js: >- default: 'Test262Error: Expected SameValue(ëtrueû, ëfalseû) to be true' >- strict mode: 'Test262Error: Expected SameValue(ëtrueû, ëfalseû) to be true' >-test/intl402/Collator/prototype/constructor/prop-desc.js: >- default: "TypeError: undefined is not an object (evaluating 'Object.getOwnPropertyDescriptor(obj, name).enumerable')" >- strict mode: "TypeError: undefined is not an object (evaluating 'Object.getOwnPropertyDescriptor(obj, name).enumerable')" >-test/intl402/Collator/prototype/constructor/value.js: >- default: 'Test262Error: Intl.Collator.prototype.constructor is not the same as Intl.Collator Expected SameValue(ëfunction Object() {' >- strict mode: 'Test262Error: Intl.Collator.prototype.constructor is not the same as Intl.Collator Expected SameValue(ëfunction Object() {' >-test/intl402/Collator/unicode-ext-seq-in-private-tag.js: >- default: 'Test262Error: Expected SameValue(ëphonebkû, ëdefaultû) to be true' >- strict mode: 'Test262Error: Expected SameValue(ëphonebkû, ëdefaultû) to be true' >-test/intl402/DateTimeFormat/length.js: >- default: 'Test262Error: Expected obj[length] to have configurable:true.' >- strict mode: 'Test262Error: Expected obj[length] to have configurable:true.' >-test/intl402/DateTimeFormat/prototype/constructor/prop-desc.js: >- default: "TypeError: undefined is not an object (evaluating 'Object.getOwnPropertyDescriptor(obj, name).enumerable')" >- strict mode: "TypeError: undefined is not an object (evaluating 'Object.getOwnPropertyDescriptor(obj, name).enumerable')" >-test/intl402/DateTimeFormat/prototype/constructor/value.js: >- default: 'Test262Error: Intl.DateTimeFormat.prototype.constructor is not the same as Intl.DateTimeFormat Expected SameValue(ëfunction Object() {' >- strict mode: 'Test262Error: Intl.DateTimeFormat.prototype.constructor is not the same as Intl.DateTimeFormat Expected SameValue(ëfunction Object() {' >-test/intl402/DateTimeFormat/prototype/format/format-function-name.js: >- default: 'Test262Error: Expected SameValue(ëtrueû, ëfalseû) to be true' >- strict mode: 'Test262Error: Expected SameValue(ëtrueû, ëfalseû) to be true' >-test/intl402/DateTimeFormat/prototype/format/proleptic-gregorian-calendar.js: >- default: "Test262Error: Internal error: Didn't find Gregorian calendar Expected SameValue(ëgregorianû, ëgregoryû) to be true" >- strict mode: "Test262Error: Internal error: Didn't find Gregorian calendar Expected SameValue(ëgregorianû, ëgregoryû) to be true" >-test/intl402/DateTimeFormat/prototype/format/time-clip-near-time-boundaries.js: >- default: 'Test262Error: Expected a RangeError to be thrown but no exception was thrown at all' >- strict mode: 'Test262Error: Expected a RangeError to be thrown but no exception was thrown at all' >-test/intl402/DateTimeFormat/prototype/format/time-clip-to-integer.js: >- default: 'Test262Error: format(-0.9) Expected SameValue(ë8:59:59 PMû, ë9:00:00 PMû) to be true' >- strict mode: 'Test262Error: format(-0.9) Expected SameValue(ë8:59:59 PMû, ë9:00:00 PMû) to be true' >-test/intl402/DateTimeFormat/prototype/formatToParts/length.js: >- default: 'Test262Error: Expected SameValue(ë0û, ë1û) to be true' >- strict mode: 'Test262Error: Expected SameValue(ë0û, ë1û) to be true' >-test/intl402/DateTimeFormat/prototype/formatToParts/time-clip-near-time-boundaries.js: >- default: 'Test262Error: Expected a RangeError to be thrown but no exception was thrown at all' >- strict mode: 'Test262Error: Expected a RangeError to be thrown but no exception was thrown at all' >-test/intl402/DateTimeFormat/prototype/formatToParts/time-clip-to-integer.js: >- default: 'Test262Error: formatToParts(-0.9) Expected SameValue(ë8:59:59 PMû, ë9:00:00 PMû) to be true' >- strict mode: 'Test262Error: formatToParts(-0.9) Expected SameValue(ë8:59:59 PMû, ë9:00:00 PMû) to be true' >-test/intl402/DateTimeFormat/prototype/resolvedOptions/basic.js: >- default: 'Test262Error: Invalid calendar: gregorian Expected SameValue(ë-1û, ë-1û) to be false' >- strict mode: 'Test262Error: Invalid calendar: gregorian Expected SameValue(ë-1û, ë-1û) to be false' >-test/intl402/DateTimeFormat/prototype/resolvedOptions/hourCycle.js: >- default: 'Test262Error: Expected SameValue(ëundefinedû, ëh11û) to be true' >- strict mode: 'Test262Error: Expected SameValue(ëundefinedû, ëh11û) to be true' >-test/intl402/DateTimeFormat/prototype/resolvedOptions/resolved-locale-with-hc-unicode.js: >- default: 'Test262Error: Only hc Unicode extension value is present. (With hour option.) Expected SameValue(ëen-USû, ëen-US-u-hc-h11û) to be true' >- strict mode: 'Test262Error: Only hc Unicode extension value is present. (With hour option.) Expected SameValue(ëen-USû, ëen-US-u-hc-h11û) to be true' >-test/intl402/Intl/getCanonicalLocales/canonicalized-tags.js: >- default: 'Test262Error: Expected SameValue(ësgn-GRû, ëgssû) to be true' >- strict mode: 'Test262Error: Expected SameValue(ësgn-GRû, ëgssû) to be true' >-test/intl402/Intl/getCanonicalLocales/invalid-tags.js: >- default: 'Test262Error: Test data "de-gregory-gregory" is a canonicalized and structurally valid language tag.' >- strict mode: 'Test262Error: Test data "de-gregory-gregory" is a canonicalized and structurally valid language tag.' >-test/intl402/Intl/getCanonicalLocales/preferred-grandfathered.js: >- default: 'Test262Error: Expected SameValue(ëen-GB-oedû, ëen-GB-oxendictû) to be true' >- strict mode: 'Test262Error: Expected SameValue(ëen-GB-oedû, ëen-GB-oxendictû) to be true' >-test/intl402/Intl/getCanonicalLocales/preferred-variant.js: >- default: 'Test262Error: Expected SameValue(ëja-Latn-hepburn-heplocû, ëja-Latn-alalc97û) to be true' >- strict mode: 'Test262Error: Expected SameValue(ëja-Latn-hepburn-heplocû, ëja-Latn-alalc97û) to be true' >-test/intl402/Number/prototype/toLocaleString/default-options-object-prototype.js: >- default: 'Test262Error: Expected SameValue(ë1.2û, ë1.23û) to be true' >- strict mode: 'Test262Error: Expected SameValue(ë1.2û, ë1.23û) to be true' >-test/intl402/Number/prototype/toLocaleString/returns-same-results-as-NumberFormat.js: >- default: 'Error: Failed to format a number.' >- strict mode: 'Error: Failed to format a number.' >-test/intl402/NumberFormat/default-options-object-prototype.js: >- default: 'Test262Error: Expected SameValue(ë1û, ë3û) to be true' >- strict mode: 'Test262Error: Expected SameValue(ë1û, ë3û) to be true' >-test/intl402/NumberFormat/length.js: >- default: 'Test262Error: Expected obj[length] to have configurable:true.' >- strict mode: 'Test262Error: Expected obj[length] to have configurable:true.' >-test/intl402/NumberFormat/prototype/constructor/prop-desc.js: >- default: "TypeError: undefined is not an object (evaluating 'Object.getOwnPropertyDescriptor(obj, name).enumerable')" >- strict mode: "TypeError: undefined is not an object (evaluating 'Object.getOwnPropertyDescriptor(obj, name).enumerable')" >-test/intl402/NumberFormat/prototype/constructor/value.js: >- default: 'Test262Error: Intl.NumberFormat.prototype.constructor is not the same as Intl.NumberFormat Expected SameValue(ëfunction Object() {' >- strict mode: 'Test262Error: Intl.NumberFormat.prototype.constructor is not the same as Intl.NumberFormat Expected SameValue(ëfunction Object() {' >-test/intl402/NumberFormat/prototype/format/bound-to-numberformat-instance.js: >- default: 'Error: Failed to format a number.' >- strict mode: 'Error: Failed to format a number.' >-test/intl402/NumberFormat/prototype/format/format-fraction-digits.js: >- default: 'Test262Error: Formatted value for 12344501000000000000000000000000000, en-US-u-nu-arab and options {"useGrouping":false,"minimumIntegerDigits":3,"minimumFractionDigits":1,"maximumFractionDigits":3} is áâãääÃ¥àáàààààààààààààààààààààààààààëà; expected áâãääÃ¥àáàààààààààäèçèáÃ¥äääæçèãááéãæëà.' >- strict mode: 'Test262Error: Formatted value for 12344501000000000000000000000000000, en-US-u-nu-arab and options {"useGrouping":false,"minimumIntegerDigits":3,"minimumFractionDigits":1,"maximumFractionDigits":3} is áâãääÃ¥àáàààààààààààààààààààààààààààëà; expected áâãääÃ¥àáàààààààààäèçèáÃ¥äääæçèãááéãæëà.' >-test/intl402/NumberFormat/prototype/format/format-function-name.js: >- default: 'Test262Error: Expected SameValue(ëtrueû, ëfalseû) to be true' >- strict mode: 'Test262Error: Expected SameValue(ëtrueû, ëfalseû) to be true' >-test/intl402/NumberFormat/prototype/format/format-significant-digits.js: >- default: 'Test262Error: Formatted value for 123.44500, en-US-u-nu-arab and options {"useGrouping":false,"minimumSignificantDigits":3,"maximumSignificantDigits":5} is áâãëäÃÂ¥; expected áâãëää.' >- strict mode: 'Test262Error: Formatted value for 123.44500, en-US-u-nu-arab and options {"useGrouping":false,"minimumSignificantDigits":3,"maximumSignificantDigits":5} is áâãëäÃÂ¥; expected áâãëää.' >-test/intl402/NumberFormat/prototype/formatToParts/default-parameter.js: >- default: "TypeError: nf.formatToParts is not a function. (In 'nf.formatToParts()', 'nf.formatToParts' is undefined)" >- strict mode: "TypeError: nf.formatToParts is not a function. (In 'nf.formatToParts()', 'nf.formatToParts' is undefined)" >-test/intl402/NumberFormat/prototype/formatToParts/formatToParts.js: >- default: 'Test262Error: `typeof Intl.NumberFormat.prototype.formatToParts` is `function` Expected SameValue(ëundefinedû, ëfunctionû) to be true' >- strict mode: 'Test262Error: `typeof Intl.NumberFormat.prototype.formatToParts` is `function` Expected SameValue(ëundefinedû, ëfunctionû) to be true' >-test/intl402/NumberFormat/prototype/formatToParts/length.js: >- default: "TypeError: undefined is not an object (evaluating 'Intl.NumberFormat.prototype.formatToParts.length')" >- strict mode: "TypeError: undefined is not an object (evaluating 'Intl.NumberFormat.prototype.formatToParts.length')" >-test/intl402/NumberFormat/prototype/formatToParts/main.js: >- default: "TypeError: nf.formatToParts is not a function. (In 'nf.formatToParts(value)', 'nf.formatToParts' is undefined)" >- strict mode: "TypeError: nf.formatToParts is not a function. (In 'nf.formatToParts(value)', 'nf.formatToParts' is undefined)" >-test/intl402/NumberFormat/prototype/formatToParts/name.js: >- default: "TypeError: undefined is not an object (evaluating 'Intl.NumberFormat.prototype.formatToParts.name')" >- strict mode: "TypeError: undefined is not an object (evaluating 'Intl.NumberFormat.prototype.formatToParts.name')" >-test/intl402/NumberFormat/prototype/formatToParts/return-abrupt-tonumber.js: >- default: 'Test262Error: valueOf Expected a Test262Error but got a TypeError' >- strict mode: 'Test262Error: valueOf Expected a Test262Error but got a TypeError' >-test/intl402/NumberFormat/significant-digits-options-get-sequence.js: >- default: 'Test262Error: minimumSignificantDigits getter already called Expected SameValue(ëtrueû, ëfalseû) to be true' >- strict mode: 'Test262Error: minimumSignificantDigits getter already called Expected SameValue(ëtrueû, ëfalseû) to be true' >-test/intl402/PluralRules/builtin.js: >- default: 'Test262Error: The [[Class]] internal property of a built-in function must be "Function". Expected SameValue(ë[object Undefined]û, ë[object Function]û) to be true' >- strict mode: 'Test262Error: The [[Class]] internal property of a built-in function must be "Function". Expected SameValue(ë[object Undefined]û, ë[object Function]û) to be true' >-test/intl402/PluralRules/can-be-subclassed.js: >- default: "TypeError: undefined is not a constructor (evaluating 'new Intl.PluralRules(locales)')" >- strict mode: "TypeError: undefined is not a constructor (evaluating 'new Intl.PluralRules(locales)')" >-test/intl402/PluralRules/default-options-object-prototype.js: >- default: "TypeError: undefined is not a constructor (evaluating 'new Intl.PluralRules(\"en\")')" >- strict mode: "TypeError: undefined is not a constructor (evaluating 'new Intl.PluralRules(\"en\")')" >-test/intl402/PluralRules/internals.js: >- default: "TypeError: undefined is not a constructor (evaluating 'new Intl.PluralRules()')" >- strict mode: "TypeError: undefined is not a constructor (evaluating 'new Intl.PluralRules()')" >-test/intl402/PluralRules/length.js: >- default: "TypeError: undefined is not an object (evaluating 'Intl.PluralRules.length')" >- strict mode: "TypeError: undefined is not an object (evaluating 'Intl.PluralRules.length')" >-test/intl402/PluralRules/name.js: >- default: "TypeError: undefined is not an object (evaluating 'Intl.PluralRules.name')" >- strict mode: "TypeError: undefined is not an object (evaluating 'Intl.PluralRules.name')" >-test/intl402/PluralRules/prototype/bind.js: >- default: "TypeError: undefined is not an object (evaluating 'Intl.PluralRules.prototype')" >- strict mode: "TypeError: undefined is not an object (evaluating 'Intl.PluralRules.prototype')" >-test/intl402/PluralRules/prototype/builtins.js: >- default: "TypeError: undefined is not an object (evaluating 'Intl.PluralRules.prototype')" >- strict mode: "TypeError: undefined is not an object (evaluating 'Intl.PluralRules.prototype')" >-test/intl402/PluralRules/prototype/constructor/main.js: >- default: "TypeError: undefined is not an object (evaluating 'Intl.PluralRules.prototype')" >- strict mode: "TypeError: undefined is not an object (evaluating 'Intl.PluralRules.prototype')" >-test/intl402/PluralRules/prototype/constructor/prop-desc.js: >- default: "TypeError: undefined is not an object (evaluating 'Intl.PluralRules.prototype')" >- strict mode: "TypeError: undefined is not an object (evaluating 'Intl.PluralRules.prototype')" >-test/intl402/PluralRules/prototype/properties.js: >- default: "TypeError: undefined is not an object (evaluating 'Object.getOwnPropertyDescriptor(obj, name)')" >- strict mode: "TypeError: undefined is not an object (evaluating 'Object.getOwnPropertyDescriptor(obj, name)')" >-test/intl402/PluralRules/prototype/resolvedOptions/builtins.js: >- default: "TypeError: undefined is not an object (evaluating 'Intl.PluralRules.prototype')" >- strict mode: "TypeError: undefined is not an object (evaluating 'Intl.PluralRules.prototype')" >-test/intl402/PluralRules/prototype/resolvedOptions/length.js: >- default: "TypeError: undefined is not an object (evaluating 'Intl.PluralRules.prototype')" >- strict mode: "TypeError: undefined is not an object (evaluating 'Intl.PluralRules.prototype')" >-test/intl402/PluralRules/prototype/resolvedOptions/name.js: >- default: "TypeError: undefined is not an object (evaluating 'Intl.PluralRules.prototype')" >- strict mode: "TypeError: undefined is not an object (evaluating 'Intl.PluralRules.prototype')" >-test/intl402/PluralRules/prototype/resolvedOptions/prop-desc.js: >- default: "TypeError: undefined is not an object (evaluating 'Intl.PluralRules.prototype')" >- strict mode: "TypeError: undefined is not an object (evaluating 'Intl.PluralRules.prototype')" >-test/intl402/PluralRules/prototype/resolvedOptions/properties.js: >- default: "TypeError: undefined is not a constructor (evaluating 'new Intl.PluralRules()')" >- strict mode: "TypeError: undefined is not a constructor (evaluating 'new Intl.PluralRules()')" >-test/intl402/PluralRules/prototype/select/length.js: >- default: "TypeError: undefined is not an object (evaluating 'Intl.PluralRules.prototype')" >- strict mode: "TypeError: undefined is not an object (evaluating 'Intl.PluralRules.prototype')" >-test/intl402/PluralRules/prototype/select/name.js: >- default: "TypeError: undefined is not an object (evaluating 'Intl.PluralRules.prototype')" >- strict mode: "TypeError: undefined is not an object (evaluating 'Intl.PluralRules.prototype')" >-test/intl402/PluralRules/prototype/select/non-finite.js: >- default: "TypeError: undefined is not a constructor (evaluating 'new Intl.PluralRules()')" >- strict mode: "TypeError: undefined is not a constructor (evaluating 'new Intl.PluralRules()')" >-test/intl402/PluralRules/prototype/select/prop-desc.js: >- default: "TypeError: undefined is not an object (evaluating 'Intl.PluralRules.prototype')" >- strict mode: "TypeError: undefined is not an object (evaluating 'Intl.PluralRules.prototype')" >-test/intl402/PluralRules/prototype/select/tainting.js: >- default: "TypeError: undefined is not a constructor (evaluating 'new Intl.PluralRules()')" >- strict mode: "TypeError: undefined is not a constructor (evaluating 'new Intl.PluralRules()')" >-test/intl402/PluralRules/supportedLocalesOf/arguments.js: >- default: "TypeError: undefined is not a constructor (evaluating 'new Intl.PluralRules(\"und\")')" >- strict mode: "TypeError: undefined is not a constructor (evaluating 'new Intl.PluralRules(\"und\")')" >-test/intl402/PluralRules/supportedLocalesOf/length.js: >- default: "TypeError: undefined is not an object (evaluating 'Intl.PluralRules.supportedLocalesOf')" >- strict mode: "TypeError: undefined is not an object (evaluating 'Intl.PluralRules.supportedLocalesOf')" >-test/intl402/PluralRules/supportedLocalesOf/main.js: >- default: "TypeError: undefined is not a constructor (evaluating 'new Intl.PluralRules()')" >- strict mode: "TypeError: undefined is not a constructor (evaluating 'new Intl.PluralRules()')" >-test/intl402/PluralRules/supportedLocalesOf/name.js: >- default: "TypeError: undefined is not an object (evaluating 'Intl.PluralRules.supportedLocalesOf')" >- strict mode: "TypeError: undefined is not an object (evaluating 'Intl.PluralRules.supportedLocalesOf')" >-test/intl402/PluralRules/supportedLocalesOf/prop-desc.js: >- default: "TypeError: undefined is not an object (evaluating 'Object.getOwnPropertyDescriptor(obj, name)')" >- strict mode: "TypeError: undefined is not an object (evaluating 'Object.getOwnPropertyDescriptor(obj, name)')" >-test/intl402/PluralRules/supportedLocalesOf/supportedLocalesOf.js: >- default: "TypeError: undefined is not an object (evaluating 'Intl.PluralRules.supportedLocalesOf')" >- strict mode: "TypeError: undefined is not an object (evaluating 'Intl.PluralRules.supportedLocalesOf')" >-test/intl402/String/prototype/localeCompare/default-options-object-prototype.js: >- default: 'Test262Error: Expected SameValue(ë0û, ë-1û) to be true' >- strict mode: 'Test262Error: Expected SameValue(ë0û, ë-1û) to be true' >-test/intl402/fallback-locales-are-supported.js: >- default: "Test262Error: Locale zh-Hans-CN is supported, but fallback zh-CN isn't. Expected SameValue(ë-1û, ë-1û) to be false (Testing with NumberFormat.)" >- strict mode: "Test262Error: Locale zh-Hans-CN is supported, but fallback zh-CN isn't. Expected SameValue(ë-1û, ë-1û) to be false (Testing with NumberFormat.)" >-test/intl402/language-tags-canonicalized.js: >- default: 'Test262Error: For de-DD got de-DD; expected de-DE. (Testing with Collator.)' >- strict mode: 'Test262Error: For de-DD got de-DD; expected de-DE. (Testing with Collator.)' >-test/intl402/supportedLocalesOf-returned-array-elements-are-frozen.js: >- default: 'Test262Error: Property length of object returned by SupportedLocales is writable. Expected SameValue(ëtrueû, ëfalseû) to be true (Testing with Collator.)' >- strict mode: 'Test262Error: Property length of object returned by SupportedLocales is writable. Expected SameValue(ëtrueû, ëfalseû) to be true (Testing with Collator.)' >-test/intl402/supportedLocalesOf-taint-Array-2.js: >- default: 'Test262Error: Client code can adversely affect behavior: setter for 0. (Testing with Collator.)' >- strict mode: 'Test262Error: Client code can adversely affect behavior: setter for 0. (Testing with Collator.)' >-test/intl402/supportedLocalesOf-taint-Array.js: >- default: 'Test262Error: Client code can adversely affect behavior: setter for 0. (Testing with Collator.)' >- strict mode: 'Test262Error: Client code can adversely affect behavior: setter for 0. (Testing with Collator.)' >-test/language/arguments-object/mapped/nonconfigurable-nonenumerable-nonwritable-descriptors-set-by-arguments.js: >- default: 'Test262Error: Expected obj[0] to have enumerable:false.' >-test/language/arguments-object/mapped/nonconfigurable-nonenumerable-nonwritable-descriptors-set-by-param.js: >- default: 'Test262Error: Expected obj[0] to have enumerable:false.' >-test/language/arguments-object/mapped/nonconfigurable-nonwritable-descriptors-define-property-consecutive.js: >- default: 'Test262Error: Expected obj[0] to have configurable:false.' >-test/language/arguments-object/mapped/nonconfigurable-nonwritable-descriptors-set-by-arguments.js: >- default: 'Test262Error: Expected obj[0] to have configurable:false.' >-test/language/arguments-object/mapped/nonconfigurable-nonwritable-descriptors-set-by-param.js: >- default: 'Test262Error: Expected obj[0] to have configurable:false.' >-test/language/asi/S7.9_A5.7_T1.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'SyntaxError: The prefix-increment operator requires a reference expression.' >-test/language/block-scope/syntax/redeclaration/async-function-declaration-attempt-to-redeclare-with-async-function-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/block-scope/syntax/redeclaration/async-function-declaration-attempt-to-redeclare-with-async-generator-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/block-scope/syntax/redeclaration/async-function-declaration-attempt-to-redeclare-with-class-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/block-scope/syntax/redeclaration/async-function-declaration-attempt-to-redeclare-with-const-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/block-scope/syntax/redeclaration/async-function-declaration-attempt-to-redeclare-with-function-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/block-scope/syntax/redeclaration/async-function-declaration-attempt-to-redeclare-with-generator-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/block-scope/syntax/redeclaration/async-function-declaration-attempt-to-redeclare-with-let-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/block-scope/syntax/redeclaration/async-function-declaration-attempt-to-redeclare-with-var-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/block-scope/syntax/redeclaration/async-generator-declaration-attempt-to-redeclare-with-async-function-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/block-scope/syntax/redeclaration/async-generator-declaration-attempt-to-redeclare-with-async-generator-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/block-scope/syntax/redeclaration/async-generator-declaration-attempt-to-redeclare-with-class-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/block-scope/syntax/redeclaration/async-generator-declaration-attempt-to-redeclare-with-const-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/block-scope/syntax/redeclaration/async-generator-declaration-attempt-to-redeclare-with-function-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/block-scope/syntax/redeclaration/async-generator-declaration-attempt-to-redeclare-with-generator-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/block-scope/syntax/redeclaration/async-generator-declaration-attempt-to-redeclare-with-let-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/block-scope/syntax/redeclaration/async-generator-declaration-attempt-to-redeclare-with-var-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/block-scope/syntax/redeclaration/class-declaration-attempt-to-redeclare-with-async-function-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/block-scope/syntax/redeclaration/class-declaration-attempt-to-redeclare-with-async-generator-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/block-scope/syntax/redeclaration/class-declaration-attempt-to-redeclare-with-function-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/block-scope/syntax/redeclaration/class-declaration-attempt-to-redeclare-with-generator-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/block-scope/syntax/redeclaration/class-declaration-attempt-to-redeclare-with-var-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/block-scope/syntax/redeclaration/const-declaration-attempt-to-redeclare-with-async-function-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/block-scope/syntax/redeclaration/const-declaration-attempt-to-redeclare-with-async-generator-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/block-scope/syntax/redeclaration/const-declaration-attempt-to-redeclare-with-function-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/block-scope/syntax/redeclaration/const-declaration-attempt-to-redeclare-with-generator-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/block-scope/syntax/redeclaration/const-declaration-attempt-to-redeclare-with-var-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/block-scope/syntax/redeclaration/function-declaration-attempt-to-redeclare-with-async-function-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/block-scope/syntax/redeclaration/function-declaration-attempt-to-redeclare-with-async-generator-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/block-scope/syntax/redeclaration/function-declaration-attempt-to-redeclare-with-class-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/block-scope/syntax/redeclaration/function-declaration-attempt-to-redeclare-with-const-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/block-scope/syntax/redeclaration/function-declaration-attempt-to-redeclare-with-generator-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/block-scope/syntax/redeclaration/function-declaration-attempt-to-redeclare-with-let-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/block-scope/syntax/redeclaration/function-declaration-attempt-to-redeclare-with-var-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/block-scope/syntax/redeclaration/generator-declaration-attempt-to-redeclare-with-async-function-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/block-scope/syntax/redeclaration/generator-declaration-attempt-to-redeclare-with-async-generator-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/block-scope/syntax/redeclaration/generator-declaration-attempt-to-redeclare-with-class-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/block-scope/syntax/redeclaration/generator-declaration-attempt-to-redeclare-with-const-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/block-scope/syntax/redeclaration/generator-declaration-attempt-to-redeclare-with-function-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/block-scope/syntax/redeclaration/generator-declaration-attempt-to-redeclare-with-generator-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/block-scope/syntax/redeclaration/generator-declaration-attempt-to-redeclare-with-let-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/block-scope/syntax/redeclaration/generator-declaration-attempt-to-redeclare-with-var-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/block-scope/syntax/redeclaration/let-declaration-attempt-to-redeclare-with-async-function-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/block-scope/syntax/redeclaration/let-declaration-attempt-to-redeclare-with-async-generator-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/block-scope/syntax/redeclaration/let-declaration-attempt-to-redeclare-with-function-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/block-scope/syntax/redeclaration/let-declaration-attempt-to-redeclare-with-generator-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/block-scope/syntax/redeclaration/let-declaration-attempt-to-redeclare-with-var-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/block-scope/syntax/redeclaration/var-declaration-attempt-to-redeclare-with-async-function-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/block-scope/syntax/redeclaration/var-declaration-attempt-to-redeclare-with-async-generator-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/block-scope/syntax/redeclaration/var-declaration-attempt-to-redeclare-with-class-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/block-scope/syntax/redeclaration/var-declaration-attempt-to-redeclare-with-const-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/block-scope/syntax/redeclaration/var-declaration-attempt-to-redeclare-with-function-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/block-scope/syntax/redeclaration/var-declaration-attempt-to-redeclare-with-generator-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/block-scope/syntax/redeclaration/var-declaration-attempt-to-redeclare-with-let-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/computed-property-names/class/static/method-number.js: >- default: "Test262Error: `compareArray(Object.getOwnPropertyNames(C), ['1', '2', 'length', 'prototype', 'a', 'c', 'name'])` returns `true`" >- strict mode: "Test262Error: `compareArray(Object.getOwnPropertyNames(C), ['1', '2', 'length', 'prototype', 'a', 'c', 'name'])` returns `true`" >-test/language/computed-property-names/class/static/method-string.js: >- default: "Test262Error: `compareArray(Object.getOwnPropertyNames(C), ['length', 'prototype', 'a', 'b', 'c', 'd', 'name'])` returns `true`" >- strict mode: "Test262Error: `compareArray(Object.getOwnPropertyNames(C), ['length', 'prototype', 'a', 'b', 'c', 'd', 'name'])` returns `true`" >-test/language/computed-property-names/class/static/method-symbol.js: >- default: "Test262Error: `compareArray(Object.getOwnPropertyNames(C), ['length', 'prototype', 'a', 'c', 'name'])` returns `true`" >- strict mode: "Test262Error: `compareArray(Object.getOwnPropertyNames(C), ['length', 'prototype', 'a', 'c', 'name'])` returns `true`" >-test/language/computed-property-names/to-name-side-effects/class.js: >- default: 'Test262Error: The result of `counter++` is `0` Expected SameValue(ë1û, ë0û) to be true' >- strict mode: 'Test262Error: The result of `counter++` is `0` Expected SameValue(ë1û, ë0û) to be true' >-test/language/computed-property-names/to-name-side-effects/numbers-class.js: >- default: 'Test262Error: The result of `counter++` is `0` Expected SameValue(ë1û, ë0û) to be true' >- strict mode: 'Test262Error: The result of `counter++` is `0` Expected SameValue(ë1û, ë0û) to be true' >-test/language/computed-property-names/to-name-side-effects/object.js: >- default: 'Test262Error: The result of `counter++` is `0` Expected SameValue(ë1û, ë0û) to be true' >- strict mode: 'Test262Error: The result of `counter++` is `0` Expected SameValue(ë1û, ë0û) to be true' >-test/language/eval-code/direct/new.target-arrow.js: >- default: 'Test262Error: Expected SameValue(ëfunction ReferenceError() {' >- strict mode: 'Test262Error: Expected SameValue(ëfunction ReferenceError() {' >-test/language/eval-code/direct/non-definable-function-with-function.js: >- default: 'Test262Error: Expected SameValue(ë[object Object]û, ëundefinedû) to be true' >-test/language/eval-code/direct/non-definable-function-with-variable.js: >- default: 'Test262Error: Expected SameValue(ë[object Object]û, ëundefinedû) to be true' >-test/language/eval-code/direct/non-definable-global-function.js: >- default: 'Test262Error: Expected true but got false' >-test/language/eval-code/direct/non-definable-global-generator.js: >- default: 'Test262Error: Expected true but got false' >-test/language/eval-code/direct/var-env-func-init-global-update-configurable.js: >- default: 'Test262Error: Expected obj[f] to have enumerable:true.' >-test/language/eval-code/direct/var-env-global-lex-non-strict.js: >- default: "TypeError: Can't create duplicate global variable in eval: 'x'" >-test/language/eval-code/direct/var-env-lower-lex-catch-non-strict.js: >- default: 'Test262Error: Expected a SyntaxError to be thrown but no exception was thrown at all' >-test/language/eval-code/direct/var-env-lower-lex-non-strict.js: >- default: 'Test262Error: Expected a SyntaxError to be thrown but no exception was thrown at all' >-test/language/eval-code/indirect/non-definable-function-with-function.js: >- default: 'Test262Error: declaration preceeding Expected SameValue(ë[object Object]û, ëundefinedû) to be true' >- strict mode: 'Test262Error: declaration preceeding Expected SameValue(ë[object Object]û, ëundefinedû) to be true' >-test/language/eval-code/indirect/non-definable-function-with-variable.js: >- default: 'Test262Error: declaration preceeding Expected SameValue(ë[object Object]û, ëundefinedû) to be true' >- strict mode: 'Test262Error: declaration preceeding Expected SameValue(ë[object Object]û, ëundefinedû) to be true' >-test/language/eval-code/indirect/non-definable-global-function.js: >- default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >- strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >-test/language/eval-code/indirect/non-definable-global-generator.js: >- default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >- strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >-test/language/eval-code/indirect/var-env-func-init-global-update-configurable.js: >- default: 'Test262Error: Expected obj[f] to have enumerable:true.' >- strict mode: 'Test262Error: Expected obj[f] to have enumerable:true.' >-test/language/eval-code/indirect/var-env-global-lex-non-strict.js: >- default: 'Test262Error: Expected SameValue(ëfunction TypeError() {' >- strict mode: 'Test262Error: Expected SameValue(ëfunction TypeError() {' >-test/language/expressions/arrow-function/arrow/binding-tests-1.js: >- strict mode: 'Test262Error: This binding initialization was incorrect for arrow capturing this from closure. Expected SameValue(ëundefinedû, ë[object global]û) to be true' >-test/language/expressions/arrow-function/arrow/binding-tests-2.js: >- strict mode: 'Test262Error: This binding initialization was incorrect for arrow capturing this from closure. Expected SameValue(ëundefinedû, ë[object global]û) to be true' >-test/language/expressions/arrow-function/arrow/binding-tests-3.js: >- strict mode: 'Test262Error: This binding initialization was incorrect for arrow capturing this from closure. Expected SameValue(ëundefinedû, ë[object global]û) to be true' >-test/language/expressions/arrow-function/arrow/capturing-closure-variables-2.js: >- strict mode: "SyntaxError: 'with' statements are not valid in strict mode." >-test/language/expressions/arrow-function/scope-body-lex-distinct.js: >- default: 'Test262Error: Expected a SyntaxError to be thrown but no exception was thrown at all' >-test/language/expressions/arrow-function/scope-param-elem-var-close.js: >- default: 'Test262Error: Expected SameValue(ëinsideû, ëoutsideû) to be true' >-test/language/expressions/arrow-function/scope-param-elem-var-open.js: >- default: 'Test262Error: Expected SameValue(ëinsideû, ëoutsideû) to be true' >-test/language/expressions/arrow-function/scope-param-rest-elem-var-close.js: >- default: 'Test262Error: Expected SameValue(ëinsideû, ëoutsideû) to be true' >-test/language/expressions/assignment/S11.13.1_A5_T4.js: >- default: "ReferenceError: Can't find variable: x" >-test/language/expressions/assignment/S11.13.1_A5_T5.js: >- default: "ReferenceError: Can't find variable: x" >- strict mode: "ReferenceError: Can't find variable: x" >-test/language/expressions/assignment/S11.13.1_A7_T1.js: >- default: 'Test262Error: Expected a TypeError but got a Test262Error' >- strict mode: 'Test262Error: Expected a TypeError but got a Test262Error' >-test/language/expressions/assignment/S11.13.1_A7_T2.js: >- default: 'Test262Error: Expected a TypeError but got a Test262Error' >- strict mode: 'Test262Error: Expected a TypeError but got a Test262Error' >-test/language/expressions/assignment/S11.13.1_A7_T3.js: >- default: 'Test262Error: Expected a DummyError but got a Test262Error' >- strict mode: 'Test262Error: Expected a DummyError but got a Test262Error' >-test/language/expressions/assignment/destructuring/iterator-destructuring-property-reference-target-evaluation-order.js: >- default: 'Test262Error: Expected [source, iterator, iterator-step, iterator-done, target, target-key, target-key-tostring, set] and [source, iterator, target, target-key, target-key-tostring, iterator-step, iterator-done, set] to have the same contents. undefined' >- strict mode: 'Test262Error: Expected [source, iterator, iterator-step, iterator-done, target, target-key, target-key-tostring, set] and [source, iterator, target, target-key, target-key-tostring, iterator-step, iterator-done, set] to have the same contents. undefined' >-test/language/expressions/assignment/destructuring/keyed-destructuring-property-reference-target-evaluation-order.js: >- default: 'Test262Error: Expected [source, source-key, source-key-tostring, get, target, target-key, target-key-tostring, set] and [source, source-key, source-key-tostring, target, target-key, target-key-tostring, get, set] to have the same contents. undefined' >- strict mode: 'Test262Error: Expected [source, source-key, source-key-tostring, get, target, target-key, target-key-tostring, set] and [source, source-key, source-key-tostring, target, target-key, target-key-tostring, get, set] to have the same contents. undefined' >-test/language/expressions/assignment/destructuring/obj-prop-__proto__dup.js: >- default: 'SyntaxError: Attempted to redefine __proto__ property.' >- strict mode: 'SyntaxError: Attempted to redefine __proto__ property.' >-test/language/expressions/assignment/dstr-array-elem-iter-rtrn-close-err.js: >- default: "TypeError: undefined is not a function (near '...[ {}[ yield ] ]...')" >- strict mode: "TypeError: undefined is not a function (near '...[ {}[ yield ] ]...')" >-test/language/expressions/assignment/dstr-array-elem-iter-rtrn-close-null.js: >- default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >- strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >-test/language/expressions/assignment/dstr-array-elem-iter-rtrn-close.js: >- default: 'Test262Error: Expected SameValue(ë0û, ë1û) to be true' >- strict mode: 'Test262Error: Expected SameValue(ë0û, ë1û) to be true' >-test/language/expressions/assignment/dstr-array-elem-iter-thrw-close-err.js: >- default: 'Test262Error: Expected SameValue(ë1û, ë0û) to be true' >- strict mode: 'Test262Error: Expected SameValue(ë1û, ë0û) to be true' >-test/language/expressions/assignment/dstr-array-elem-iter-thrw-close.js: >- default: 'Test262Error: Expected SameValue(ë1û, ë0û) to be true' >- strict mode: 'Test262Error: Expected SameValue(ë1û, ë0û) to be true' >-test/language/expressions/assignment/dstr-array-elem-trlg-iter-list-rtrn-close-err.js: >- default: 'Test262Error: Expected a Test262Error to be thrown but no exception was thrown at all' >- strict mode: 'Test262Error: Expected a Test262Error to be thrown but no exception was thrown at all' >-test/language/expressions/assignment/dstr-array-elem-trlg-iter-list-rtrn-close-null.js: >- default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >- strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >-test/language/expressions/assignment/dstr-array-elem-trlg-iter-list-rtrn-close.js: >- default: 'Test262Error: Expected SameValue(ë0û, ë1û) to be true' >- strict mode: 'Test262Error: Expected SameValue(ë0û, ë1û) to be true' >-test/language/expressions/assignment/dstr-array-elem-trlg-iter-list-thrw-close-err.js: >- default: 'Test262Error: Expected SameValue(ë1û, ë0û) to be true' >- strict mode: 'Test262Error: Expected SameValue(ë1û, ë0û) to be true' >-test/language/expressions/assignment/dstr-array-elem-trlg-iter-list-thrw-close.js: >- default: 'Test262Error: Expected SameValue(ë1û, ë0û) to be true' >- strict mode: 'Test262Error: Expected SameValue(ë1û, ë0û) to be true' >-test/language/expressions/assignment/dstr-array-elem-trlg-iter-rest-rtrn-close-err.js: >- default: 'Test262Error: Expected a Test262Error to be thrown but no exception was thrown at all' >- strict mode: 'Test262Error: Expected a Test262Error to be thrown but no exception was thrown at all' >-test/language/expressions/assignment/dstr-array-elem-trlg-iter-rest-rtrn-close-null.js: >- default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >- strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >-test/language/expressions/assignment/dstr-array-elem-trlg-iter-rest-rtrn-close.js: >- default: 'Test262Error: Expected SameValue(ë11û, ë1û) to be true' >- strict mode: 'Test262Error: Expected SameValue(ë11û, ë1û) to be true' >-test/language/expressions/assignment/dstr-array-elem-trlg-iter-rest-thrw-close-err.js: >- default: 'Test262Error: Expected SameValue(ë11û, ë1û) to be true' >- strict mode: 'Test262Error: Expected SameValue(ë11û, ë1û) to be true' >-test/language/expressions/assignment/dstr-array-elem-trlg-iter-rest-thrw-close.js: >- default: 'Test262Error: Expected SameValue(ë11û, ë1û) to be true' >- strict mode: 'Test262Error: Expected SameValue(ë11û, ë1û) to be true' >-test/language/expressions/assignment/dstr-array-rest-iter-rtrn-close-err.js: >- default: "TypeError: undefined is not a function (near '...[...{}[yield]]...')" >- strict mode: "TypeError: undefined is not a function (near '...[...{}[yield]]...')" >-test/language/expressions/assignment/dstr-array-rest-iter-rtrn-close-null.js: >- default: "TypeError: undefined is not a function (near '...[...{}[yield]]...')" >- strict mode: "TypeError: undefined is not a function (near '...[...{}[yield]]...')" >-test/language/expressions/assignment/dstr-array-rest-iter-rtrn-close.js: >- default: "TypeError: undefined is not a function (near '...[...{}[yield]]...')" >- strict mode: "TypeError: undefined is not a function (near '...[...{}[yield]]...')" >-test/language/expressions/assignment/dstr-array-rest-iter-thrw-close-err.js: >- default: 'Test262Error: Expected SameValue(ë11û, ë0û) to be true' >- strict mode: 'Test262Error: Expected SameValue(ë11û, ë0û) to be true' >-test/language/expressions/assignment/dstr-array-rest-iter-thrw-close.js: >- default: 'Test262Error: Expected SameValue(ë11û, ë0û) to be true' >- strict mode: 'Test262Error: Expected SameValue(ë11û, ë0û) to be true' >-test/language/expressions/assignment/dstr-array-rest-lref-err.js: >- default: 'Test262Error: Expected SameValue(ë1û, ë0û) to be true' >- strict mode: 'Test262Error: Expected SameValue(ë1û, ë0û) to be true' >-test/language/expressions/assignment/fn-name-lhs-cover.js: >- default: 'Test262Error: Expected SameValue(ëtrueû, ëfalseû) to be true' >- strict mode: 'Test262Error: Expected SameValue(ëtrueû, ëfalseû) to be true' >-test/language/expressions/assignment/fn-name-lhs-member.js: >- default: 'Test262Error: Expected SameValue(ëtrueû, ëfalseû) to be true' >- strict mode: 'Test262Error: Expected SameValue(ëtrueû, ëfalseû) to be true' >-test/language/expressions/assignment/non-simple-target.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/expressions/assignment/target-boolean.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/expressions/assignment/target-cover-newtarget.js: >- default: "SyntaxError: new.target can't be the left hand side of an assignment expression." >- strict mode: "SyntaxError: new.target can't be the left hand side of an assignment expression." >-test/language/expressions/assignment/target-cover-yieldexpr.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/expressions/assignment/target-newtarget.js: >- default: "SyntaxError: new.target can't be the left hand side of an assignment expression." >- strict mode: "SyntaxError: new.target can't be the left hand side of an assignment expression." >-test/language/expressions/assignment/target-null.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/expressions/assignment/target-number.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/expressions/assignment/target-string.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/expressions/async-function/early-errors-expression-not-simple-assignment-target.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/expressions/async-generator/early-errors-expression-not-simple-assignment-target.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/expressions/async-generator/early-errors-expression-yield-as-function-binding-identifier.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/expressions/await/early-errors-await-not-simple-assignment-target.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/expressions/call/eval-realm-indirect.js: >- default: 'Test262Error: Expected SameValue(ëinsideû, ëoutsideû) to be true' >-test/language/expressions/call/eval-spread-empty-leading.js: >- default: 'Test262Error: Expected SameValue(ëlocalû, ë0û) to be true' >- strict mode: 'Test262Error: Expected SameValue(ëlocalû, ë0û) to be true' >-test/language/expressions/call/eval-spread-empty-trailing.js: >- default: 'Test262Error: Expected SameValue(ëlocalû, ë0û) to be true' >- strict mode: 'Test262Error: Expected SameValue(ëlocalû, ë0û) to be true' >-test/language/expressions/call/eval-spread.js: >- default: 'Test262Error: Expected SameValue(ëlocalû, ë1û) to be true' >- strict mode: 'Test262Error: Expected SameValue(ëlocalû, ë1û) to be true' >-test/language/expressions/call/tco-cross-realm-class-construct.js: >- default: 'Test262Error: Expected a TypeError but got a TypeError' >- strict mode: 'Test262Error: Expected a TypeError but got a TypeError' >-test/language/expressions/call/tco-cross-realm-class-derived-construct.js: >- default: 'Test262Error: Expected a TypeError but got a TypeError' >- strict mode: 'Test262Error: Expected a TypeError but got a TypeError' >-test/language/expressions/call/tco-cross-realm-fun-call.js: >- default: 'Test262Error: Expected a TypeError but got a TypeError' >- strict mode: 'Test262Error: Expected a TypeError but got a TypeError' >-test/language/expressions/call/tco-cross-realm-fun-construct.js: >- default: 'Test262Error: Expected a TypeError but got a TypeError' >- strict mode: 'Test262Error: Expected a TypeError but got a TypeError' >-test/language/expressions/call/tco-non-eval-function-dynamic.js: >- default: 'RangeError: Maximum call stack size exceeded.' >-test/language/expressions/call/tco-non-eval-function.js: >- default: 'RangeError: Maximum call stack size exceeded.' >-test/language/expressions/call/tco-non-eval-global.js: >- default: 'RangeError: Maximum call stack size exceeded.' >-test/language/expressions/call/tco-non-eval-with.js: >- default: 'RangeError: Maximum call stack size exceeded.' >-test/language/expressions/class/fields-after-same-line-gen-computed-names.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-after-same-line-gen-computed-symbol-names.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-after-same-line-gen-literal-names.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-after-same-line-gen-private-names.js: >- default: "SyntaxError: Invalid character: '#'" >- strict mode: "SyntaxError: Invalid character: '#'" >-test/language/expressions/class/fields-after-same-line-gen-string-literal-names.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-after-same-line-method-computed-names.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-after-same-line-method-computed-symbol-names.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-after-same-line-method-literal-names.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-after-same-line-method-private-names.js: >- default: "SyntaxError: Invalid character: '#'" >- strict mode: "SyntaxError: Invalid character: '#'" >-test/language/expressions/class/fields-after-same-line-method-string-literal-names.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-after-same-line-static-async-gen-computed-names.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-after-same-line-static-async-gen-computed-symbol-names.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-after-same-line-static-async-gen-literal-names.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-after-same-line-static-async-gen-private-names.js: >- default: "SyntaxError: Invalid character: '#'" >- strict mode: "SyntaxError: Invalid character: '#'" >-test/language/expressions/class/fields-after-same-line-static-async-gen-string-literal-names.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-after-same-line-static-async-method-computed-names.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-after-same-line-static-async-method-computed-symbol-names.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-after-same-line-static-async-method-literal-names.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-after-same-line-static-async-method-private-names.js: >- default: "SyntaxError: Invalid character: '#'" >- strict mode: "SyntaxError: Invalid character: '#'" >-test/language/expressions/class/fields-after-same-line-static-async-method-string-literal-names.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-after-same-line-static-gen-computed-names.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-after-same-line-static-gen-computed-symbol-names.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-after-same-line-static-gen-literal-names.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-after-same-line-static-gen-private-names.js: >- default: "SyntaxError: Invalid character: '#'" >- strict mode: "SyntaxError: Invalid character: '#'" >-test/language/expressions/class/fields-after-same-line-static-gen-string-literal-names.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-after-same-line-static-method-computed-names.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-after-same-line-static-method-computed-symbol-names.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-after-same-line-static-method-literal-names.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-after-same-line-static-method-private-names.js: >- default: "SyntaxError: Invalid character: '#'" >- strict mode: "SyntaxError: Invalid character: '#'" >-test/language/expressions/class/fields-after-same-line-static-method-string-literal-names.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-asi-1.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-asi-2.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-asi-5.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-computed-name-propname-constructor.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-computed-name-toprimitive-symbol.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-computed-name-toprimitive.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-computed-variable-name-propname-constructor.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-ctor-called-after-fields-init.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-derived-cls-direct-eval-err-contains-supercall-1.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-derived-cls-direct-eval-err-contains-supercall-2.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-derived-cls-direct-eval-err-contains-supercall.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-derived-cls-direct-eval-err-contains-superproperty-1.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-derived-cls-direct-eval-err-contains-superproperty-2.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-derived-cls-indirect-eval-err-contains-supercall-1.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-derived-cls-indirect-eval-err-contains-supercall-2.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-derived-cls-indirect-eval-err-contains-supercall.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-derived-cls-indirect-eval-err-contains-superproperty-1.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-derived-cls-indirect-eval-err-contains-superproperty-2.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-direct-eval-err-contains-arguments.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-direct-eval-err-contains-newtarget.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-evaluation-error-computed-name-referenceerror.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-evaluation-error-computed-name-toprimitive-err.js: >- default: "SyntaxError: Unexpected token '}'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '}'. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-evaluation-error-computed-name-tostring-err.js: >- default: "SyntaxError: Unexpected token '}'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '}'. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-evaluation-error-computed-name-valueof-err.js: >- default: "SyntaxError: Unexpected token '}'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '}'. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-indirect-eval-err-contains-arguments.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-indirect-eval-err-contains-newtarget.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-init-err-evaluation.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-init-value-defined-after-class.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-init-value-incremental.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-multiple-definitions-computed-names.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-multiple-definitions-computed-symbol-names.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-multiple-definitions-literal-names.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-multiple-definitions-private-names.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-multiple-definitions-string-literal-names.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-multiple-stacked-definitions-computed-names.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-multiple-stacked-definitions-computed-symbol-names.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-multiple-stacked-definitions-literal-names.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-multiple-stacked-definitions-private-names.js: >- default: "SyntaxError: Invalid character: '#'" >- strict mode: "SyntaxError: Invalid character: '#'" >-test/language/expressions/class/fields-multiple-stacked-definitions-string-literal-names.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-new-no-sc-line-method-computed-names.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-new-no-sc-line-method-computed-symbol-names.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-new-no-sc-line-method-literal-names.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-new-no-sc-line-method-private-names.js: >- default: "SyntaxError: Invalid character: '#'" >- strict mode: "SyntaxError: Invalid character: '#'" >-test/language/expressions/class/fields-new-no-sc-line-method-string-literal-names.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-new-sc-line-gen-computed-names.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-new-sc-line-gen-computed-symbol-names.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-new-sc-line-gen-literal-names.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-new-sc-line-gen-private-names.js: >- default: "SyntaxError: Invalid character: '#'" >- strict mode: "SyntaxError: Invalid character: '#'" >-test/language/expressions/class/fields-new-sc-line-gen-string-literal-names.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-new-sc-line-method-computed-names.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-new-sc-line-method-computed-symbol-names.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-new-sc-line-method-literal-names.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-new-sc-line-method-private-names.js: >- default: "SyntaxError: Invalid character: '#'" >- strict mode: "SyntaxError: Invalid character: '#'" >-test/language/expressions/class/fields-new-sc-line-method-string-literal-names.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-redeclaration-symbol.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-redeclaration.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-regular-definitions-computed-names.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-regular-definitions-computed-symbol-names.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-regular-definitions-literal-names.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-regular-definitions-private-names.js: >- default: "SyntaxError: Invalid character: '#'" >- strict mode: "SyntaxError: Invalid character: '#'" >-test/language/expressions/class/fields-regular-definitions-string-literal-names.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-same-line-async-gen-computed-names.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-same-line-async-gen-computed-symbol-names.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-same-line-async-gen-literal-names.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-same-line-async-gen-private-names.js: >- default: "SyntaxError: Invalid character: '#'" >- strict mode: "SyntaxError: Invalid character: '#'" >-test/language/expressions/class/fields-same-line-async-gen-string-literal-names.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-same-line-async-method-computed-names.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-same-line-async-method-computed-symbol-names.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-same-line-async-method-literal-names.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-same-line-async-method-private-names.js: >- default: "SyntaxError: Invalid character: '#'" >- strict mode: "SyntaxError: Invalid character: '#'" >-test/language/expressions/class/fields-same-line-async-method-string-literal-names.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-same-line-gen-computed-names.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-same-line-gen-computed-symbol-names.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-same-line-gen-literal-names.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-same-line-gen-private-names.js: >- default: "SyntaxError: Invalid character: '#'" >- strict mode: "SyntaxError: Invalid character: '#'" >-test/language/expressions/class/fields-same-line-gen-string-literal-names.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-same-line-method-computed-names.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-same-line-method-computed-symbol-names.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-same-line-method-literal-names.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-same-line-method-private-names.js: >- default: "SyntaxError: Invalid character: '#'" >- strict mode: "SyntaxError: Invalid character: '#'" >-test/language/expressions/class/fields-same-line-method-string-literal-names.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-wrapped-in-sc-computed-names.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-wrapped-in-sc-computed-symbol-names.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-wrapped-in-sc-literal-names.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/fields-wrapped-in-sc-private-names.js: >- default: "SyntaxError: Invalid character: '#'" >- strict mode: "SyntaxError: Invalid character: '#'" >-test/language/expressions/class/fields-wrapped-in-sc-string-literal-names.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/expressions/class/name.js: >- default: 'Test262Error: Expected SameValue(ëtrueû, ëfalseû) to be true' >- strict mode: 'Test262Error: Expected SameValue(ëtrueû, ëfalseû) to be true' >-test/language/expressions/compound-assignment/S11.13.2_A5.10_T1.js: >- default: "ReferenceError: Can't find variable: x" >-test/language/expressions/compound-assignment/S11.13.2_A5.10_T2.js: >- default: "ReferenceError: Can't find variable: x" >-test/language/expressions/compound-assignment/S11.13.2_A5.10_T3.js: >- default: "ReferenceError: Can't find variable: x" >-test/language/expressions/compound-assignment/S11.13.2_A5.10_T4.js: >- default: "ReferenceError: Can't find variable: x" >-test/language/expressions/compound-assignment/S11.13.2_A5.10_T5.js: >- default: "ReferenceError: Can't find variable: x" >- strict mode: "TypeError: undefined is not an object (evaluating 'delete this.x')" >-test/language/expressions/compound-assignment/S11.13.2_A5.11_T1.js: >- default: "ReferenceError: Can't find variable: x" >-test/language/expressions/compound-assignment/S11.13.2_A5.11_T2.js: >- default: "ReferenceError: Can't find variable: x" >-test/language/expressions/compound-assignment/S11.13.2_A5.11_T3.js: >- default: "ReferenceError: Can't find variable: x" >-test/language/expressions/compound-assignment/S11.13.2_A5.11_T4.js: >- default: "ReferenceError: Can't find variable: x" >-test/language/expressions/compound-assignment/S11.13.2_A5.11_T5.js: >- default: "ReferenceError: Can't find variable: x" >- strict mode: "TypeError: undefined is not an object (evaluating 'delete this.x')" >-test/language/expressions/compound-assignment/S11.13.2_A5.1_T1.js: >- default: "ReferenceError: Can't find variable: x" >-test/language/expressions/compound-assignment/S11.13.2_A5.1_T2.js: >- default: "ReferenceError: Can't find variable: x" >-test/language/expressions/compound-assignment/S11.13.2_A5.1_T3.js: >- default: "ReferenceError: Can't find variable: x" >-test/language/expressions/compound-assignment/S11.13.2_A5.1_T4.js: >- default: "ReferenceError: Can't find variable: x" >-test/language/expressions/compound-assignment/S11.13.2_A5.1_T5.js: >- default: "ReferenceError: Can't find variable: x" >- strict mode: "TypeError: undefined is not an object (evaluating 'delete this.x')" >-test/language/expressions/compound-assignment/S11.13.2_A5.2_T1.js: >- default: "ReferenceError: Can't find variable: x" >-test/language/expressions/compound-assignment/S11.13.2_A5.2_T2.js: >- default: "ReferenceError: Can't find variable: x" >-test/language/expressions/compound-assignment/S11.13.2_A5.2_T3.js: >- default: "ReferenceError: Can't find variable: x" >-test/language/expressions/compound-assignment/S11.13.2_A5.2_T4.js: >- default: "ReferenceError: Can't find variable: x" >-test/language/expressions/compound-assignment/S11.13.2_A5.2_T5.js: >- default: "ReferenceError: Can't find variable: x" >- strict mode: "TypeError: undefined is not an object (evaluating 'delete this.x')" >-test/language/expressions/compound-assignment/S11.13.2_A5.3_T1.js: >- default: "ReferenceError: Can't find variable: x" >-test/language/expressions/compound-assignment/S11.13.2_A5.3_T2.js: >- default: "ReferenceError: Can't find variable: x" >-test/language/expressions/compound-assignment/S11.13.2_A5.3_T3.js: >- default: "ReferenceError: Can't find variable: x" >-test/language/expressions/compound-assignment/S11.13.2_A5.3_T4.js: >- default: "ReferenceError: Can't find variable: x" >-test/language/expressions/compound-assignment/S11.13.2_A5.3_T5.js: >- default: "ReferenceError: Can't find variable: x" >- strict mode: "TypeError: undefined is not an object (evaluating 'delete this.x')" >-test/language/expressions/compound-assignment/S11.13.2_A5.4_T1.js: >- default: "ReferenceError: Can't find variable: x" >-test/language/expressions/compound-assignment/S11.13.2_A5.4_T2.js: >- default: "ReferenceError: Can't find variable: x" >-test/language/expressions/compound-assignment/S11.13.2_A5.4_T3.js: >- default: "ReferenceError: Can't find variable: x" >-test/language/expressions/compound-assignment/S11.13.2_A5.4_T4.js: >- default: "ReferenceError: Can't find variable: x" >-test/language/expressions/compound-assignment/S11.13.2_A5.4_T5.js: >- default: "ReferenceError: Can't find variable: x" >- strict mode: "TypeError: undefined is not an object (evaluating 'delete this.x')" >-test/language/expressions/compound-assignment/S11.13.2_A5.5_T1.js: >- default: "ReferenceError: Can't find variable: x" >-test/language/expressions/compound-assignment/S11.13.2_A5.5_T2.js: >- default: "ReferenceError: Can't find variable: x" >-test/language/expressions/compound-assignment/S11.13.2_A5.5_T3.js: >- default: "ReferenceError: Can't find variable: x" >-test/language/expressions/compound-assignment/S11.13.2_A5.5_T4.js: >- default: "ReferenceError: Can't find variable: x" >-test/language/expressions/compound-assignment/S11.13.2_A5.5_T5.js: >- default: "ReferenceError: Can't find variable: x" >- strict mode: "TypeError: undefined is not an object (evaluating 'delete this.x')" >-test/language/expressions/compound-assignment/S11.13.2_A5.6_T1.js: >- default: "ReferenceError: Can't find variable: x" >-test/language/expressions/compound-assignment/S11.13.2_A5.6_T2.js: >- default: "ReferenceError: Can't find variable: x" >-test/language/expressions/compound-assignment/S11.13.2_A5.6_T3.js: >- default: "ReferenceError: Can't find variable: x" >-test/language/expressions/compound-assignment/S11.13.2_A5.6_T4.js: >- default: "ReferenceError: Can't find variable: x" >-test/language/expressions/compound-assignment/S11.13.2_A5.6_T5.js: >- default: "ReferenceError: Can't find variable: x" >- strict mode: "TypeError: undefined is not an object (evaluating 'delete this.x')" >-test/language/expressions/compound-assignment/S11.13.2_A5.7_T1.js: >- default: "ReferenceError: Can't find variable: x" >-test/language/expressions/compound-assignment/S11.13.2_A5.7_T2.js: >- default: "ReferenceError: Can't find variable: x" >-test/language/expressions/compound-assignment/S11.13.2_A5.7_T3.js: >- default: "ReferenceError: Can't find variable: x" >-test/language/expressions/compound-assignment/S11.13.2_A5.7_T4.js: >- default: "ReferenceError: Can't find variable: x" >-test/language/expressions/compound-assignment/S11.13.2_A5.7_T5.js: >- default: "ReferenceError: Can't find variable: x" >- strict mode: "TypeError: undefined is not an object (evaluating 'delete this.x')" >-test/language/expressions/compound-assignment/S11.13.2_A5.8_T1.js: >- default: "ReferenceError: Can't find variable: x" >-test/language/expressions/compound-assignment/S11.13.2_A5.8_T2.js: >- default: "ReferenceError: Can't find variable: x" >-test/language/expressions/compound-assignment/S11.13.2_A5.8_T3.js: >- default: "ReferenceError: Can't find variable: x" >-test/language/expressions/compound-assignment/S11.13.2_A5.8_T4.js: >- default: "ReferenceError: Can't find variable: x" >-test/language/expressions/compound-assignment/S11.13.2_A5.8_T5.js: >- default: "ReferenceError: Can't find variable: x" >- strict mode: "TypeError: undefined is not an object (evaluating 'delete this.x')" >-test/language/expressions/compound-assignment/S11.13.2_A5.9_T1.js: >- default: "ReferenceError: Can't find variable: x" >-test/language/expressions/compound-assignment/S11.13.2_A5.9_T2.js: >- default: "ReferenceError: Can't find variable: x" >-test/language/expressions/compound-assignment/S11.13.2_A5.9_T3.js: >- default: "ReferenceError: Can't find variable: x" >-test/language/expressions/compound-assignment/S11.13.2_A5.9_T4.js: >- default: "ReferenceError: Can't find variable: x" >-test/language/expressions/compound-assignment/S11.13.2_A5.9_T5.js: >- default: "ReferenceError: Can't find variable: x" >- strict mode: "TypeError: undefined is not an object (evaluating 'delete this.x')" >-test/language/expressions/compound-assignment/S11.13.2_A7.10_T4.js: >- default: 'Test262Error: Expected true but got false' >- strict mode: 'Test262Error: Expected true but got false' >-test/language/expressions/compound-assignment/S11.13.2_A7.11_T4.js: >- default: 'Test262Error: Expected true but got false' >- strict mode: 'Test262Error: Expected true but got false' >-test/language/expressions/compound-assignment/S11.13.2_A7.1_T4.js: >- default: 'Test262Error: Expected true but got false' >- strict mode: 'Test262Error: Expected true but got false' >-test/language/expressions/compound-assignment/S11.13.2_A7.2_T4.js: >- default: 'Test262Error: Expected true but got false' >- strict mode: 'Test262Error: Expected true but got false' >-test/language/expressions/compound-assignment/S11.13.2_A7.3_T4.js: >- default: 'Test262Error: Expected true but got false' >- strict mode: 'Test262Error: Expected true but got false' >-test/language/expressions/compound-assignment/S11.13.2_A7.4_T4.js: >- default: 'Test262Error: Expected true but got false' >- strict mode: 'Test262Error: Expected true but got false' >-test/language/expressions/compound-assignment/S11.13.2_A7.5_T4.js: >- default: 'Test262Error: Expected true but got false' >- strict mode: 'Test262Error: Expected true but got false' >-test/language/expressions/compound-assignment/S11.13.2_A7.6_T4.js: >- default: 'Test262Error: Expected true but got false' >- strict mode: 'Test262Error: Expected true but got false' >-test/language/expressions/compound-assignment/S11.13.2_A7.7_T4.js: >- default: 'Test262Error: Expected true but got false' >- strict mode: 'Test262Error: Expected true but got false' >-test/language/expressions/compound-assignment/S11.13.2_A7.8_T4.js: >- default: 'Test262Error: Expected true but got false' >- strict mode: 'Test262Error: Expected true but got false' >-test/language/expressions/compound-assignment/S11.13.2_A7.9_T4.js: >- default: 'Test262Error: Expected true but got false' >- strict mode: 'Test262Error: Expected true but got false' >-test/language/expressions/compound-assignment/add-non-simple.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/expressions/compound-assignment/btws-and-non-simple.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/expressions/compound-assignment/btws-or-non-simple.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/expressions/compound-assignment/btws-xor-non-simple.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/expressions/compound-assignment/div-non-simple.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/expressions/compound-assignment/left-shift-non-simple.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/expressions/compound-assignment/mod-div-non-simple.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/expressions/compound-assignment/mult-non-simple.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/expressions/compound-assignment/right-shift-non-simple.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/expressions/compound-assignment/subtract-non-simple.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/expressions/compound-assignment/u-right-shift-non-simple.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/expressions/conditional/in-branch-1.js: >- default: "SyntaxError: Unexpected keyword 'in'. Expected ':' in ternary operator." >- strict mode: "SyntaxError: Unexpected keyword 'in'. Expected ':' in ternary operator." >-test/language/expressions/function/name.js: >- default: 'Test262Error: Expected SameValue(ëtrueû, ëfalseû) to be true' >- strict mode: 'Test262Error: Expected SameValue(ëtrueû, ëfalseû) to be true' >-test/language/expressions/function/scope-body-lex-distinct.js: >- default: 'Test262Error: Expected a SyntaxError to be thrown but no exception was thrown at all' >-test/language/expressions/function/scope-param-elem-var-close.js: >- default: 'Test262Error: Expected SameValue(ëinsideû, ëoutsideû) to be true' >-test/language/expressions/function/scope-param-elem-var-open.js: >- default: 'Test262Error: Expected SameValue(ëinsideû, ëoutsideû) to be true' >-test/language/expressions/function/scope-param-rest-elem-var-close.js: >- default: 'Test262Error: Expected SameValue(ëinsideû, ëoutsideû) to be true' >-test/language/expressions/generators/default-proto.js: >- default: 'Test262Error: Expected SameValue(ë[object Object]û, ë[object Generator]û) to be true' >- strict mode: 'Test262Error: Expected SameValue(ë[object Object]û, ë[object Generator]û) to be true' >-test/language/expressions/generators/eval-body-proto-realm.js: >- default: 'Test262Error: Expected SameValue(ë[object Object]û, ë[object Generator]û) to be true' >- strict mode: 'Test262Error: Expected SameValue(ë[object Object]û, ë[object Generator]û) to be true' >-test/language/expressions/generators/name.js: >- default: 'Test262Error: Expected SameValue(ëtrueû, ëfalseû) to be true' >- strict mode: 'Test262Error: Expected SameValue(ëtrueû, ëfalseû) to be true' >-test/language/expressions/generators/scope-body-lex-distinct.js: >- default: 'Test262Error: Expected a SyntaxError to be thrown but no exception was thrown at all' >-test/language/expressions/generators/scope-param-elem-var-close.js: >- default: 'Test262Error: Expected SameValue(ëinsideû, ëoutsideû) to be true' >-test/language/expressions/generators/scope-param-elem-var-open.js: >- default: 'Test262Error: Expected SameValue(ëinsideû, ëoutsideû) to be true' >-test/language/expressions/generators/scope-param-rest-elem-var-close.js: >- default: 'Test262Error: Expected SameValue(ëinsideû, ëoutsideû) to be true' >-test/language/expressions/instanceof/prototype-getter-with-primitive.js: >- default: "Test262Error: getter for 'prototype' called" >- strict mode: "Test262Error: getter for 'prototype' called" >-test/language/expressions/new/non-ctor-err-realm.js: >- default: 'Test262Error: production including Arguments Expected a TypeError but got a TypeError' >- strict mode: 'Test262Error: production including Arguments Expected a TypeError but got a TypeError' >-test/language/expressions/object/__proto__-permitted-dup.js: >- default: 'SyntaxError: Attempted to redefine __proto__ property.' >- strict mode: 'SyntaxError: Attempted to redefine __proto__ property.' >-test/language/expressions/object/computed-property-evaluation-order.js: >- default: 'Test262Error: Expected SameValue(ë2û, ë1û) to be true' >- strict mode: 'Test262Error: Expected SameValue(ë2û, ë1û) to be true' >-test/language/expressions/object/method-definition/escaped-get.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/expressions/object/method-definition/escaped-set.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/expressions/object/method-definition/yield-as-function-expression-binding-identifier.js: >- strict mode: "SyntaxError: Cannot use 'yield' as a function name in strict mode." >-test/language/expressions/object/method-definition/yield-as-identifier-in-nested-function.js: >- strict mode: "SyntaxError: Unexpected keyword 'yield'. Cannot use yield expression out of generator." >-test/language/expressions/object/method-definition/yield-as-logical-or-expression.js: >- default: "SyntaxError: Unexpected token '?'" >- strict mode: "SyntaxError: Unexpected token '?'" >-test/language/expressions/object/method-definition/yield-as-parameter.js: >- default: "SyntaxError: Cannot use 'yield' as a parameter name in a generator function." >- strict mode: "SyntaxError: Cannot use 'yield' as a parameter name in strict mode." >-test/language/expressions/object/method-definition/yield-star-after-newline.js: >- default: "SyntaxError: Unexpected token '*'" >- strict mode: "SyntaxError: Unexpected token '*'" >-test/language/expressions/object/method-definition/yield-weak-binding.js: >- default: "SyntaxError: Unexpected number '3'" >- strict mode: "SyntaxError: Unexpected number '3'" >-test/language/expressions/object/scope-gen-meth-body-lex-distinct.js: >- default: 'Test262Error: Expected a SyntaxError to be thrown but no exception was thrown at all' >-test/language/expressions/object/scope-gen-meth-param-elem-var-close.js: >- default: 'Test262Error: Expected SameValue(ëinsideû, ëoutsideû) to be true' >-test/language/expressions/object/scope-gen-meth-param-elem-var-open.js: >- default: 'Test262Error: Expected SameValue(ëinsideû, ëoutsideû) to be true' >-test/language/expressions/object/scope-gen-meth-param-rest-elem-var-close.js: >- default: 'Test262Error: Expected SameValue(ëinsideû, ëoutsideû) to be true' >-test/language/expressions/object/scope-getter-body-lex-distinc.js: >- default: 'Test262Error: Expected a SyntaxError to be thrown but no exception was thrown at all' >-test/language/expressions/object/scope-meth-body-lex-distinct.js: >- default: 'Test262Error: Expected a SyntaxError to be thrown but no exception was thrown at all' >-test/language/expressions/object/scope-meth-param-elem-var-close.js: >- default: 'Test262Error: Expected SameValue(ëinsideû, ëoutsideû) to be true' >-test/language/expressions/object/scope-meth-param-elem-var-open.js: >- default: 'Test262Error: Expected SameValue(ëinsideû, ëoutsideû) to be true' >-test/language/expressions/object/scope-meth-param-rest-elem-var-close.js: >- default: 'Test262Error: Expected SameValue(ëinsideû, ëoutsideû) to be true' >-test/language/expressions/object/scope-setter-body-lex-distinc.js: >- default: 'Test262Error: Expected a SyntaxError to be thrown but no exception was thrown at all' >-test/language/expressions/postfix-decrement/S11.3.2_A5_T1.js: >- default: "ReferenceError: Can't find variable: x" >-test/language/expressions/postfix-decrement/S11.3.2_A5_T2.js: >- default: "ReferenceError: Can't find variable: x" >-test/language/expressions/postfix-decrement/S11.3.2_A5_T3.js: >- default: "ReferenceError: Can't find variable: x" >-test/language/expressions/postfix-decrement/S11.3.2_A5_T4.js: >- default: "ReferenceError: Can't find variable: x" >-test/language/expressions/postfix-decrement/S11.3.2_A5_T5.js: >- default: "ReferenceError: Can't find variable: x" >- strict mode: "TypeError: undefined is not an object (evaluating 'delete this.x')" >-test/language/expressions/postfix-decrement/S11.3.2_A6_T3.js: >- default: 'Test262Error: Expected true but got false' >- strict mode: 'Test262Error: Expected true but got false' >-test/language/expressions/postfix-decrement/non-simple.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/expressions/postfix-decrement/target-cover-newtarget.js: >- default: "SyntaxError: new.target can't come before a postfix operator." >- strict mode: "SyntaxError: new.target can't come before a postfix operator." >-test/language/expressions/postfix-decrement/target-cover-yieldexpr.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/expressions/postfix-decrement/target-newtarget.js: >- default: "SyntaxError: new.target can't come before a postfix operator." >- strict mode: "SyntaxError: new.target can't come before a postfix operator." >-test/language/expressions/postfix-increment/S11.3.1_A5_T1.js: >- default: "ReferenceError: Can't find variable: x" >-test/language/expressions/postfix-increment/S11.3.1_A5_T2.js: >- default: "ReferenceError: Can't find variable: x" >-test/language/expressions/postfix-increment/S11.3.1_A5_T3.js: >- default: "ReferenceError: Can't find variable: x" >-test/language/expressions/postfix-increment/S11.3.1_A5_T4.js: >- default: "ReferenceError: Can't find variable: x" >-test/language/expressions/postfix-increment/S11.3.1_A5_T5.js: >- default: "ReferenceError: Can't find variable: x" >- strict mode: "TypeError: undefined is not an object (evaluating 'delete this.x')" >-test/language/expressions/postfix-increment/S11.3.1_A6_T3.js: >- default: 'Test262Error: Expected true but got false' >- strict mode: 'Test262Error: Expected true but got false' >-test/language/expressions/postfix-increment/non-simple.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/expressions/postfix-increment/target-cover-newtarget.js: >- default: "SyntaxError: new.target can't come before a postfix operator." >- strict mode: "SyntaxError: new.target can't come before a postfix operator." >-test/language/expressions/postfix-increment/target-cover-yieldexpr.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/expressions/postfix-increment/target-newtarget.js: >- default: "SyntaxError: new.target can't come before a postfix operator." >- strict mode: "SyntaxError: new.target can't come before a postfix operator." >-test/language/expressions/prefix-decrement/S11.4.5_A5_T1.js: >- default: "ReferenceError: Can't find variable: x" >-test/language/expressions/prefix-decrement/S11.4.5_A5_T2.js: >- default: "ReferenceError: Can't find variable: x" >-test/language/expressions/prefix-decrement/S11.4.5_A5_T3.js: >- default: "ReferenceError: Can't find variable: x" >-test/language/expressions/prefix-decrement/S11.4.5_A5_T4.js: >- default: "ReferenceError: Can't find variable: x" >-test/language/expressions/prefix-decrement/S11.4.5_A5_T5.js: >- default: "ReferenceError: Can't find variable: x" >- strict mode: "TypeError: undefined is not an object (evaluating 'delete this.x')" >-test/language/expressions/prefix-decrement/S11.4.5_A6_T3.js: >- default: 'Test262Error: Expected true but got false' >- strict mode: 'Test262Error: Expected true but got false' >-test/language/expressions/prefix-decrement/non-simple.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/expressions/prefix-decrement/target-cover-newtarget.js: >- default: "SyntaxError: new.target can't come after a prefix operator." >- strict mode: "SyntaxError: new.target can't come after a prefix operator." >-test/language/expressions/prefix-decrement/target-cover-yieldexpr.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/expressions/prefix-decrement/target-newtarget.js: >- default: "SyntaxError: new.target can't come after a prefix operator." >- strict mode: "SyntaxError: new.target can't come after a prefix operator." >-test/language/expressions/prefix-increment/S11.4.4_A5_T1.js: >- default: "ReferenceError: Can't find variable: x" >-test/language/expressions/prefix-increment/S11.4.4_A5_T2.js: >- default: "ReferenceError: Can't find variable: x" >-test/language/expressions/prefix-increment/S11.4.4_A5_T3.js: >- default: "ReferenceError: Can't find variable: x" >-test/language/expressions/prefix-increment/S11.4.4_A5_T4.js: >- default: "ReferenceError: Can't find variable: x" >-test/language/expressions/prefix-increment/S11.4.4_A5_T5.js: >- default: "ReferenceError: Can't find variable: x" >- strict mode: "TypeError: undefined is not an object (evaluating 'delete this.x')" >-test/language/expressions/prefix-increment/S11.4.4_A6_T3.js: >- default: 'Test262Error: Expected true but got false' >- strict mode: 'Test262Error: Expected true but got false' >-test/language/expressions/prefix-increment/non-simple.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/expressions/prefix-increment/target-cover-newtarget.js: >- default: "SyntaxError: new.target can't come after a prefix operator." >- strict mode: "SyntaxError: new.target can't come after a prefix operator." >-test/language/expressions/prefix-increment/target-cover-yieldexpr.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/expressions/prefix-increment/target-newtarget.js: >- default: "SyntaxError: new.target can't come after a prefix operator." >- strict mode: "SyntaxError: new.target can't come after a prefix operator." >-test/language/expressions/super/call-proto-not-ctor.js: >- default: 'Test262Error: did not perform ArgumentsListEvaluation Expected SameValue(ëtrueû, ëfalseû) to be true' >- strict mode: 'Test262Error: did not perform ArgumentsListEvaluation Expected SameValue(ëtrueû, ëfalseû) to be true' >-test/language/expressions/this/S11.1.1_A1.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/expressions/yield/star-iterable.js: >- default: 'Test262Error: First result `done` flag Expected SameValue(ëfalseû, ëundefinedû) to be true' >- strict mode: 'Test262Error: First result `done` flag Expected SameValue(ëfalseû, ëundefinedû) to be true' >-test/language/expressions/yield/star-rhs-iter-nrml-res-done-no-value.js: >- default: 'Test262Error: access count (first iteration) Expected SameValue(ë1û, ë0û) to be true' >- strict mode: 'Test262Error: access count (first iteration) Expected SameValue(ë1û, ë0û) to be true' >-test/language/expressions/yield/star-rhs-iter-rtrn-res-done-no-value.js: >- default: 'Test262Error: access count (second iteration) Expected SameValue(ë1û, ë0û) to be true' >- strict mode: 'Test262Error: access count (second iteration) Expected SameValue(ë1û, ë0û) to be true' >-test/language/expressions/yield/star-rhs-iter-thrw-res-done-no-value.js: >- default: 'Test262Error: access count (second iteration) Expected SameValue(ë1û, ë0û) to be true' >- strict mode: 'Test262Error: access count (second iteration) Expected SameValue(ë1û, ë0û) to be true' >-test/language/function-code/each-param-has-own-non-shared-eval-scope.js: >- default: 'Test262Error: Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/language/function-code/each-param-has-own-scope.js: >- default: 'Test262Error: Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/language/function-code/eval-param-env-with-computed-key.js: >- default: 'Test262Error: Expected SameValue(ëinnerû, ëouterû) to be true' >-test/language/function-code/eval-param-env-with-prop-initializer.js: >- default: 'Test262Error: Expected SameValue(ëinnerû, ëouterû) to be true' >-test/language/global-code/script-decl-func-err-non-configurable.js: >- default: 'Test262Error: writable, non-enumerable data property Expected a TypeError to be thrown but no exception was thrown at all' >- strict mode: 'Test262Error: writable, non-enumerable data property Expected a TypeError to be thrown but no exception was thrown at all' >-test/language/global-code/script-decl-func-err-non-extensible.js: >- default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >- strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >-test/language/global-code/script-decl-var-err.js: >- default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >- strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >-test/language/identifiers/other_id_continue-escaped.js: >- default: "SyntaxError: Invalid unicode escape in identifier: 'a\\u2118'" >- strict mode: "SyntaxError: Invalid unicode escape in identifier: 'a\\u2118'" >-test/language/identifiers/other_id_continue.js: >- default: "SyntaxError: Invalid character '\\u2118'" >- strict mode: "SyntaxError: Invalid character '\\u2118'" >-test/language/identifiers/other_id_start-escaped.js: >- default: "SyntaxError: Invalid unicode escape in identifier: '\\u2118'" >- strict mode: "SyntaxError: Invalid unicode escape in identifier: '\\u2118'" >-test/language/identifiers/other_id_start.js: >- default: "SyntaxError: Invalid character '\\u2118'" >- strict mode: "SyntaxError: Invalid character '\\u2118'" >-test/language/identifiers/val-yield-strict.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: "SyntaxError: Cannot use 'yield' as a variable name in strict mode." >-test/language/identifiers/vertical-tilde-continue-escaped.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/identifiers/vertical-tilde-continue.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/identifiers/vertical-tilde-start-escaped.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/identifiers/vertical-tilde-start.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/line-terminators/S7.3_A2.3.js: >- default: 'Test262Error: Expected a SyntaxError to be thrown but no exception was thrown at all' >- strict mode: 'Test262Error: Expected a SyntaxError to be thrown but no exception was thrown at all' >-test/language/line-terminators/S7.3_A2.4.js: >- default: 'Test262Error: Expected a SyntaxError to be thrown but no exception was thrown at all' >- strict mode: 'Test262Error: Expected a SyntaxError to be thrown but no exception was thrown at all' >-test/language/literals/numeric/numeric-separator-literal-bil-bd-nsl-bd.js: >- default: 'SyntaxError: No space between binary literal and identifier' >- strict mode: 'SyntaxError: No space between binary literal and identifier' >-test/language/literals/numeric/numeric-separator-literal-bil-bd-nsl-bds.js: >- default: 'SyntaxError: No space between binary literal and identifier' >- strict mode: 'SyntaxError: No space between binary literal and identifier' >-test/language/literals/numeric/numeric-separator-literal-bil-bds-nsl-bd.js: >- default: 'SyntaxError: No space between binary literal and identifier' >- strict mode: 'SyntaxError: No space between binary literal and identifier' >-test/language/literals/numeric/numeric-separator-literal-bil-bds-nsl-bds.js: >- default: 'SyntaxError: No space between binary literal and identifier' >- strict mode: 'SyntaxError: No space between binary literal and identifier' >-test/language/literals/numeric/numeric-separator-literal-dd-dot-dd-ep-sign-minus-dd-nsl-dd.js: >- default: 'SyntaxError: No identifiers allowed directly after numeric literal' >- strict mode: 'SyntaxError: No identifiers allowed directly after numeric literal' >-test/language/literals/numeric/numeric-separator-literal-dd-dot-dd-ep-sign-minus-dds-nsl-dd.js: >- default: 'SyntaxError: No identifiers allowed directly after numeric literal' >- strict mode: 'SyntaxError: No identifiers allowed directly after numeric literal' >-test/language/literals/numeric/numeric-separator-literal-dd-dot-dd-ep-sign-plus-dd-nsl-dd.js: >- default: 'SyntaxError: No identifiers allowed directly after numeric literal' >- strict mode: 'SyntaxError: No identifiers allowed directly after numeric literal' >-test/language/literals/numeric/numeric-separator-literal-dd-dot-dd-ep-sign-plus-dds-nsl-dd.js: >- default: 'SyntaxError: No identifiers allowed directly after numeric literal' >- strict mode: 'SyntaxError: No identifiers allowed directly after numeric literal' >-test/language/literals/numeric/numeric-separator-literal-dd-nsl-dd-one-of.js: >- default: 'SyntaxError: No identifiers allowed directly after numeric literal' >- strict mode: 'SyntaxError: No identifiers allowed directly after numeric literal' >-test/language/literals/numeric/numeric-separator-literal-dds-dot-dd-nsl-dd-ep-dd.js: >- default: 'SyntaxError: No identifiers allowed directly after numeric literal' >- strict mode: 'SyntaxError: No identifiers allowed directly after numeric literal' >-test/language/literals/numeric/numeric-separator-literal-dds-nsl-dd.js: >- default: 'SyntaxError: No identifiers allowed directly after numeric literal' >- strict mode: 'SyntaxError: No identifiers allowed directly after numeric literal' >-test/language/literals/numeric/numeric-separator-literal-dot-dd-nsl-dd-ep.js: >- default: 'SyntaxError: No identifiers allowed directly after numeric literal' >- strict mode: 'SyntaxError: No identifiers allowed directly after numeric literal' >-test/language/literals/numeric/numeric-separator-literal-dot-dd-nsl-dds-ep.js: >- default: 'SyntaxError: No identifiers allowed directly after numeric literal' >- strict mode: 'SyntaxError: No identifiers allowed directly after numeric literal' >-test/language/literals/numeric/numeric-separator-literal-dot-dds-nsl-dd-ep.js: >- default: 'SyntaxError: No identifiers allowed directly after numeric literal' >- strict mode: 'SyntaxError: No identifiers allowed directly after numeric literal' >-test/language/literals/numeric/numeric-separator-literal-dot-dds-nsl-dds-ep.js: >- default: 'SyntaxError: No identifiers allowed directly after numeric literal' >- strict mode: 'SyntaxError: No identifiers allowed directly after numeric literal' >-test/language/literals/numeric/numeric-separator-literal-hil-hd-nsl-hd.js: >- default: 'SyntaxError: No space between hexadecimal literal and identifier' >- strict mode: 'SyntaxError: No space between hexadecimal literal and identifier' >-test/language/literals/numeric/numeric-separator-literal-hil-hd-nsl-hds.js: >- default: 'SyntaxError: No space between hexadecimal literal and identifier' >- strict mode: 'SyntaxError: No space between hexadecimal literal and identifier' >-test/language/literals/numeric/numeric-separator-literal-hil-hds-nsl-hd.js: >- default: 'SyntaxError: No space between hexadecimal literal and identifier' >- strict mode: 'SyntaxError: No space between hexadecimal literal and identifier' >-test/language/literals/numeric/numeric-separator-literal-hil-hds-nsl-hds.js: >- default: 'SyntaxError: No space between hexadecimal literal and identifier' >- strict mode: 'SyntaxError: No space between hexadecimal literal and identifier' >-test/language/literals/numeric/numeric-separator-literal-hil-od-nsl-od-one-of.js: >- default: 'SyntaxError: No space between hexadecimal literal and identifier' >- strict mode: 'SyntaxError: No space between hexadecimal literal and identifier' >-test/language/literals/numeric/numeric-separator-literal-nzd-nsl-dd-one-of.js: >- default: 'SyntaxError: No identifiers allowed directly after numeric literal' >- strict mode: 'SyntaxError: No identifiers allowed directly after numeric literal' >-test/language/literals/numeric/numeric-separator-literal-nzd-nsl-dd.js: >- default: 'SyntaxError: No identifiers allowed directly after numeric literal' >- strict mode: 'SyntaxError: No identifiers allowed directly after numeric literal' >-test/language/literals/numeric/numeric-separator-literal-nzd-nsl-dds.js: >- default: 'SyntaxError: No identifiers allowed directly after numeric literal' >- strict mode: 'SyntaxError: No identifiers allowed directly after numeric literal' >-test/language/literals/numeric/numeric-separator-literal-oil-od-nsl-od-one-of.js: >- default: 'SyntaxError: No space between octal literal and identifier' >- strict mode: 'SyntaxError: No space between octal literal and identifier' >-test/language/literals/numeric/numeric-separator-literal-oil-od-nsl-od.js: >- default: 'SyntaxError: No space between octal literal and identifier' >- strict mode: 'SyntaxError: No space between octal literal and identifier' >-test/language/literals/numeric/numeric-separator-literal-oil-od-nsl-ods.js: >- default: 'SyntaxError: No space between octal literal and identifier' >- strict mode: 'SyntaxError: No space between octal literal and identifier' >-test/language/literals/numeric/numeric-separator-literal-oil-ods-nsl-od.js: >- default: 'SyntaxError: No space between octal literal and identifier' >- strict mode: 'SyntaxError: No space between octal literal and identifier' >-test/language/literals/numeric/numeric-separator-literal-oil-ods-nsl-ods.js: >- default: 'SyntaxError: No space between octal literal and identifier' >- strict mode: 'SyntaxError: No space between octal literal and identifier' >-test/language/literals/numeric/numeric-separator-literal-sign-minus-dds-nsl-dd.js: >- default: 'SyntaxError: No identifiers allowed directly after numeric literal' >- strict mode: 'SyntaxError: No identifiers allowed directly after numeric literal' >-test/language/literals/numeric/numeric-separator-literal-sign-plus-dds-nsl-dd.js: >- default: 'SyntaxError: No identifiers allowed directly after numeric literal' >- strict mode: 'SyntaxError: No identifiers allowed directly after numeric literal' >-test/language/literals/regexp/early-err-bad-flag.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/literals/regexp/early-err-dup-flag.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/literals/regexp/u-dec-esc.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/literals/regexp/u-invalid-class-escape.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/literals/regexp/u-invalid-extended-pattern-char.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/literals/regexp/u-invalid-legacy-octal-escape.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/literals/regexp/u-invalid-non-empty-class-ranges-no-dash-a.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/literals/regexp/u-invalid-non-empty-class-ranges-no-dash-ab.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/literals/regexp/u-invalid-non-empty-class-ranges-no-dash-b.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/literals/regexp/u-invalid-non-empty-class-ranges.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/literals/regexp/u-invalid-oob-decimal-escape.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/literals/regexp/u-invalid-quantifiable-assertion.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/module-code/instn-resolve-order-depth.js: >- module: "SyntaxError: 'break' is only valid inside a switch or loop statement." >-test/language/module-code/instn-resolve-order-src.js: >- module: "SyntaxError: 'break' is only valid inside a switch or loop statement." >-test/language/module-code/namespace/internals/define-own-property.js: >- module: 'Test262Error: Reflect.defineProperty: local1 Expected SameValue(ëfalseû, ëtrueû) to be true' >-test/language/module-code/namespace/internals/object-keys-binding-uninit.js: >- module: 'Test262Error: Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/language/module-code/namespace/internals/set.js: >- module: 'Test262Error: Reflect.defineProperty: local1 Expected SameValue(ëfalseû, ëtrueû) to be true' >-test/language/module-code/parse-err-hoist-lex-fun.js: >- module: 'Test262: This statement should not be evaluated.' >-test/language/module-code/parse-err-hoist-lex-gen.js: >- module: 'Test262: This statement should not be evaluated.' >-test/language/module-code/parse-err-reference.js: >- module: 'Test262: This statement should not be evaluated.' >-test/language/module-code/privatename-valid-no-earlyerr.js: >- module: "SyntaxError: Invalid character: '#'" >-test/language/statements/class/classelementname-abrupt-completion.js: >- default: "SyntaxError: Unexpected token '}'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '}'. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/definition/methods-gen-yield-as-function-expression-binding-identifier.js: >- default: "SyntaxError: Cannot use 'yield' as a function name in strict mode." >- strict mode: "SyntaxError: Cannot use 'yield' as a function name in strict mode." >-test/language/statements/class/definition/methods-gen-yield-as-identifier-in-nested-function.js: >- default: "SyntaxError: Unexpected keyword 'yield'. Cannot use yield expression out of generator." >- strict mode: "SyntaxError: Unexpected keyword 'yield'. Cannot use yield expression out of generator." >-test/language/statements/class/definition/methods-gen-yield-as-logical-or-expression.js: >- default: "SyntaxError: Unexpected token '?'" >- strict mode: "SyntaxError: Unexpected token '?'" >-test/language/statements/class/definition/methods-gen-yield-as-parameter.js: >- default: "SyntaxError: Cannot use 'yield' as a parameter name in strict mode." >- strict mode: "SyntaxError: Cannot use 'yield' as a parameter name in strict mode." >-test/language/statements/class/definition/methods-gen-yield-star-after-newline.js: >- default: "SyntaxError: Unexpected token '*'" >- strict mode: "SyntaxError: Unexpected token '*'" >-test/language/statements/class/definition/methods-gen-yield-weak-binding.js: >- default: "SyntaxError: Unexpected number '3'" >- strict mode: "SyntaxError: Unexpected number '3'" >-test/language/statements/class/fielddefinition-initializer-abrupt-completion.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-after-same-line-gen-computed-names.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-after-same-line-gen-computed-symbol-names.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-after-same-line-gen-literal-names.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-after-same-line-gen-private-names.js: >- default: "SyntaxError: Invalid character: '#'" >- strict mode: "SyntaxError: Invalid character: '#'" >-test/language/statements/class/fields-after-same-line-gen-string-literal-names.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-after-same-line-method-computed-names.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-after-same-line-method-computed-symbol-names.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-after-same-line-method-literal-names.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-after-same-line-method-private-names.js: >- default: "SyntaxError: Invalid character: '#'" >- strict mode: "SyntaxError: Invalid character: '#'" >-test/language/statements/class/fields-after-same-line-method-string-literal-names.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-after-same-line-static-async-gen-computed-names.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-after-same-line-static-async-gen-computed-symbol-names.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-after-same-line-static-async-gen-literal-names.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-after-same-line-static-async-gen-private-names.js: >- default: "SyntaxError: Invalid character: '#'" >- strict mode: "SyntaxError: Invalid character: '#'" >-test/language/statements/class/fields-after-same-line-static-async-gen-string-literal-names.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-after-same-line-static-async-method-computed-names.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-after-same-line-static-async-method-computed-symbol-names.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-after-same-line-static-async-method-literal-names.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-after-same-line-static-async-method-private-names.js: >- default: "SyntaxError: Invalid character: '#'" >- strict mode: "SyntaxError: Invalid character: '#'" >-test/language/statements/class/fields-after-same-line-static-async-method-string-literal-names.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-after-same-line-static-gen-computed-names.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-after-same-line-static-gen-computed-symbol-names.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-after-same-line-static-gen-literal-names.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-after-same-line-static-gen-private-names.js: >- default: "SyntaxError: Invalid character: '#'" >- strict mode: "SyntaxError: Invalid character: '#'" >-test/language/statements/class/fields-after-same-line-static-gen-string-literal-names.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-after-same-line-static-method-computed-names.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-after-same-line-static-method-computed-symbol-names.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-after-same-line-static-method-literal-names.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-after-same-line-static-method-private-names.js: >- default: "SyntaxError: Invalid character: '#'" >- strict mode: "SyntaxError: Invalid character: '#'" >-test/language/statements/class/fields-after-same-line-static-method-string-literal-names.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-asi-1.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-asi-2.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-asi-5.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-computed-name-propname-constructor.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-computed-name-toprimitive-symbol.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-computed-name-toprimitive.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-computed-variable-name-propname-constructor.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-ctor-called-after-fields-init.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-derived-cls-direct-eval-err-contains-supercall-1.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-derived-cls-direct-eval-err-contains-supercall-2.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-derived-cls-direct-eval-err-contains-supercall.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-derived-cls-direct-eval-err-contains-superproperty-1.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-derived-cls-direct-eval-err-contains-superproperty-2.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-derived-cls-indirect-eval-err-contains-supercall-1.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-derived-cls-indirect-eval-err-contains-supercall-2.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-derived-cls-indirect-eval-err-contains-supercall.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-derived-cls-indirect-eval-err-contains-superproperty-1.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-derived-cls-indirect-eval-err-contains-superproperty-2.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-direct-eval-err-contains-arguments.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-direct-eval-err-contains-newtarget.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-evaluation-error-computed-name-referenceerror.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-evaluation-error-computed-name-toprimitive-err.js: >- default: "SyntaxError: Unexpected token '}'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '}'. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-evaluation-error-computed-name-tostring-err.js: >- default: "SyntaxError: Unexpected token '}'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '}'. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-evaluation-error-computed-name-valueof-err.js: >- default: "SyntaxError: Unexpected token '}'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '}'. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-indirect-eval-err-contains-arguments.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-indirect-eval-err-contains-newtarget.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-init-err-evaluation.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-init-value-defined-after-class.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-init-value-incremental.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-multiple-definitions-computed-names.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-multiple-definitions-computed-symbol-names.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-multiple-definitions-literal-names.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-multiple-definitions-private-names.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-multiple-definitions-string-literal-names.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-multiple-stacked-definitions-computed-names.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-multiple-stacked-definitions-computed-symbol-names.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-multiple-stacked-definitions-literal-names.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-multiple-stacked-definitions-private-names.js: >- default: "SyntaxError: Invalid character: '#'" >- strict mode: "SyntaxError: Invalid character: '#'" >-test/language/statements/class/fields-multiple-stacked-definitions-string-literal-names.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-new-no-sc-line-method-computed-names.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-new-no-sc-line-method-computed-symbol-names.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-new-no-sc-line-method-literal-names.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-new-no-sc-line-method-private-names.js: >- default: "SyntaxError: Invalid character: '#'" >- strict mode: "SyntaxError: Invalid character: '#'" >-test/language/statements/class/fields-new-no-sc-line-method-string-literal-names.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-new-sc-line-gen-computed-names.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-new-sc-line-gen-computed-symbol-names.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-new-sc-line-gen-literal-names.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-new-sc-line-gen-private-names.js: >- default: "SyntaxError: Invalid character: '#'" >- strict mode: "SyntaxError: Invalid character: '#'" >-test/language/statements/class/fields-new-sc-line-gen-string-literal-names.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-new-sc-line-method-computed-names.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-new-sc-line-method-computed-symbol-names.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-new-sc-line-method-literal-names.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-new-sc-line-method-private-names.js: >- default: "SyntaxError: Invalid character: '#'" >- strict mode: "SyntaxError: Invalid character: '#'" >-test/language/statements/class/fields-new-sc-line-method-string-literal-names.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-redeclaration-symbol.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-redeclaration.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-regular-definitions-computed-names.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-regular-definitions-computed-symbol-names.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-regular-definitions-literal-names.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-regular-definitions-private-names.js: >- default: "SyntaxError: Invalid character: '#'" >- strict mode: "SyntaxError: Invalid character: '#'" >-test/language/statements/class/fields-regular-definitions-string-literal-names.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-same-line-async-gen-computed-names.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-same-line-async-gen-computed-symbol-names.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-same-line-async-gen-literal-names.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-same-line-async-gen-private-names.js: >- default: "SyntaxError: Invalid character: '#'" >- strict mode: "SyntaxError: Invalid character: '#'" >-test/language/statements/class/fields-same-line-async-gen-string-literal-names.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-same-line-async-method-computed-names.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-same-line-async-method-computed-symbol-names.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-same-line-async-method-literal-names.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-same-line-async-method-private-names.js: >- default: "SyntaxError: Invalid character: '#'" >- strict mode: "SyntaxError: Invalid character: '#'" >-test/language/statements/class/fields-same-line-async-method-string-literal-names.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-same-line-gen-computed-names.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-same-line-gen-computed-symbol-names.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-same-line-gen-literal-names.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-same-line-gen-private-names.js: >- default: "SyntaxError: Invalid character: '#'" >- strict mode: "SyntaxError: Invalid character: '#'" >-test/language/statements/class/fields-same-line-gen-string-literal-names.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-same-line-method-computed-names.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-same-line-method-computed-symbol-names.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-same-line-method-literal-names.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-same-line-method-private-names.js: >- default: "SyntaxError: Invalid character: '#'" >- strict mode: "SyntaxError: Invalid character: '#'" >-test/language/statements/class/fields-same-line-method-string-literal-names.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-wrapped-in-sc-computed-names.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-wrapped-in-sc-computed-symbol-names.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-wrapped-in-sc-literal-names.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/fields-wrapped-in-sc-private-names.js: >- default: "SyntaxError: Invalid character: '#'" >- strict mode: "SyntaxError: Invalid character: '#'" >-test/language/statements/class/fields-wrapped-in-sc-string-literal-names.js: >- default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/privatefieldadd-typeerror.js: >- default: "SyntaxError: Invalid character: '#'" >- strict mode: "SyntaxError: Invalid character: '#'" >-test/language/statements/class/privatefieldget-success-1.js: >- default: "SyntaxError: Invalid character: '#'" >- strict mode: "SyntaxError: Invalid character: '#'" >-test/language/statements/class/privatefieldget-success-2.js: >- default: "SyntaxError: Invalid character: '#'" >- strict mode: "SyntaxError: Invalid character: '#'" >-test/language/statements/class/privatefieldget-success-3.js: >- default: "SyntaxError: Invalid character: '#'" >- strict mode: "SyntaxError: Invalid character: '#'" >-test/language/statements/class/privatefieldget-success-4.js: >- default: "SyntaxError: Invalid character: '#'" >- strict mode: "SyntaxError: Invalid character: '#'" >-test/language/statements/class/privatefieldget-success-5.js: >- default: "SyntaxError: Invalid character: '#'" >- strict mode: "SyntaxError: Invalid character: '#'" >-test/language/statements/class/privatefieldget-typeerror-1.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/privatefieldget-typeerror-2.js: >- default: "SyntaxError: Invalid character: '#'" >- strict mode: "SyntaxError: Invalid character: '#'" >-test/language/statements/class/privatefieldget-typeerror-3.js: >- default: "SyntaxError: Invalid character: '#'" >- strict mode: "SyntaxError: Invalid character: '#'" >-test/language/statements/class/privatefieldget-typeerror-4.js: >- default: "SyntaxError: Invalid character: '#'" >- strict mode: "SyntaxError: Invalid character: '#'" >-test/language/statements/class/privatefieldget-typeerror-5.js: >- default: "SyntaxError: Invalid character: '#'" >- strict mode: "SyntaxError: Invalid character: '#'" >-test/language/statements/class/privatefieldset-typeerror-1.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/privatefieldset-typeerror-2.js: >- default: "SyntaxError: Invalid character: '#'" >- strict mode: "SyntaxError: Invalid character: '#'" >-test/language/statements/class/privatefieldset-typeerror-3.js: >- default: "SyntaxError: Invalid character: '#'" >- strict mode: "SyntaxError: Invalid character: '#'" >-test/language/statements/class/privatefieldset-typeerror-4.js: >- default: "SyntaxError: Invalid character: '#'" >- strict mode: "SyntaxError: Invalid character: '#'" >-test/language/statements/class/privatefieldset-typeerror-5.js: >- default: "SyntaxError: Invalid character: '#'" >- strict mode: "SyntaxError: Invalid character: '#'" >-test/language/statements/class/privatename-not-valid-eval-earlyerr-3.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/statements/class/privatename-not-valid-eval-earlyerr-4.js: >- default: "SyntaxError: Invalid character: '#'" >- strict mode: "SyntaxError: Invalid character: '#'" >-test/language/statements/class/privatename-not-valid-eval-earlyerr-5.js: >- default: "SyntaxError: Invalid character: '#'" >- strict mode: "SyntaxError: Invalid character: '#'" >-test/language/statements/class/privatename-valid-no-earlyerr.js: >- default: "SyntaxError: Invalid character: '#'" >- strict mode: "SyntaxError: Invalid character: '#'" >-test/language/statements/class/subclass/bound-function.js: >- default: 'Test262Error: Expected SameValue(ë[object Object]û, ë[object Object]û) to be true' >- strict mode: 'Test262Error: Expected SameValue(ë[object Object]û, ë[object Object]û) to be true' >-test/language/statements/class/subclass/builtin-objects/ArrayBuffer/regular-subclassing.js: >- default: 'Test262Error: Expected true but got false' >- strict mode: 'Test262Error: Expected true but got false' >-test/language/statements/class/subclass/class-definition-null-proto-super.js: >- default: 'Test262Error: Expected SameValue(ë1û, ë0û) to be true' >- strict mode: 'Test262Error: Expected SameValue(ë1û, ë0û) to be true' >-test/language/statements/class/subclass/class-definition-superclass-generator.js: >- default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >- strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >-test/language/statements/class/super-fielddefinition-initializer-abrupt-completion.js: >- default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >- strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >-test/language/statements/const/redeclaration-error-from-within-strict-mode-function-const.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/statements/do-while/let-array-with-newline.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/statements/for-await-of/let-array-with-newline.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/statements/for-in/12.6.4-2.js: >- default: 'Test262Error: accessedProp Expected SameValue(ëtrueû, ëfalseû) to be true' >- strict mode: 'Test262Error: accessedProp Expected SameValue(ëtrueû, ëfalseû) to be true' >-test/language/statements/for-in/dstr-array-elem-nested-array-invalid.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/statements/for-in/dstr-array-elem-nested-obj-invalid.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/statements/for-in/dstr-array-elem-target-simple-strict.js: >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/statements/for-in/dstr-array-rest-before-element.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/statements/for-in/dstr-array-rest-before-elision.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/statements/for-in/dstr-array-rest-before-rest.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/statements/for-in/dstr-array-rest-elision-invalid.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/statements/for-in/dstr-array-rest-init.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/statements/for-in/dstr-array-rest-nested-array-invalid.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/statements/for-in/dstr-array-rest-nested-obj-invalid.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/statements/for-in/dstr-obj-id-simple-strict.js: >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/statements/for-in/dstr-obj-prop-nested-array-invalid.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/statements/for-in/dstr-obj-prop-nested-obj-invalid.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/statements/for-in/dstr-obj-rest-not-last-element-invalid.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/statements/for-in/head-const-bound-names-in-stmt.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/statements/for-in/head-let-bound-names-in-stmt.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/statements/for-in/head-lhs-cover-non-asnmt-trgt.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/statements/for-in/head-lhs-invalid-asnmt-ptrn-ary.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/statements/for-in/head-lhs-invalid-asnmt-ptrn-obj.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/statements/for-in/head-lhs-let.js: >- default: "SyntaxError: Cannot use the keyword 'in' as a lexical variable name." >-test/language/statements/for-in/head-lhs-non-asnmt-trgt.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/statements/for-in/identifier-let-allowed-as-lefthandside-expression-not-strict.js: >- default: "SyntaxError: Cannot use the keyword 'in' as a lexical variable name." >-test/language/statements/for-in/let-array-with-newline.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/statements/for-in/scope-body-lex-open.js: >- default: 'Test262Error: Expected a ReferenceError to be thrown but no exception was thrown at all' >- strict mode: 'Test262Error: Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/language/statements/for-in/scope-head-lex-close.js: >- default: 'Test262Error: Expected a ReferenceError to be thrown but no exception was thrown at all' >- strict mode: 'Test262Error: Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/language/statements/for-in/scope-head-lex-open.js: >- default: 'Test262Error: Expected a ReferenceError to be thrown but no exception was thrown at all' >- strict mode: 'Test262Error: Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/language/statements/for-of/dstr-array-elem-iter-rtrn-close-err.js: >- default: "TypeError: undefined is not a function (near '...[ {}[ yield ] ]...')" >- strict mode: "TypeError: undefined is not a function (near '...[ {}[ yield ] ]...')" >-test/language/statements/for-of/dstr-array-elem-iter-rtrn-close-null.js: >- default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >- strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >-test/language/statements/for-of/dstr-array-elem-iter-rtrn-close.js: >- default: 'Test262Error: Expected SameValue(ë0û, ë1û) to be true' >- strict mode: 'Test262Error: Expected SameValue(ë0û, ë1û) to be true' >-test/language/statements/for-of/dstr-array-elem-iter-thrw-close-err.js: >- default: 'Test262Error: Expected SameValue(ë1û, ë0û) to be true' >- strict mode: 'Test262Error: Expected SameValue(ë1û, ë0û) to be true' >-test/language/statements/for-of/dstr-array-elem-iter-thrw-close.js: >- default: 'Test262Error: Expected SameValue(ë1û, ë0û) to be true' >- strict mode: 'Test262Error: Expected SameValue(ë1û, ë0û) to be true' >-test/language/statements/for-of/dstr-array-elem-nested-array-invalid.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/statements/for-of/dstr-array-elem-nested-obj-invalid.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/statements/for-of/dstr-array-elem-target-simple-strict.js: >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/statements/for-of/dstr-array-elem-trlg-iter-list-rtrn-close-err.js: >- default: 'Test262Error: Expected a Test262Error to be thrown but no exception was thrown at all' >- strict mode: 'Test262Error: Expected a Test262Error to be thrown but no exception was thrown at all' >-test/language/statements/for-of/dstr-array-elem-trlg-iter-list-rtrn-close-null.js: >- default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >- strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >-test/language/statements/for-of/dstr-array-elem-trlg-iter-list-rtrn-close.js: >- default: 'Test262Error: Expected SameValue(ë0û, ë1û) to be true' >- strict mode: 'Test262Error: Expected SameValue(ë0û, ë1û) to be true' >-test/language/statements/for-of/dstr-array-elem-trlg-iter-list-thrw-close-err.js: >- default: 'Test262Error: Expected SameValue(ë1û, ë0û) to be true' >- strict mode: 'Test262Error: Expected SameValue(ë1û, ë0û) to be true' >-test/language/statements/for-of/dstr-array-elem-trlg-iter-list-thrw-close.js: >- default: 'Test262Error: Expected SameValue(ë1û, ë0û) to be true' >- strict mode: 'Test262Error: Expected SameValue(ë1û, ë0û) to be true' >-test/language/statements/for-of/dstr-array-elem-trlg-iter-rest-rtrn-close-err.js: >- default: 'Test262Error: Expected a Test262Error to be thrown but no exception was thrown at all' >- strict mode: 'Test262Error: Expected a Test262Error to be thrown but no exception was thrown at all' >-test/language/statements/for-of/dstr-array-elem-trlg-iter-rest-rtrn-close-null.js: >- default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >- strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >-test/language/statements/for-of/dstr-array-elem-trlg-iter-rest-rtrn-close.js: >- default: 'Test262Error: Expected SameValue(ë11û, ë1û) to be true' >- strict mode: 'Test262Error: Expected SameValue(ë11û, ë1û) to be true' >-test/language/statements/for-of/dstr-array-elem-trlg-iter-rest-thrw-close-err.js: >- default: 'Test262Error: Expected SameValue(ë11û, ë1û) to be true' >- strict mode: 'Test262Error: Expected SameValue(ë11û, ë1û) to be true' >-test/language/statements/for-of/dstr-array-elem-trlg-iter-rest-thrw-close.js: >- default: 'Test262Error: Expected SameValue(ë11û, ë1û) to be true' >- strict mode: 'Test262Error: Expected SameValue(ë11û, ë1û) to be true' >-test/language/statements/for-of/dstr-array-rest-before-element.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/statements/for-of/dstr-array-rest-before-elision.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/statements/for-of/dstr-array-rest-before-rest.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/statements/for-of/dstr-array-rest-elision-invalid.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/statements/for-of/dstr-array-rest-init.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/statements/for-of/dstr-array-rest-iter-rtrn-close-err.js: >- default: "TypeError: undefined is not a function (near '...[...{}[yield]]...')" >- strict mode: "TypeError: undefined is not a function (near '...[...{}[yield]]...')" >-test/language/statements/for-of/dstr-array-rest-iter-rtrn-close-null.js: >- default: "TypeError: undefined is not a function (near '...[...{}[yield]]...')" >- strict mode: "TypeError: undefined is not a function (near '...[...{}[yield]]...')" >-test/language/statements/for-of/dstr-array-rest-iter-rtrn-close.js: >- default: "TypeError: undefined is not a function (near '...[...{}[yield]]...')" >- strict mode: "TypeError: undefined is not a function (near '...[...{}[yield]]...')" >-test/language/statements/for-of/dstr-array-rest-iter-thrw-close-err.js: >- default: 'Test262Error: Expected SameValue(ë11û, ë0û) to be true' >- strict mode: 'Test262Error: Expected SameValue(ë11û, ë0û) to be true' >-test/language/statements/for-of/dstr-array-rest-iter-thrw-close.js: >- default: 'Test262Error: Expected SameValue(ë11û, ë0û) to be true' >- strict mode: 'Test262Error: Expected SameValue(ë11û, ë0û) to be true' >-test/language/statements/for-of/dstr-array-rest-lref-err.js: >- default: 'Test262Error: Expected SameValue(ë1û, ë0û) to be true' >- strict mode: 'Test262Error: Expected SameValue(ë1û, ë0û) to be true' >-test/language/statements/for-of/dstr-array-rest-nested-array-invalid.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/statements/for-of/dstr-array-rest-nested-obj-invalid.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/statements/for-of/dstr-obj-id-put-const.js: >- default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >- strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >-test/language/statements/for-of/dstr-obj-id-put-let.js: >- default: 'Test262Error: Expected a ReferenceError to be thrown but no exception was thrown at all' >- strict mode: 'Test262Error: Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/language/statements/for-of/dstr-obj-id-simple-strict.js: >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/statements/for-of/dstr-obj-prop-nested-array-invalid.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/statements/for-of/dstr-obj-prop-nested-obj-invalid.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/statements/for-of/dstr-obj-rest-not-last-element-invalid.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/statements/for-of/head-const-bound-names-in-stmt.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/statements/for-of/head-decl-no-expr.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/statements/for-of/head-expr-no-expr.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/statements/for-of/head-let-bound-names-in-stmt.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/statements/for-of/head-lhs-cover-non-asnmt-trgt.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/statements/for-of/head-lhs-invalid-asnmt-ptrn-ary.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/statements/for-of/head-lhs-invalid-asnmt-ptrn-obj.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/statements/for-of/head-lhs-non-asnmt-trgt.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/statements/for-of/head-var-no-expr.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/statements/for-of/let-array-with-newline.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/statements/for/head-let-bound-names-in-stmt.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/statements/for/head-lhs-let.js: >- default: "SyntaxError: Unexpected token ';'. Expected a parameter pattern or a ')' in parameter list." >-test/language/statements/for/let-array-with-newline.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/statements/for/scope-body-lex-open.js: >- default: 'Test262Error: Expected SameValue(ëinsideû, ëoutsideû) to be true' >- strict mode: 'Test262Error: Expected SameValue(ëinsideû, ëoutsideû) to be true' >-test/language/statements/function/scope-body-lex-distinct.js: >- default: 'Test262Error: Expected a SyntaxError to be thrown but no exception was thrown at all' >-test/language/statements/function/scope-param-elem-var-close.js: >- default: 'Test262Error: Expected SameValue(ëinsideû, ëoutsideû) to be true' >-test/language/statements/function/scope-param-elem-var-open.js: >- default: 'Test262Error: Expected SameValue(ëinsideû, ëoutsideû) to be true' >-test/language/statements/function/scope-param-rest-elem-var-close.js: >- default: 'Test262Error: Expected SameValue(ëinsideû, ëoutsideû) to be true' >-test/language/statements/generators/default-proto.js: >- default: 'Test262Error: Expected SameValue(ë[object Object]û, ë[object Generator]û) to be true' >- strict mode: 'Test262Error: Expected SameValue(ë[object Object]û, ë[object Generator]û) to be true' >-test/language/statements/generators/scope-body-lex-distinct.js: >- default: 'Test262Error: Expected a SyntaxError to be thrown but no exception was thrown at all' >-test/language/statements/generators/scope-param-elem-var-close.js: >- default: 'Test262Error: Expected SameValue(ëinsideû, ëoutsideû) to be true' >-test/language/statements/generators/scope-param-elem-var-open.js: >- default: 'Test262Error: Expected SameValue(ëinsideû, ëoutsideû) to be true' >-test/language/statements/generators/scope-param-rest-elem-var-close.js: >- default: 'Test262Error: Expected SameValue(ëinsideû, ëoutsideû) to be true' >-test/language/statements/if/if-async-fun-else-async-fun.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/statements/if/if-async-fun-else-stmt.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/statements/if/if-async-fun-no-else.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/statements/if/if-async-gen-else-async-gen.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/statements/if/if-async-gen-else-stmt.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/statements/if/if-async-gen-no-else.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/statements/if/if-gen-else-gen.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/statements/if/if-gen-else-stmt.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/statements/if/if-gen-no-else.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/statements/if/if-stmt-else-async-fun.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/statements/if/if-stmt-else-async-gen.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/statements/if/if-stmt-else-gen.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/statements/if/let-array-with-newline.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/statements/labeled/decl-async-function.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/statements/labeled/decl-async-generator.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/statements/labeled/decl-gen.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/statements/labeled/let-array-with-newline.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/statements/labeled/value-await-non-module-escaped.js: >- default: "SyntaxError: Unexpected escaped characters in keyword token: 'aw\\u0061it'" >- strict mode: "SyntaxError: Unexpected escaped characters in keyword token: 'aw\\u0061it'" >-test/language/statements/labeled/value-yield-non-strict-escaped.js: >- default: "SyntaxError: Unexpected escaped characters in keyword token: 'yi\\u0065ld'" >-test/language/statements/labeled/value-yield-non-strict.js: >- strict mode: "SyntaxError: Cannot use 'yield' as a label in strict mode." >-test/language/statements/labeled/value-yield-strict.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: "SyntaxError: Cannot use 'yield' as a label in strict mode." >-test/language/statements/let/block-local-closure-set-before-initialization.js: >- default: 'Test262Error: Expected a ReferenceError to be thrown but no exception was thrown at all' >-test/language/statements/let/redeclaration-error-from-within-strict-mode-function.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/statements/let/syntax/attempt-to-redeclare-let-binding-with-function-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/statements/let/syntax/attempt-to-redeclare-let-binding-with-var.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/statements/let/syntax/escaped-let.js: >- default: "SyntaxError: Unexpected escaped characters in keyword token: 'l\\u0065t'" >-test/language/statements/switch/syntax/redeclaration/async-function-declaration-attempt-to-redeclare-with-async-function-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/statements/switch/syntax/redeclaration/async-function-declaration-attempt-to-redeclare-with-async-generator-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/statements/switch/syntax/redeclaration/async-function-declaration-attempt-to-redeclare-with-class-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/statements/switch/syntax/redeclaration/async-function-declaration-attempt-to-redeclare-with-const-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/statements/switch/syntax/redeclaration/async-function-declaration-attempt-to-redeclare-with-function-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/statements/switch/syntax/redeclaration/async-function-declaration-attempt-to-redeclare-with-generator-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/statements/switch/syntax/redeclaration/async-function-declaration-attempt-to-redeclare-with-let-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/statements/switch/syntax/redeclaration/async-function-declaration-attempt-to-redeclare-with-var-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/statements/switch/syntax/redeclaration/async-generator-declaration-attempt-to-redeclare-with-async-function-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/statements/switch/syntax/redeclaration/async-generator-declaration-attempt-to-redeclare-with-async-generator-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/statements/switch/syntax/redeclaration/async-generator-declaration-attempt-to-redeclare-with-class-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/statements/switch/syntax/redeclaration/async-generator-declaration-attempt-to-redeclare-with-const-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/statements/switch/syntax/redeclaration/async-generator-declaration-attempt-to-redeclare-with-function-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/statements/switch/syntax/redeclaration/async-generator-declaration-attempt-to-redeclare-with-generator-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/statements/switch/syntax/redeclaration/async-generator-declaration-attempt-to-redeclare-with-let-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/statements/switch/syntax/redeclaration/async-generator-declaration-attempt-to-redeclare-with-var-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/statements/switch/syntax/redeclaration/class-declaration-attempt-to-redeclare-with-async-function-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/statements/switch/syntax/redeclaration/class-declaration-attempt-to-redeclare-with-async-generator-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/statements/switch/syntax/redeclaration/class-declaration-attempt-to-redeclare-with-function-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/statements/switch/syntax/redeclaration/class-declaration-attempt-to-redeclare-with-generator-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/statements/switch/syntax/redeclaration/class-declaration-attempt-to-redeclare-with-var-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/statements/switch/syntax/redeclaration/const-declaration-attempt-to-redeclare-with-async-function-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/statements/switch/syntax/redeclaration/const-declaration-attempt-to-redeclare-with-async-generator-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/statements/switch/syntax/redeclaration/const-declaration-attempt-to-redeclare-with-function-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/statements/switch/syntax/redeclaration/const-declaration-attempt-to-redeclare-with-generator-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/statements/switch/syntax/redeclaration/const-declaration-attempt-to-redeclare-with-var-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/statements/switch/syntax/redeclaration/function-declaration-attempt-to-redeclare-with-async-function-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/statements/switch/syntax/redeclaration/function-declaration-attempt-to-redeclare-with-async-generator-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/statements/switch/syntax/redeclaration/function-declaration-attempt-to-redeclare-with-class-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/statements/switch/syntax/redeclaration/function-declaration-attempt-to-redeclare-with-const-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/statements/switch/syntax/redeclaration/function-declaration-attempt-to-redeclare-with-generator-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/statements/switch/syntax/redeclaration/function-declaration-attempt-to-redeclare-with-let-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/statements/switch/syntax/redeclaration/function-declaration-attempt-to-redeclare-with-var-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/statements/switch/syntax/redeclaration/generator-declaration-attempt-to-redeclare-with-async-function-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/statements/switch/syntax/redeclaration/generator-declaration-attempt-to-redeclare-with-async-generator-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/statements/switch/syntax/redeclaration/generator-declaration-attempt-to-redeclare-with-class-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/statements/switch/syntax/redeclaration/generator-declaration-attempt-to-redeclare-with-const-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/statements/switch/syntax/redeclaration/generator-declaration-attempt-to-redeclare-with-function-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/statements/switch/syntax/redeclaration/generator-declaration-attempt-to-redeclare-with-generator-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/statements/switch/syntax/redeclaration/generator-declaration-attempt-to-redeclare-with-let-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/statements/switch/syntax/redeclaration/generator-declaration-attempt-to-redeclare-with-var-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/statements/switch/syntax/redeclaration/let-declaration-attempt-to-redeclare-with-async-function-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/statements/switch/syntax/redeclaration/let-declaration-attempt-to-redeclare-with-async-generator-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/statements/switch/syntax/redeclaration/let-declaration-attempt-to-redeclare-with-function-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/statements/switch/syntax/redeclaration/let-declaration-attempt-to-redeclare-with-generator-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/statements/switch/syntax/redeclaration/let-declaration-attempt-to-redeclare-with-var-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/statements/switch/syntax/redeclaration/var-declaration-attempt-to-redeclare-with-async-function-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/statements/switch/syntax/redeclaration/var-declaration-attempt-to-redeclare-with-async-generator-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/statements/switch/syntax/redeclaration/var-declaration-attempt-to-redeclare-with-class-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/statements/switch/syntax/redeclaration/var-declaration-attempt-to-redeclare-with-const-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/statements/switch/syntax/redeclaration/var-declaration-attempt-to-redeclare-with-function-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/statements/switch/syntax/redeclaration/var-declaration-attempt-to-redeclare-with-generator-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/statements/switch/syntax/redeclaration/var-declaration-attempt-to-redeclare-with-let-declaration.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/statements/try/early-catch-lex.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/statements/try/early-catch-var.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/statements/try/scope-catch-param-lex-open.js: >- default: "SyntaxError: Unexpected identifier 'x'. Cannot declare a lexical variable twice: 'x'." >- strict mode: "SyntaxError: Unexpected identifier 'x'. Cannot declare a lexical variable twice: 'x'." >-test/language/statements/while/let-array-with-newline.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/statements/with/let-array-with-newline.js: >- default: 'Test262: This statement should not be evaluated.' >-test/language/types/boolean/S8.3_A2.1.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/types/boolean/S8.3_A2.2.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/types/reference/S8.7.2_A1_T1.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/types/reference/S8.7.2_A1_T2.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >-test/language/types/reference/put-value-prop-base-primitive-realm.js: >- default: 'Test262Error: number Expected SameValue(ë0û, ë1û) to be true' >- strict mode: 'Test262Error: number Expected SameValue(ë0û, ë1û) to be true' >-test/language/types/reference/put-value-prop-base-primitive.js: >- default: 'Test262Error: number Expected SameValue(ë0û, ë1û) to be true' >- strict mode: 'TypeError: Attempted to assign to readonly property.' >-test/language/white-space/mongolian-vowel-separator-eval.js: >- default: 'Test262Error: Expected a SyntaxError to be thrown but no exception was thrown at all' >- strict mode: 'Test262Error: Expected a SyntaxError to be thrown but no exception was thrown at all' >-test/language/white-space/mongolian-vowel-separator.js: >- default: 'Test262: This statement should not be evaluated.' >- strict mode: 'Test262: This statement should not be evaluated.' >diff --git a/JSTests/ChangeLog b/JSTests/ChangeLog >index 7081d2e0a2c2d4d9c364915144e416e9f23b9a34..f294a171254d459b72043454831279d8b0cc4523 100644 >--- a/JSTests/ChangeLog >+++ b/JSTests/ChangeLog >@@ -1,3 +1,13 @@ >+2018-05-07 Valerie R Young <valerie@bocoup.com> >+ >+ test262/Runner.pm: move input files to JSTests/test262 >+ https://bugs.webkit.org/show_bug.cgi?id=185389 >+ >+ Reviewed by NOBODY (OOPS!). >+ >+ * test262/config.yaml: Renamed from Tools/Scripts/test262/config.yaml. >+ * test262/expectations.yaml: Renamed from Tools/Scripts/test262/expectations.yaml. >+ > 2018-05-05 Filip Pizlo <fpizlo@apple.com> > > DFG AI should have O(1) clobbering >diff --git a/JSTests/test262/config.yaml b/JSTests/test262/config.yaml >new file mode 100644 >index 0000000000000000000000000000000000000000..1381dd6b4cf5f81d1f4dea7638dd57acbab22d91 >--- /dev/null >+++ b/JSTests/test262/config.yaml >@@ -0,0 +1,13 @@ >+ >+--- >+skip: >+ # (uncomment to skip tests based on path) >+ # paths: >+ # - test/built-ins/Atomics >+ features: >+ - SharedArrayBuffer >+ - Atomics >+ - BigInt >+ files: >+ - test/built-ins/Array/prototype/reverse/length-exceeding-integer-limit-with-object.js >+ - test/built-ins/Array/prototype/unshift/length-near-integer-limit.js >diff --git a/JSTests/test262/expectations.yaml b/JSTests/test262/expectations.yaml >new file mode 100644 >index 0000000000000000000000000000000000000000..8742fbb8bda46ce4e65982207f9a0c917bf14091 >--- /dev/null >+++ b/JSTests/test262/expectations.yaml >@@ -0,0 +1,4097 @@ >+--- >+test/annexB/built-ins/Function/createdynfn-html-close-comment-params.js: >+ default: "SyntaxError: Unexpected token '--'. Expected a parameter pattern or a ')' in parameter list." >+ strict mode: "SyntaxError: Unexpected token '--'. Expected a parameter pattern or a ')' in parameter list." >+test/annexB/built-ins/Function/createdynfn-html-open-comment-params.js: >+ default: "SyntaxError: Unexpected token '}'. Expected a parameter pattern or a ')' in parameter list." >+ strict mode: "SyntaxError: Unexpected token '}'. Expected a parameter pattern or a ')' in parameter list." >+test/annexB/built-ins/RegExp/named-groups/non-unicode-malformed.js: >+ default: 'SyntaxError: Invalid regular expression: invalid group specifier name' >+ strict mode: 'SyntaxError: Invalid regular expression: invalid group specifier name' >+test/annexB/built-ins/RegExp/prototype/Symbol.split/Symbol.match-getter-recompiles-source.js: >+ default: 'Test262Error: Expected SameValue(ëû, ëaû) to be true' >+ strict mode: 'Test262Error: Expected SameValue(ëû, ëaû) to be true' >+test/annexB/built-ins/RegExp/prototype/compile/pattern-string-invalid-u.js: >+ default: 'Test262Error: invalid pattern: { Expected a SyntaxError to be thrown but no exception was thrown at all' >+ strict mode: 'Test262Error: invalid pattern: { Expected a SyntaxError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/func-block-decl-eval-func-skip-early-err-block.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/func-block-decl-eval-func-skip-early-err-for-in.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/func-block-decl-eval-func-skip-early-err-for-of.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/func-block-decl-eval-func-skip-early-err-for.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/func-block-decl-eval-func-skip-early-err-switch.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/func-block-decl-eval-func-skip-early-err-try.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/func-if-decl-else-decl-a-eval-func-skip-early-err-block.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/func-if-decl-else-decl-a-eval-func-skip-early-err-for-in.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/func-if-decl-else-decl-a-eval-func-skip-early-err-for-of.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/func-if-decl-else-decl-a-eval-func-skip-early-err-for.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/func-if-decl-else-decl-a-eval-func-skip-early-err-switch.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/func-if-decl-else-decl-a-eval-func-skip-early-err-try.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/func-if-decl-else-decl-b-eval-func-skip-early-err-block.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/func-if-decl-else-decl-b-eval-func-skip-early-err-for-in.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/func-if-decl-else-decl-b-eval-func-skip-early-err-for-of.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/func-if-decl-else-decl-b-eval-func-skip-early-err-for.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/func-if-decl-else-decl-b-eval-func-skip-early-err-switch.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/func-if-decl-else-decl-b-eval-func-skip-early-err-try.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/func-if-decl-else-stmt-eval-func-skip-early-err-block.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/func-if-decl-else-stmt-eval-func-skip-early-err-for-in.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/func-if-decl-else-stmt-eval-func-skip-early-err-for-of.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/func-if-decl-else-stmt-eval-func-skip-early-err-for.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/func-if-decl-else-stmt-eval-func-skip-early-err-switch.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/func-if-decl-else-stmt-eval-func-skip-early-err-try.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/func-if-decl-no-else-eval-func-skip-early-err-block.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/func-if-decl-no-else-eval-func-skip-early-err-for-in.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/func-if-decl-no-else-eval-func-skip-early-err-for-of.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/func-if-decl-no-else-eval-func-skip-early-err-for.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/func-if-decl-no-else-eval-func-skip-early-err-switch.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/func-if-decl-no-else-eval-func-skip-early-err-try.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/func-if-stmt-else-decl-eval-func-skip-early-err-block.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/func-if-stmt-else-decl-eval-func-skip-early-err-for-in.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/func-if-stmt-else-decl-eval-func-skip-early-err-for-of.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/func-if-stmt-else-decl-eval-func-skip-early-err-for.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/func-if-stmt-else-decl-eval-func-skip-early-err-switch.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/func-if-stmt-else-decl-eval-func-skip-early-err-try.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/func-switch-case-eval-func-skip-early-err-block.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/func-switch-case-eval-func-skip-early-err-for-in.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/func-switch-case-eval-func-skip-early-err-for-of.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/func-switch-case-eval-func-skip-early-err-for.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/func-switch-case-eval-func-skip-early-err-switch.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/func-switch-case-eval-func-skip-early-err-try.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/func-switch-dflt-eval-func-skip-early-err-block.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/func-switch-dflt-eval-func-skip-early-err-for-in.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/func-switch-dflt-eval-func-skip-early-err-for-of.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/func-switch-dflt-eval-func-skip-early-err-for.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/func-switch-dflt-eval-func-skip-early-err-switch.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/func-switch-dflt-eval-func-skip-early-err-try.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/global-block-decl-eval-global-existing-global-init.js: >+ default: 'Test262Error: binding is initialized to `undefined` Expected SameValue(ëxû, ëundefinedû) to be true' >+test/annexB/language/eval-code/direct/global-block-decl-eval-global-skip-early-err-block.js: >+ default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/global-block-decl-eval-global-skip-early-err-for-in.js: >+ default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/global-block-decl-eval-global-skip-early-err-for-of.js: >+ default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/global-block-decl-eval-global-skip-early-err-for.js: >+ default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/global-block-decl-eval-global-skip-early-err-switch.js: >+ default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/global-block-decl-eval-global-skip-early-err-try.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/global-if-decl-else-decl-a-eval-global-existing-global-init.js: >+ default: 'Test262Error: binding is initialized to `undefined` Expected SameValue(ëxû, ëundefinedû) to be true' >+test/annexB/language/eval-code/direct/global-if-decl-else-decl-a-eval-global-skip-early-err-block.js: >+ default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/global-if-decl-else-decl-a-eval-global-skip-early-err-for-in.js: >+ default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/global-if-decl-else-decl-a-eval-global-skip-early-err-for-of.js: >+ default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/global-if-decl-else-decl-a-eval-global-skip-early-err-for.js: >+ default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/global-if-decl-else-decl-a-eval-global-skip-early-err-switch.js: >+ default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/global-if-decl-else-decl-a-eval-global-skip-early-err-try.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/global-if-decl-else-decl-b-eval-global-existing-global-init.js: >+ default: 'Test262Error: binding is initialized to `undefined` Expected SameValue(ëxû, ëundefinedû) to be true' >+test/annexB/language/eval-code/direct/global-if-decl-else-decl-b-eval-global-skip-early-err-block.js: >+ default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/global-if-decl-else-decl-b-eval-global-skip-early-err-for-in.js: >+ default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/global-if-decl-else-decl-b-eval-global-skip-early-err-for-of.js: >+ default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/global-if-decl-else-decl-b-eval-global-skip-early-err-for.js: >+ default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/global-if-decl-else-decl-b-eval-global-skip-early-err-switch.js: >+ default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/global-if-decl-else-decl-b-eval-global-skip-early-err-try.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/global-if-decl-else-stmt-eval-global-existing-global-init.js: >+ default: 'Test262Error: binding is initialized to `undefined` Expected SameValue(ëxû, ëundefinedû) to be true' >+test/annexB/language/eval-code/direct/global-if-decl-else-stmt-eval-global-skip-early-err-block.js: >+ default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/global-if-decl-else-stmt-eval-global-skip-early-err-for-in.js: >+ default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/global-if-decl-else-stmt-eval-global-skip-early-err-for-of.js: >+ default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/global-if-decl-else-stmt-eval-global-skip-early-err-for.js: >+ default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/global-if-decl-else-stmt-eval-global-skip-early-err-switch.js: >+ default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/global-if-decl-else-stmt-eval-global-skip-early-err-try.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/global-if-decl-no-else-eval-global-existing-global-init.js: >+ default: 'Test262Error: binding is initialized to `undefined` Expected SameValue(ëxû, ëundefinedû) to be true' >+test/annexB/language/eval-code/direct/global-if-decl-no-else-eval-global-skip-early-err-block.js: >+ default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/global-if-decl-no-else-eval-global-skip-early-err-for-in.js: >+ default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/global-if-decl-no-else-eval-global-skip-early-err-for-of.js: >+ default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/global-if-decl-no-else-eval-global-skip-early-err-for.js: >+ default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/global-if-decl-no-else-eval-global-skip-early-err-switch.js: >+ default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/global-if-decl-no-else-eval-global-skip-early-err-try.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/global-if-stmt-else-decl-eval-global-existing-global-init.js: >+ default: 'Test262Error: binding is initialized to `undefined` Expected SameValue(ëxû, ëundefinedû) to be true' >+test/annexB/language/eval-code/direct/global-if-stmt-else-decl-eval-global-skip-early-err-block.js: >+ default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/global-if-stmt-else-decl-eval-global-skip-early-err-for-in.js: >+ default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/global-if-stmt-else-decl-eval-global-skip-early-err-for-of.js: >+ default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/global-if-stmt-else-decl-eval-global-skip-early-err-for.js: >+ default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/global-if-stmt-else-decl-eval-global-skip-early-err-switch.js: >+ default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/global-if-stmt-else-decl-eval-global-skip-early-err-try.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/global-switch-case-eval-global-existing-global-init.js: >+ default: 'Test262Error: binding is initialized to `undefined` Expected SameValue(ëxû, ëundefinedû) to be true' >+test/annexB/language/eval-code/direct/global-switch-case-eval-global-skip-early-err-block.js: >+ default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/global-switch-case-eval-global-skip-early-err-for-in.js: >+ default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/global-switch-case-eval-global-skip-early-err-for-of.js: >+ default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/global-switch-case-eval-global-skip-early-err-for.js: >+ default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/global-switch-case-eval-global-skip-early-err-switch.js: >+ default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/global-switch-case-eval-global-skip-early-err-try.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/global-switch-dflt-eval-global-existing-global-init.js: >+ default: 'Test262Error: binding is initialized to `undefined` Expected SameValue(ëxû, ëundefinedû) to be true' >+test/annexB/language/eval-code/direct/global-switch-dflt-eval-global-skip-early-err-block.js: >+ default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/global-switch-dflt-eval-global-skip-early-err-for-in.js: >+ default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/global-switch-dflt-eval-global-skip-early-err-for-of.js: >+ default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/global-switch-dflt-eval-global-skip-early-err-for.js: >+ default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/global-switch-dflt-eval-global-skip-early-err-switch.js: >+ default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/global-switch-dflt-eval-global-skip-early-err-try.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/direct/var-env-lower-lex-catch-non-strict.js: >+ default: "SyntaxError: Can't create duplicate variable in eval: 'err'" >+test/annexB/language/eval-code/indirect/global-block-decl-eval-global-existing-global-init.js: >+ default: 'Test262Error: binding is initialized to `undefined` Expected SameValue(ëxû, ëundefinedû) to be true' >+test/annexB/language/eval-code/indirect/global-block-decl-eval-global-skip-early-err-block.js: >+ default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/indirect/global-block-decl-eval-global-skip-early-err-for-in.js: >+ default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/indirect/global-block-decl-eval-global-skip-early-err-for-of.js: >+ default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/indirect/global-block-decl-eval-global-skip-early-err-for.js: >+ default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/indirect/global-block-decl-eval-global-skip-early-err-switch.js: >+ default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/indirect/global-block-decl-eval-global-skip-early-err-try.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/indirect/global-if-decl-else-decl-a-eval-global-existing-global-init.js: >+ default: 'Test262Error: binding is initialized to `undefined` Expected SameValue(ëxû, ëundefinedû) to be true' >+test/annexB/language/eval-code/indirect/global-if-decl-else-decl-a-eval-global-skip-early-err-block.js: >+ default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/indirect/global-if-decl-else-decl-a-eval-global-skip-early-err-for-in.js: >+ default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/indirect/global-if-decl-else-decl-a-eval-global-skip-early-err-for-of.js: >+ default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/indirect/global-if-decl-else-decl-a-eval-global-skip-early-err-for.js: >+ default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/indirect/global-if-decl-else-decl-a-eval-global-skip-early-err-switch.js: >+ default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/indirect/global-if-decl-else-decl-a-eval-global-skip-early-err-try.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/indirect/global-if-decl-else-decl-b-eval-global-existing-global-init.js: >+ default: 'Test262Error: binding is initialized to `undefined` Expected SameValue(ëxû, ëundefinedû) to be true' >+test/annexB/language/eval-code/indirect/global-if-decl-else-decl-b-eval-global-skip-early-err-block.js: >+ default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/indirect/global-if-decl-else-decl-b-eval-global-skip-early-err-for-in.js: >+ default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/indirect/global-if-decl-else-decl-b-eval-global-skip-early-err-for-of.js: >+ default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/indirect/global-if-decl-else-decl-b-eval-global-skip-early-err-for.js: >+ default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/indirect/global-if-decl-else-decl-b-eval-global-skip-early-err-switch.js: >+ default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/indirect/global-if-decl-else-decl-b-eval-global-skip-early-err-try.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/indirect/global-if-decl-else-stmt-eval-global-existing-global-init.js: >+ default: 'Test262Error: binding is initialized to `undefined` Expected SameValue(ëxû, ëundefinedû) to be true' >+test/annexB/language/eval-code/indirect/global-if-decl-else-stmt-eval-global-skip-early-err-block.js: >+ default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/indirect/global-if-decl-else-stmt-eval-global-skip-early-err-for-in.js: >+ default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/indirect/global-if-decl-else-stmt-eval-global-skip-early-err-for-of.js: >+ default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/indirect/global-if-decl-else-stmt-eval-global-skip-early-err-for.js: >+ default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/indirect/global-if-decl-else-stmt-eval-global-skip-early-err-switch.js: >+ default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/indirect/global-if-decl-else-stmt-eval-global-skip-early-err-try.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/indirect/global-if-decl-no-else-eval-global-existing-global-init.js: >+ default: 'Test262Error: binding is initialized to `undefined` Expected SameValue(ëxû, ëundefinedû) to be true' >+test/annexB/language/eval-code/indirect/global-if-decl-no-else-eval-global-skip-early-err-block.js: >+ default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/indirect/global-if-decl-no-else-eval-global-skip-early-err-for-in.js: >+ default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/indirect/global-if-decl-no-else-eval-global-skip-early-err-for-of.js: >+ default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/indirect/global-if-decl-no-else-eval-global-skip-early-err-for.js: >+ default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/indirect/global-if-decl-no-else-eval-global-skip-early-err-switch.js: >+ default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/indirect/global-if-decl-no-else-eval-global-skip-early-err-try.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/indirect/global-if-stmt-else-decl-eval-global-existing-global-init.js: >+ default: 'Test262Error: binding is initialized to `undefined` Expected SameValue(ëxû, ëundefinedû) to be true' >+test/annexB/language/eval-code/indirect/global-if-stmt-else-decl-eval-global-skip-early-err-block.js: >+ default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/indirect/global-if-stmt-else-decl-eval-global-skip-early-err-for-in.js: >+ default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/indirect/global-if-stmt-else-decl-eval-global-skip-early-err-for-of.js: >+ default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/indirect/global-if-stmt-else-decl-eval-global-skip-early-err-for.js: >+ default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/indirect/global-if-stmt-else-decl-eval-global-skip-early-err-switch.js: >+ default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/indirect/global-if-stmt-else-decl-eval-global-skip-early-err-try.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/indirect/global-switch-case-eval-global-existing-global-init.js: >+ default: 'Test262Error: binding is initialized to `undefined` Expected SameValue(ëxû, ëundefinedû) to be true' >+test/annexB/language/eval-code/indirect/global-switch-case-eval-global-skip-early-err-block.js: >+ default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/indirect/global-switch-case-eval-global-skip-early-err-for-in.js: >+ default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/indirect/global-switch-case-eval-global-skip-early-err-for-of.js: >+ default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/indirect/global-switch-case-eval-global-skip-early-err-for.js: >+ default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/indirect/global-switch-case-eval-global-skip-early-err-switch.js: >+ default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/indirect/global-switch-case-eval-global-skip-early-err-try.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/indirect/global-switch-dflt-eval-global-existing-global-init.js: >+ default: 'Test262Error: binding is initialized to `undefined` Expected SameValue(ëxû, ëundefinedû) to be true' >+test/annexB/language/eval-code/indirect/global-switch-dflt-eval-global-skip-early-err-block.js: >+ default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/indirect/global-switch-dflt-eval-global-skip-early-err-for-in.js: >+ default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/indirect/global-switch-dflt-eval-global-skip-early-err-for-of.js: >+ default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/indirect/global-switch-dflt-eval-global-skip-early-err-for.js: >+ default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/indirect/global-switch-dflt-eval-global-skip-early-err-switch.js: >+ default: 'Test262Error: An initialized binding is not created following evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/eval-code/indirect/global-switch-dflt-eval-global-skip-early-err-try.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/expressions/yield/star-iterable-return-emulates-undefined-throws-when-called.js: >+ default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >+ strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >+test/annexB/language/function-code/block-decl-func-skip-arguments.js: >+ default: 'Test262Error: Expected SameValue(ëfunction arguments() {}û, ë[object Arguments]û) to be true' >+test/annexB/language/function-code/block-decl-func-skip-early-err-block.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/function-code/block-decl-func-skip-early-err-for-in.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/function-code/block-decl-func-skip-early-err-for-of.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/function-code/block-decl-func-skip-early-err-for.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/function-code/block-decl-func-skip-early-err-switch.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/function-code/block-decl-func-skip-early-err-try.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/function-code/if-decl-else-decl-a-func-skip-early-err-block.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/function-code/if-decl-else-decl-a-func-skip-early-err-for-in.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/function-code/if-decl-else-decl-a-func-skip-early-err-for-of.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/function-code/if-decl-else-decl-a-func-skip-early-err-for.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/function-code/if-decl-else-decl-a-func-skip-early-err-switch.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/function-code/if-decl-else-decl-a-func-skip-early-err-try.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/function-code/if-decl-else-decl-b-func-skip-early-err-block.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/function-code/if-decl-else-decl-b-func-skip-early-err-for-in.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/function-code/if-decl-else-decl-b-func-skip-early-err-for-of.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/function-code/if-decl-else-decl-b-func-skip-early-err-for.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/function-code/if-decl-else-decl-b-func-skip-early-err-switch.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/function-code/if-decl-else-decl-b-func-skip-early-err-try.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/function-code/if-decl-else-stmt-func-skip-early-err-block.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/function-code/if-decl-else-stmt-func-skip-early-err-for-in.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/function-code/if-decl-else-stmt-func-skip-early-err-for-of.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/function-code/if-decl-else-stmt-func-skip-early-err-for.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/function-code/if-decl-else-stmt-func-skip-early-err-switch.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/function-code/if-decl-else-stmt-func-skip-early-err-try.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/function-code/if-decl-no-else-func-skip-early-err-block.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/function-code/if-decl-no-else-func-skip-early-err-for-in.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/function-code/if-decl-no-else-func-skip-early-err-for-of.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/function-code/if-decl-no-else-func-skip-early-err-for.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/function-code/if-decl-no-else-func-skip-early-err-switch.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/function-code/if-decl-no-else-func-skip-early-err-try.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/function-code/if-stmt-else-decl-func-skip-early-err-block.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/function-code/if-stmt-else-decl-func-skip-early-err-for-in.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/function-code/if-stmt-else-decl-func-skip-early-err-for-of.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/function-code/if-stmt-else-decl-func-skip-early-err-for.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/function-code/if-stmt-else-decl-func-skip-early-err-switch.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/function-code/if-stmt-else-decl-func-skip-early-err-try.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/function-code/switch-case-func-skip-early-err-block.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/function-code/switch-case-func-skip-early-err-for-in.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/function-code/switch-case-func-skip-early-err-for-of.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/function-code/switch-case-func-skip-early-err-for.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/function-code/switch-case-func-skip-early-err-switch.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/function-code/switch-case-func-skip-early-err-try.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/function-code/switch-dflt-func-skip-early-err-block.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/function-code/switch-dflt-func-skip-early-err-for-in.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/function-code/switch-dflt-func-skip-early-err-for-of.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/function-code/switch-dflt-func-skip-early-err-for.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/function-code/switch-dflt-func-skip-early-err-switch.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/function-code/switch-dflt-func-skip-early-err-try.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/global-code/block-decl-global-block-scoping.js: >+ default: "TypeError: f is not a function. (In 'f()', 'f' is 123)" >+test/annexB/language/global-code/block-decl-global-existing-block-fn-no-init.js: >+ default: 'Test262Error: Expected SameValue(ëfunction f() { }û, ëundefinedû) to be true' >+test/annexB/language/global-code/block-decl-global-existing-fn-update.js: >+ default: 'Test262Error: Expected SameValue(ëouter declarationû, ëinner declarationû) to be true' >+test/annexB/language/global-code/block-decl-global-init.js: >+ default: 'Test262Error: binding is initialized to `undefined` Expected SameValue(ëfunction f() { }û, ëundefinedû) to be true' >+test/annexB/language/global-code/block-decl-global-no-skip-try.js: >+ default: 'Test262Error: Initialized binding created prior to evaluation Expected SameValue(ëfunction f() { return 123; }û, ëundefinedû) to be true' >+test/annexB/language/global-code/block-decl-global-skip-early-err-block.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/global-code/block-decl-global-skip-early-err-for-in.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/global-code/block-decl-global-skip-early-err-for-of.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/global-code/block-decl-global-skip-early-err-for.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/global-code/block-decl-global-skip-early-err-switch.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/global-code/block-decl-global-skip-early-err-try.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/global-code/block-decl-global-skip-early-err.js: >+ default: "SyntaxError: Cannot declare a function that shadows a let/const/class/function variable 'f' in strict mode." >+test/annexB/language/global-code/if-decl-else-decl-a-global-block-scoping.js: >+ default: "TypeError: f is not a function. (In 'f()', 'f' is 123)" >+test/annexB/language/global-code/if-decl-else-decl-a-global-existing-block-fn-no-init.js: >+ default: 'Test262Error: Expected SameValue(ëfunction f() { }û, ëundefinedû) to be true' >+test/annexB/language/global-code/if-decl-else-decl-a-global-existing-fn-update.js: >+ default: 'Test262Error: Expected SameValue(ëouter declarationû, ëinner declarationû) to be true' >+test/annexB/language/global-code/if-decl-else-decl-a-global-init.js: >+ default: 'Test262Error: binding is initialized to `undefined` Expected SameValue(ëfunction f() { }û, ëundefinedû) to be true' >+test/annexB/language/global-code/if-decl-else-decl-a-global-no-skip-try.js: >+ default: 'Test262Error: Initialized binding created prior to evaluation Expected SameValue(ëfunction f() { return 123; }û, ëundefinedû) to be true' >+test/annexB/language/global-code/if-decl-else-decl-a-global-skip-early-err-block.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/global-code/if-decl-else-decl-a-global-skip-early-err-for-in.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/global-code/if-decl-else-decl-a-global-skip-early-err-for-of.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/global-code/if-decl-else-decl-a-global-skip-early-err-for.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/global-code/if-decl-else-decl-a-global-skip-early-err-switch.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/global-code/if-decl-else-decl-a-global-skip-early-err-try.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/global-code/if-decl-else-decl-a-global-skip-early-err.js: >+ default: "SyntaxError: Cannot declare a function that shadows a let/const/class/function variable 'f' in strict mode." >+test/annexB/language/global-code/if-decl-else-decl-b-global-block-scoping.js: >+ default: "TypeError: f is not a function. (In 'f()', 'f' is 123)" >+test/annexB/language/global-code/if-decl-else-decl-b-global-existing-block-fn-no-init.js: >+ default: 'Test262Error: Expected SameValue(ëfunction f() { }û, ëundefinedû) to be true' >+test/annexB/language/global-code/if-decl-else-decl-b-global-existing-fn-update.js: >+ default: 'Test262Error: Expected SameValue(ëouter declarationû, ëinner declarationû) to be true' >+test/annexB/language/global-code/if-decl-else-decl-b-global-init.js: >+ default: 'Test262Error: binding is initialized to `undefined` Expected SameValue(ëfunction f() { }û, ëundefinedû) to be true' >+test/annexB/language/global-code/if-decl-else-decl-b-global-no-skip-try.js: >+ default: 'Test262Error: Initialized binding created prior to evaluation Expected SameValue(ëfunction f() { return 123; }û, ëundefinedû) to be true' >+test/annexB/language/global-code/if-decl-else-decl-b-global-skip-early-err-block.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/global-code/if-decl-else-decl-b-global-skip-early-err-for-in.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/global-code/if-decl-else-decl-b-global-skip-early-err-for-of.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/global-code/if-decl-else-decl-b-global-skip-early-err-for.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/global-code/if-decl-else-decl-b-global-skip-early-err-switch.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/global-code/if-decl-else-decl-b-global-skip-early-err-try.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/global-code/if-decl-else-decl-b-global-skip-early-err.js: >+ default: "SyntaxError: Cannot declare a function that shadows a let/const/class/function variable 'f' in strict mode." >+test/annexB/language/global-code/if-decl-else-stmt-global-block-scoping.js: >+ default: "TypeError: f is not a function. (In 'f()', 'f' is 123)" >+test/annexB/language/global-code/if-decl-else-stmt-global-existing-block-fn-no-init.js: >+ default: 'Test262Error: Expected SameValue(ëfunction f() { }û, ëundefinedû) to be true' >+test/annexB/language/global-code/if-decl-else-stmt-global-existing-fn-update.js: >+ default: 'Test262Error: Expected SameValue(ëouter declarationû, ëinner declarationû) to be true' >+test/annexB/language/global-code/if-decl-else-stmt-global-init.js: >+ default: 'Test262Error: binding is initialized to `undefined` Expected SameValue(ëfunction f() { }û, ëundefinedû) to be true' >+test/annexB/language/global-code/if-decl-else-stmt-global-no-skip-try.js: >+ default: 'Test262Error: Initialized binding created prior to evaluation Expected SameValue(ëfunction f() { return 123; }û, ëundefinedû) to be true' >+test/annexB/language/global-code/if-decl-else-stmt-global-skip-early-err-block.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/global-code/if-decl-else-stmt-global-skip-early-err-for-in.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/global-code/if-decl-else-stmt-global-skip-early-err-for-of.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/global-code/if-decl-else-stmt-global-skip-early-err-for.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/global-code/if-decl-else-stmt-global-skip-early-err-switch.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/global-code/if-decl-else-stmt-global-skip-early-err-try.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/global-code/if-decl-else-stmt-global-skip-early-err.js: >+ default: "SyntaxError: Cannot declare a function that shadows a let/const/class/function variable 'f' in strict mode." >+test/annexB/language/global-code/if-decl-no-else-global-block-scoping.js: >+ default: "TypeError: f is not a function. (In 'f()', 'f' is 123)" >+test/annexB/language/global-code/if-decl-no-else-global-existing-block-fn-no-init.js: >+ default: 'Test262Error: Expected SameValue(ëfunction f() { }û, ëundefinedû) to be true' >+test/annexB/language/global-code/if-decl-no-else-global-existing-fn-update.js: >+ default: 'Test262Error: Expected SameValue(ëouter declarationû, ëinner declarationû) to be true' >+test/annexB/language/global-code/if-decl-no-else-global-init.js: >+ default: 'Test262Error: binding is initialized to `undefined` Expected SameValue(ëfunction f() { }û, ëundefinedû) to be true' >+test/annexB/language/global-code/if-decl-no-else-global-no-skip-try.js: >+ default: 'Test262Error: Initialized binding created prior to evaluation Expected SameValue(ëfunction f() { return 123; }û, ëundefinedû) to be true' >+test/annexB/language/global-code/if-decl-no-else-global-skip-early-err-block.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/global-code/if-decl-no-else-global-skip-early-err-for-in.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/global-code/if-decl-no-else-global-skip-early-err-for-of.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/global-code/if-decl-no-else-global-skip-early-err-for.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/global-code/if-decl-no-else-global-skip-early-err-switch.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/global-code/if-decl-no-else-global-skip-early-err-try.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/global-code/if-decl-no-else-global-skip-early-err.js: >+ default: "SyntaxError: Cannot declare a function that shadows a let/const/class/function variable 'f' in strict mode." >+test/annexB/language/global-code/if-stmt-else-decl-global-block-scoping.js: >+ default: "TypeError: f is not a function. (In 'f()', 'f' is 123)" >+test/annexB/language/global-code/if-stmt-else-decl-global-existing-block-fn-no-init.js: >+ default: 'Test262Error: Expected SameValue(ëfunction f() { }û, ëundefinedû) to be true' >+test/annexB/language/global-code/if-stmt-else-decl-global-existing-fn-update.js: >+ default: 'Test262Error: Expected SameValue(ëouter declarationû, ëinner declarationû) to be true' >+test/annexB/language/global-code/if-stmt-else-decl-global-init.js: >+ default: 'Test262Error: binding is initialized to `undefined` Expected SameValue(ëfunction f() { }û, ëundefinedû) to be true' >+test/annexB/language/global-code/if-stmt-else-decl-global-no-skip-try.js: >+ default: 'Test262Error: Initialized binding created prior to evaluation Expected SameValue(ëfunction f() { return 123; }û, ëundefinedû) to be true' >+test/annexB/language/global-code/if-stmt-else-decl-global-skip-early-err-block.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/global-code/if-stmt-else-decl-global-skip-early-err-for-in.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/global-code/if-stmt-else-decl-global-skip-early-err-for-of.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/global-code/if-stmt-else-decl-global-skip-early-err-for.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/global-code/if-stmt-else-decl-global-skip-early-err-switch.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/global-code/if-stmt-else-decl-global-skip-early-err-try.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/global-code/if-stmt-else-decl-global-skip-early-err.js: >+ default: "SyntaxError: Cannot declare a function that shadows a let/const/class/function variable 'f' in strict mode." >+test/annexB/language/global-code/switch-case-global-block-scoping.js: >+ default: "TypeError: f is not a function. (In 'f()', 'f' is 123)" >+test/annexB/language/global-code/switch-case-global-existing-block-fn-no-init.js: >+ default: 'Test262Error: Expected SameValue(ëfunction f() { }û, ëundefinedû) to be true' >+test/annexB/language/global-code/switch-case-global-existing-fn-update.js: >+ default: 'Test262Error: Expected SameValue(ëouter declarationû, ëinner declarationû) to be true' >+test/annexB/language/global-code/switch-case-global-init.js: >+ default: 'Test262Error: binding is initialized to `undefined` Expected SameValue(ëfunction f() { }û, ëundefinedû) to be true' >+test/annexB/language/global-code/switch-case-global-no-skip-try.js: >+ default: 'Test262Error: Initialized binding created prior to evaluation Expected SameValue(ëfunction f() { return 123; }û, ëundefinedû) to be true' >+test/annexB/language/global-code/switch-case-global-skip-early-err-block.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/global-code/switch-case-global-skip-early-err-for-in.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/global-code/switch-case-global-skip-early-err-for-of.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/global-code/switch-case-global-skip-early-err-for.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/global-code/switch-case-global-skip-early-err-switch.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/global-code/switch-case-global-skip-early-err-try.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/global-code/switch-case-global-skip-early-err.js: >+ default: "SyntaxError: Cannot declare a function that shadows a let/const/class/function variable 'f' in strict mode." >+test/annexB/language/global-code/switch-dflt-global-block-scoping.js: >+ default: "TypeError: f is not a function. (In 'f()', 'f' is 123)" >+test/annexB/language/global-code/switch-dflt-global-existing-block-fn-no-init.js: >+ default: 'Test262Error: Expected SameValue(ëfunction f() { }û, ëundefinedû) to be true' >+test/annexB/language/global-code/switch-dflt-global-existing-fn-update.js: >+ default: 'Test262Error: Expected SameValue(ëouter declarationû, ëinner declarationû) to be true' >+test/annexB/language/global-code/switch-dflt-global-init.js: >+ default: 'Test262Error: binding is initialized to `undefined` Expected SameValue(ëfunction f() { }û, ëundefinedû) to be true' >+test/annexB/language/global-code/switch-dflt-global-no-skip-try.js: >+ default: 'Test262Error: Initialized binding created prior to evaluation Expected SameValue(ëfunction f() { return 123; }û, ëundefinedû) to be true' >+test/annexB/language/global-code/switch-dflt-global-skip-early-err-block.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/global-code/switch-dflt-global-skip-early-err-for-in.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/global-code/switch-dflt-global-skip-early-err-for-of.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/global-code/switch-dflt-global-skip-early-err-for.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/global-code/switch-dflt-global-skip-early-err-switch.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/global-code/switch-dflt-global-skip-early-err-try.js: >+ default: 'Test262Error: An initialized binding is not created prior to evaluation Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/annexB/language/global-code/switch-dflt-global-skip-early-err.js: >+ default: "SyntaxError: Cannot declare a function that shadows a let/const/class/function variable 'f' in strict mode." >+test/annexB/language/statements/for-of/iterator-close-return-emulates-undefined-throws-when-called.js: >+ default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >+ strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >+test/built-ins/Array/of/return-abrupt-from-data-property.js: >+ default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >+ strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >+test/built-ins/Array/proto-from-ctor-realm.js: >+ default: 'Test262Error: Expected SameValue(ëû, ëû) to be true' >+ strict mode: 'Test262Error: Expected SameValue(ëû, ëû) to be true' >+test/built-ins/Array/prototype/concat/is-concat-spreadable-is-array-proxy-revoked.js: >+ default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >+ strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >+test/built-ins/Array/prototype/concat/is-concat-spreadable-proxy.js: >+ default: 'Test262Error: Proxy for an array Expected SameValue(ë1û, ë0û) to be true' >+ strict mode: 'Test262Error: Proxy for an array Expected SameValue(ë1û, ë0û) to be true' >+test/built-ins/Array/prototype/indexOf/15.4.4.14-3-28.js: >+ default: 'Test262Error: Array.prototype.indexOf.call(obj, targetObj) Expected SameValue(ë-1û, ë0û) to be true' >+ strict mode: 'Test262Error: Array.prototype.indexOf.call(obj, targetObj) Expected SameValue(ë-1û, ë0û) to be true' >+test/built-ins/Array/prototype/indexOf/15.4.4.14-3-29.js: >+ default: 'Test262Error: Array.prototype.indexOf.call(obj, 4294967297) Expected SameValue(ë-1û, ë1û) to be true' >+ strict mode: 'Test262Error: Array.prototype.indexOf.call(obj, 4294967297) Expected SameValue(ë-1û, ë1û) to be true' >+test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-3-28.js: >+ default: 'Test262Error: verify length is 4294967296 finally Expected SameValue(ë-1û, ë4294967295û) to be true' >+ strict mode: 'Test262Error: verify length is 4294967296 finally Expected SameValue(ë-1û, ë4294967295û) to be true' >+test/built-ins/Array/prototype/pop/S15.4.4.6_A2_T2.js: >+ default: 'Test262Error: #4: var obj = {}; obj.length = Number.POSITIVE_INFINITY; obj.pop = Array.prototype.pop; obj.pop(); obj.length === 9007199254740990. Actual: 4294967294' >+ strict mode: 'Test262Error: #4: var obj = {}; obj.length = Number.POSITIVE_INFINITY; obj.pop = Array.prototype.pop; obj.pop(); obj.length === 9007199254740990. Actual: 4294967294' >+test/built-ins/Array/prototype/pop/S15.4.4.6_A3_T1.js: >+ default: 'Test262Error: #1: var obj = {}; obj.pop = Array.prototype.pop; obj[0] = "x"; obj[4294967295] = "y"; obj.length = 4294967296; obj.pop() === "y". Actual: undefined' >+ strict mode: 'Test262Error: #1: var obj = {}; obj.pop = Array.prototype.pop; obj[0] = "x"; obj[4294967295] = "y"; obj.length = 4294967296; obj.pop() === "y". Actual: undefined' >+test/built-ins/Array/prototype/pop/S15.4.4.6_A3_T2.js: >+ default: 'Test262Error: #1: var obj = {}; obj.pop = Array.prototype.pop; obj[0] = "x"; obj[4294967296] = "y"; obj.length = 4294967297; obj.pop() === "y". Actual: x' >+ strict mode: 'Test262Error: #1: var obj = {}; obj.pop = Array.prototype.pop; obj[0] = "x"; obj[4294967296] = "y"; obj.length = 4294967297; obj.pop() === "y". Actual: x' >+test/built-ins/Array/prototype/pop/clamps-to-integer-limit.js: >+ default: 'Test262Error: Length is 2**53 - 1 Expected SameValue(ë4294967294û, ë9007199254740990û) to be true' >+ strict mode: 'Test262Error: Length is 2**53 - 1 Expected SameValue(ë4294967294û, ë9007199254740990û) to be true' >+test/built-ins/Array/prototype/pop/length-near-integer-limit.js: >+ default: "Test262Error: arrayLike['9007199254740990'] is returned from pop() Expected SameValue(ëundefinedû, ë9007199254740990û) to be true" >+ strict mode: "Test262Error: arrayLike['9007199254740990'] is returned from pop() Expected SameValue(ëundefinedû, ë9007199254740990û) to be true" >+test/built-ins/Array/prototype/push/S15.4.4.7_A2_T2.js: >+ default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >+ strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >+test/built-ins/Array/prototype/push/S15.4.4.7_A4_T1.js: >+ default: 'Test262Error: #1: var obj = {}; obj.push = Array.prototype.push; obj.length = 4294967296; obj.push("x", "y", "z") === 4294967299. Actual: 3' >+ strict mode: 'Test262Error: #1: var obj = {}; obj.push = Array.prototype.push; obj.length = 4294967296; obj.push("x", "y", "z") === 4294967299. Actual: 3' >+test/built-ins/Array/prototype/push/clamps-to-integer-limit.js: >+ default: 'Test262Error: Length is 2**53 - 1 Expected SameValue(ë4294967295û, ë9007199254740991û) to be true' >+ strict mode: 'Test262Error: Length is 2**53 - 1 Expected SameValue(ë4294967295û, ë9007199254740991û) to be true' >+test/built-ins/Array/prototype/push/length-near-integer-limit.js: >+ default: 'Test262Error: New arrayLike.length is 2**53 - 1 Expected SameValue(ë4294967295û, ë9007199254740991û) to be true' >+ strict mode: 'Test262Error: New arrayLike.length is 2**53 - 1 Expected SameValue(ë4294967295û, ë9007199254740991û) to be true' >+test/built-ins/Array/prototype/push/throws-if-integer-limit-exceeded.js: >+ default: 'Test262Error: Length is 2**53 - 1 Expected a TypeError to be thrown but no exception was thrown at all' >+ strict mode: 'Test262Error: Length is 2**53 - 1 Expected a TypeError to be thrown but no exception was thrown at all' >+test/built-ins/Array/prototype/reverse/length-exceeding-integer-limit-with-proxy.js: >+ default: 'Test262Error: Expected a StopReverse but got a Test262Error' >+ strict mode: 'Test262Error: Expected a StopReverse but got a Test262Error' >+test/built-ins/Array/prototype/slice/S15.4.4.10_A3_T1.js: >+ default: 'Test262Error: #1.1: var obj = {}; obj.slice = Array.prototype.slice; obj[0] = "x"; obj[4294967295] = "y"; obj.length = 4294967296; var arr = obj.slice(0,4294967296); lead to throwing exception. Exception is instance of RangeError. Actual: exception is Test262Error: #1: var obj = {}; obj.slice = Array.prototype.slice; obj[0] = "x"; obj[4294967295] = "y"; obj.length = 4294967296; var arr = obj.slice(0,4294967296); lead to throwing exception.' >+ strict mode: 'Test262Error: #1.1: var obj = {}; obj.slice = Array.prototype.slice; obj[0] = "x"; obj[4294967295] = "y"; obj.length = 4294967296; var arr = obj.slice(0,4294967296); lead to throwing exception. Exception is instance of RangeError. Actual: exception is Test262Error: #1: var obj = {}; obj.slice = Array.prototype.slice; obj[0] = "x"; obj[4294967295] = "y"; obj.length = 4294967296; var arr = obj.slice(0,4294967296); lead to throwing exception.' >+test/built-ins/Array/prototype/slice/S15.4.4.10_A3_T2.js: >+ default: 'Test262Error: #1.1: var obj = {}; obj.slice = Array.prototype.slice; obj[0] = "x"; obj[4294967296] = "y"; obj.length = 4294967297; var arr = obj.slice(0,4294967297); lead to throwing exception. Exception is instance of RangeError. Actual: exception is Test262Error: #1: var obj = {}; obj.slice = Array.prototype.slice; obj[0] = "x"; obj[4294967296] = "y"; obj.length = 4294967297; var arr = obj.slice(0,4294967297); lead to throwing exception.' >+ strict mode: 'Test262Error: #1.1: var obj = {}; obj.slice = Array.prototype.slice; obj[0] = "x"; obj[4294967296] = "y"; obj.length = 4294967297; var arr = obj.slice(0,4294967297); lead to throwing exception. Exception is instance of RangeError. Actual: exception is Test262Error: #1: var obj = {}; obj.slice = Array.prototype.slice; obj[0] = "x"; obj[4294967296] = "y"; obj.length = 4294967297; var arr = obj.slice(0,4294967297); lead to throwing exception.' >+test/built-ins/Array/prototype/slice/create-non-array-invalid-len.js: >+ default: 'Test262Error: Expected a RangeError to be thrown but no exception was thrown at all' >+ strict mode: 'Test262Error: Expected a RangeError to be thrown but no exception was thrown at all' >+test/built-ins/Array/prototype/slice/create-proto-from-ctor-realm-non-array.js: >+ default: 'Test262Error: Expected SameValue(ëû, ë[object Object]û) to be true' >+ strict mode: 'Test262Error: Expected SameValue(ëû, ë[object Object]û) to be true' >+test/built-ins/Array/prototype/slice/create-proxied-array-invalid-len.js: >+ default: 'Test262Error: Expected a RangeError to be thrown but no exception was thrown at all' >+ strict mode: 'Test262Error: Expected a RangeError to be thrown but no exception was thrown at all' >+test/built-ins/Array/prototype/slice/length-exceeding-integer-limit-proxied-array.js: >+ default: 'Test262Error: Expected [] and [9007199254740989, 9007199254740990] to have the same contents. slice(9007199254740989)' >+ strict mode: 'Test262Error: Expected [] and [9007199254740989, 9007199254740990] to have the same contents. slice(9007199254740989)' >+test/built-ins/Array/prototype/slice/length-exceeding-integer-limit.js: >+ default: 'Test262Error: Expected [] and [9007199254740989, 9007199254740990] to have the same contents. slice(9007199254740989)' >+ strict mode: 'Test262Error: Expected [] and [9007199254740989, 9007199254740990] to have the same contents. slice(9007199254740989)' >+test/built-ins/Array/prototype/sort/S15.4.4.11_A4_T3.js: >+ default: 'Test262Error: #3: var obj = {}; obj.sort = Array.prototype.sort; obj[0] = "z"; obj[1] = "y"; obj[2] = "x"; obj.length = -4294967294; obj.sort(); obj[0] === "z". Actual: y' >+ strict mode: 'Test262Error: #3: var obj = {}; obj.sort = Array.prototype.sort; obj[0] = "z"; obj[1] = "y"; obj[2] = "x"; obj.length = -4294967294; obj.sort(); obj[0] === "z". Actual: y' >+test/built-ins/Array/prototype/sort/comparefn-nonfunction-call-throws.js: >+ default: 'Test262Error: sample.sort(null); Expected a TypeError to be thrown but no exception was thrown at all' >+ strict mode: 'Test262Error: sample.sort(null); Expected a TypeError to be thrown but no exception was thrown at all' >+test/built-ins/Array/prototype/splice/S15.4.4.12_A3_T1.js: >+ default: 'Test262Error: #1: var obj = {}; obj.splice = Array.prototype.splice; obj[0] = "x"; obj[4294967295] = "y"; obj.length = 4294967296; var arr = obj.splice(4294967295,1); arr.length === 1. Actual: 0' >+ strict mode: 'Test262Error: #1: var obj = {}; obj.splice = Array.prototype.splice; obj[0] = "x"; obj[4294967295] = "y"; obj.length = 4294967296; var arr = obj.splice(4294967295,1); arr.length === 1. Actual: 0' >+test/built-ins/Array/prototype/splice/clamps-length-to-integer-limit.js: >+ default: 'Test262Error: Length is 2**53 - 1 Expected SameValue(ë4294967295û, ë9007199254740991û) to be true' >+ strict mode: 'Test262Error: Length is 2**53 - 1 Expected SameValue(ë4294967295û, ë9007199254740991û) to be true' >+test/built-ins/Array/prototype/splice/create-non-array-invalid-len.js: >+ default: 'Test262Error: Expected a RangeError to be thrown but no exception was thrown at all' >+ strict mode: 'Test262Error: Expected a RangeError to be thrown but no exception was thrown at all' >+test/built-ins/Array/prototype/splice/create-proto-from-ctor-realm-non-array.js: >+ default: 'Test262Error: Expected SameValue(ëû, ë[object Object]û) to be true' >+ strict mode: 'Test262Error: Expected SameValue(ëû, ë[object Object]û) to be true' >+test/built-ins/Array/prototype/splice/create-proxy.js: >+ default: 'TypeError: Attempted to assign to readonly property.' >+ strict mode: 'TypeError: Attempted to assign to readonly property.' >+test/built-ins/Array/prototype/splice/create-species-length-exceeding-integer-limit.js: >+ default: 'Test262Error: Expected a StopSplice but got a Test262Error' >+ strict mode: 'Test262Error: Expected a StopSplice but got a Test262Error' >+test/built-ins/Array/prototype/splice/create-species-undef-invalid-len.js: >+ default: 'Test262Error: Expected a RangeError to be thrown but no exception was thrown at all' >+ strict mode: 'Test262Error: Expected a RangeError to be thrown but no exception was thrown at all' >+test/built-ins/Array/prototype/splice/length-and-deleteCount-exceeding-integer-limit.js: >+ default: "Test262Error: Expected [] and [9007199254740989, 9007199254740990] to have the same contents. arrayLike['9007199254740989'] and arrayLike['9007199254740990'] are removed" >+ strict mode: "Test262Error: Expected [] and [9007199254740989, 9007199254740990] to have the same contents. arrayLike['9007199254740989'] and arrayLike['9007199254740990'] are removed" >+test/built-ins/Array/prototype/splice/length-exceeding-integer-limit-shrink-array.js: >+ default: "Test262Error: Expected [] and [9007199254740987] to have the same contents. arrayLike['9007199254740987'] is removed" >+ strict mode: "Test262Error: Expected [] and [9007199254740987] to have the same contents. arrayLike['9007199254740987'] is removed" >+test/built-ins/Array/prototype/splice/length-near-integer-limit-grow-array.js: >+ default: 'Test262Error: New length is 2**53 - 1 Expected SameValue(ë4294967295û, ë9007199254740991û) to be true' >+ strict mode: 'Test262Error: New length is 2**53 - 1 Expected SameValue(ë4294967295û, ë9007199254740991û) to be true' >+test/built-ins/Array/prototype/splice/throws-if-integer-limit-exceeded.js: >+ default: 'Test262Error: Length is 2**53 - 1 Expected a TypeError but got a Error' >+ strict mode: 'Test262Error: Length is 2**53 - 1 Expected a TypeError but got a Error' >+test/built-ins/Array/prototype/unshift/clamps-to-integer-limit.js: >+ default: 'Test262Error: Length is 2**53 - 1 Expected SameValue(ë4294967295û, ë9007199254740991û) to be true' >+ strict mode: 'Test262Error: Length is 2**53 - 1 Expected SameValue(ë4294967295û, ë9007199254740991û) to be true' >+test/built-ins/ArrayBuffer/proto-from-ctor-realm.js: >+ default: 'Test262Error: Expected SameValue(ë[object ArrayBuffer]û, ë[object ArrayBuffer]û) to be true' >+ strict mode: 'Test262Error: Expected SameValue(ë[object ArrayBuffer]û, ë[object ArrayBuffer]û) to be true' >+test/built-ins/ArrayBuffer/prototype/byteLength/detached-buffer.js: >+ default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >+ strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >+test/built-ins/ArrayBuffer/prototype/slice/end-default-if-undefined.js: >+ default: 'Test262Error: Expected SameValue(ë0û, ë2û) to be true' >+ strict mode: 'Test262Error: Expected SameValue(ë0û, ë2û) to be true' >+test/built-ins/ArrayBuffer/prototype/slice/end-exceeds-length.js: >+ default: 'Test262Error: slice(2, 0x100000000) Expected SameValue(ë0û, ë6û) to be true' >+ strict mode: 'Test262Error: slice(2, 0x100000000) Expected SameValue(ë0û, ë6û) to be true' >+test/built-ins/ArrayBuffer/prototype/slice/species-constructor-is-undefined.js: >+ default: 'TypeError: Slice requires at least one argument.' >+ strict mode: 'TypeError: Slice requires at least one argument.' >+test/built-ins/ArrayBuffer/prototype/slice/species-is-null.js: >+ default: 'TypeError: Slice requires at least one argument.' >+ strict mode: 'TypeError: Slice requires at least one argument.' >+test/built-ins/ArrayBuffer/prototype/slice/species-is-undefined.js: >+ default: 'TypeError: Slice requires at least one argument.' >+ strict mode: 'TypeError: Slice requires at least one argument.' >+test/built-ins/ArrayBuffer/prototype/slice/species-returns-larger-arraybuffer.js: >+ default: 'TypeError: Slice requires at least one argument.' >+ strict mode: 'TypeError: Slice requires at least one argument.' >+test/built-ins/ArrayBuffer/prototype/slice/species.js: >+ default: 'TypeError: Slice requires at least one argument.' >+ strict mode: 'TypeError: Slice requires at least one argument.' >+test/built-ins/ArrayBuffer/prototype/slice/start-default-if-absent.js: >+ default: 'TypeError: Slice requires at least one argument.' >+ strict mode: 'TypeError: Slice requires at least one argument.' >+test/built-ins/ArrayBuffer/prototype/slice/start-exceeds-length.js: >+ default: 'Test262Error: slice(0x100000000, 7) Expected SameValue(ë7û, ë0û) to be true' >+ strict mode: 'Test262Error: slice(0x100000000, 7) Expected SameValue(ë7û, ë0û) to be true' >+test/built-ins/ArrayIteratorPrototype/next/detach-typedarray-in-progress.js: >+ default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all (Testing with Float64Array.)' >+ strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all (Testing with Float64Array.)' >+test/built-ins/AsyncGeneratorFunction/has-instance.js: >+ default: 'SyntaxError: Unexpected end of script' >+ strict mode: 'SyntaxError: Unexpected end of script' >+test/built-ins/AsyncGeneratorFunction/instance-await-expr-in-param.js: >+ default: "SyntaxError: Unexpected token '*'. Expected a parenthesis for argument list." >+ strict mode: "SyntaxError: Unexpected token '*'. Expected a parenthesis for argument list." >+test/built-ins/AsyncGeneratorFunction/instance-construct-throws.js: >+ default: 'SyntaxError: Unexpected end of script' >+ strict mode: 'SyntaxError: Unexpected end of script' >+test/built-ins/AsyncGeneratorFunction/instance-length.js: >+ default: 'SyntaxError: Unexpected end of script' >+ strict mode: 'SyntaxError: Unexpected end of script' >+test/built-ins/AsyncGeneratorFunction/instance-name.js: >+ default: 'SyntaxError: Unexpected end of script' >+ strict mode: 'SyntaxError: Unexpected end of script' >+test/built-ins/AsyncGeneratorFunction/instance-prototype.js: >+ default: 'SyntaxError: Unexpected end of script' >+ strict mode: 'SyntaxError: Unexpected end of script' >+test/built-ins/AsyncGeneratorFunction/instance-yield-expr-in-param.js: >+ default: "SyntaxError: Unexpected token '*'. Expected a parenthesis for argument list." >+ strict mode: "SyntaxError: Unexpected token '*'. Expected a parenthesis for argument list." >+test/built-ins/AsyncGeneratorFunction/invoked-as-constructor-no-arguments.js: >+ default: 'SyntaxError: Unexpected end of script' >+ strict mode: 'SyntaxError: Unexpected end of script' >+test/built-ins/AsyncGeneratorFunction/invoked-as-function-multiple-arguments.js: >+ default: "SyntaxError: Unexpected token '*'. Expected a parenthesis for argument list." >+ strict mode: "SyntaxError: Unexpected token '*'. Expected a parenthesis for argument list." >+test/built-ins/AsyncGeneratorFunction/invoked-as-function-no-arguments.js: >+ default: 'SyntaxError: Unexpected end of script' >+ strict mode: 'SyntaxError: Unexpected end of script' >+test/built-ins/AsyncGeneratorFunction/invoked-as-function-single-argument.js: >+ default: "SyntaxError: Unexpected token '*'. Expected a parenthesis for argument list." >+ strict mode: "SyntaxError: Unexpected token '*'. Expected a parenthesis for argument list." >+test/built-ins/Boolean/proto-from-ctor-realm.js: >+ default: 'Test262Error: Expected SameValue(ëfalseû, ëfalseû) to be true' >+ strict mode: 'Test262Error: Expected SameValue(ëfalseû, ëfalseû) to be true' >+test/built-ins/DataView/custom-proto-access-detaches-buffer.js: >+ default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >+ strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >+test/built-ins/DataView/detached-buffer.js: >+ default: 'Test262Error: throws if buffer is detached Expected a TypeError to be thrown but no exception was thrown at all' >+ strict mode: 'Test262Error: throws if buffer is detached Expected a TypeError to be thrown but no exception was thrown at all' >+test/built-ins/DataView/length.js: >+ default: 'Test262Error: descriptor value should be 1' >+ strict mode: 'Test262Error: descriptor value should be 1' >+test/built-ins/DataView/proto-from-ctor-realm.js: >+ default: 'Test262Error: Expected SameValue(ë[object DataView]û, ë[object DataView]û) to be true' >+ strict mode: 'Test262Error: Expected SameValue(ë[object DataView]û, ë[object DataView]û) to be true' >+test/built-ins/DataView/prototype/byteLength/detached-buffer.js: >+ default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >+ strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >+test/built-ins/DataView/prototype/byteOffset/detached-buffer.js: >+ default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >+ strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >+test/built-ins/DataView/prototype/getFloat32/detached-buffer-before-outofrange-byteoffset.js: >+ default: 'Test262Error: 13 Expected a TypeError but got a RangeError' >+ strict mode: 'Test262Error: 13 Expected a TypeError but got a RangeError' >+test/built-ins/DataView/prototype/getFloat32/detached-buffer.js: >+ default: 'Test262Error: Expected a TypeError but got a RangeError' >+ strict mode: 'Test262Error: Expected a TypeError but got a RangeError' >+test/built-ins/DataView/prototype/getFloat64/detached-buffer-before-outofrange-byteoffset.js: >+ default: 'Test262Error: 13 Expected a TypeError but got a RangeError' >+ strict mode: 'Test262Error: 13 Expected a TypeError but got a RangeError' >+test/built-ins/DataView/prototype/getFloat64/detached-buffer.js: >+ default: 'Test262Error: Expected a TypeError but got a RangeError' >+ strict mode: 'Test262Error: Expected a TypeError but got a RangeError' >+test/built-ins/DataView/prototype/getInt16/detached-buffer-before-outofrange-byteoffset.js: >+ default: 'Test262Error: 13 Expected a TypeError but got a RangeError' >+ strict mode: 'Test262Error: 13 Expected a TypeError but got a RangeError' >+test/built-ins/DataView/prototype/getInt16/detached-buffer.js: >+ default: 'Test262Error: Expected a TypeError but got a RangeError' >+ strict mode: 'Test262Error: Expected a TypeError but got a RangeError' >+test/built-ins/DataView/prototype/getInt32/detached-buffer-before-outofrange-byteoffset.js: >+ default: 'Test262Error: 13 Expected a TypeError but got a RangeError' >+ strict mode: 'Test262Error: 13 Expected a TypeError but got a RangeError' >+test/built-ins/DataView/prototype/getInt32/detached-buffer.js: >+ default: 'Test262Error: Expected a TypeError but got a RangeError' >+ strict mode: 'Test262Error: Expected a TypeError but got a RangeError' >+test/built-ins/DataView/prototype/getInt8/detached-buffer-before-outofrange-byteoffset.js: >+ default: 'Test262Error: 13 Expected a TypeError but got a RangeError' >+ strict mode: 'Test262Error: 13 Expected a TypeError but got a RangeError' >+test/built-ins/DataView/prototype/getInt8/detached-buffer.js: >+ default: 'Test262Error: Expected a TypeError but got a RangeError' >+ strict mode: 'Test262Error: Expected a TypeError but got a RangeError' >+test/built-ins/DataView/prototype/getUint16/detached-buffer-before-outofrange-byteoffset.js: >+ default: 'Test262Error: 13 Expected a TypeError but got a RangeError' >+ strict mode: 'Test262Error: 13 Expected a TypeError but got a RangeError' >+test/built-ins/DataView/prototype/getUint16/detached-buffer.js: >+ default: 'Test262Error: Expected a TypeError but got a RangeError' >+ strict mode: 'Test262Error: Expected a TypeError but got a RangeError' >+test/built-ins/DataView/prototype/getUint32/detached-buffer-before-outofrange-byteoffset.js: >+ default: 'Test262Error: 13 Expected a TypeError but got a RangeError' >+ strict mode: 'Test262Error: 13 Expected a TypeError but got a RangeError' >+test/built-ins/DataView/prototype/getUint32/detached-buffer.js: >+ default: 'Test262Error: Expected a TypeError but got a RangeError' >+ strict mode: 'Test262Error: Expected a TypeError but got a RangeError' >+test/built-ins/DataView/prototype/getUint8/detached-buffer-before-outofrange-byteoffset.js: >+ default: 'Test262Error: 13 Expected a TypeError but got a RangeError' >+ strict mode: 'Test262Error: 13 Expected a TypeError but got a RangeError' >+test/built-ins/DataView/prototype/getUint8/detached-buffer.js: >+ default: 'Test262Error: Expected a TypeError but got a RangeError' >+ strict mode: 'Test262Error: Expected a TypeError but got a RangeError' >+test/built-ins/DataView/prototype/setFloat32/detached-buffer-before-outofrange-byteoffset.js: >+ default: 'Test262Error: 13 Expected a TypeError but got a RangeError' >+ strict mode: 'Test262Error: 13 Expected a TypeError but got a RangeError' >+test/built-ins/DataView/prototype/setFloat32/detached-buffer.js: >+ default: 'Test262Error: Expected a TypeError but got a RangeError' >+ strict mode: 'Test262Error: Expected a TypeError but got a RangeError' >+test/built-ins/DataView/prototype/setFloat64/detached-buffer-before-outofrange-byteoffset.js: >+ default: 'Test262Error: 13 Expected a TypeError but got a RangeError' >+ strict mode: 'Test262Error: 13 Expected a TypeError but got a RangeError' >+test/built-ins/DataView/prototype/setFloat64/detached-buffer.js: >+ default: 'Test262Error: Expected a TypeError but got a RangeError' >+ strict mode: 'Test262Error: Expected a TypeError but got a RangeError' >+test/built-ins/DataView/prototype/setInt16/detached-buffer-before-outofrange-byteoffset.js: >+ default: 'Test262Error: 13 Expected a TypeError but got a RangeError' >+ strict mode: 'Test262Error: 13 Expected a TypeError but got a RangeError' >+test/built-ins/DataView/prototype/setInt16/detached-buffer.js: >+ default: 'Test262Error: Expected a TypeError but got a RangeError' >+ strict mode: 'Test262Error: Expected a TypeError but got a RangeError' >+test/built-ins/DataView/prototype/setInt32/detached-buffer-before-outofrange-byteoffset.js: >+ default: 'Test262Error: 13 Expected a TypeError but got a RangeError' >+ strict mode: 'Test262Error: 13 Expected a TypeError but got a RangeError' >+test/built-ins/DataView/prototype/setInt32/detached-buffer.js: >+ default: 'Test262Error: Expected a TypeError but got a RangeError' >+ strict mode: 'Test262Error: Expected a TypeError but got a RangeError' >+test/built-ins/DataView/prototype/setInt8/detached-buffer-before-outofrange-byteoffset.js: >+ default: 'Test262Error: 13 Expected a TypeError but got a RangeError' >+ strict mode: 'Test262Error: 13 Expected a TypeError but got a RangeError' >+test/built-ins/DataView/prototype/setInt8/detached-buffer.js: >+ default: 'Test262Error: Expected a TypeError but got a RangeError' >+ strict mode: 'Test262Error: Expected a TypeError but got a RangeError' >+test/built-ins/DataView/prototype/setUint16/detached-buffer-before-outofrange-byteoffset.js: >+ default: 'Test262Error: 13 Expected a TypeError but got a RangeError' >+ strict mode: 'Test262Error: 13 Expected a TypeError but got a RangeError' >+test/built-ins/DataView/prototype/setUint16/detached-buffer.js: >+ default: 'Test262Error: Expected a TypeError but got a RangeError' >+ strict mode: 'Test262Error: Expected a TypeError but got a RangeError' >+test/built-ins/DataView/prototype/setUint32/detached-buffer-before-outofrange-byteoffset.js: >+ default: 'Test262Error: 13 Expected a TypeError but got a RangeError' >+ strict mode: 'Test262Error: 13 Expected a TypeError but got a RangeError' >+test/built-ins/DataView/prototype/setUint32/detached-buffer.js: >+ default: 'Test262Error: Expected a TypeError but got a RangeError' >+ strict mode: 'Test262Error: Expected a TypeError but got a RangeError' >+test/built-ins/DataView/prototype/setUint8/detached-buffer-before-outofrange-byteoffset.js: >+ default: 'Test262Error: 13 Expected a TypeError but got a RangeError' >+ strict mode: 'Test262Error: 13 Expected a TypeError but got a RangeError' >+test/built-ins/DataView/prototype/setUint8/detached-buffer.js: >+ default: 'Test262Error: Expected a TypeError but got a RangeError' >+ strict mode: 'Test262Error: Expected a TypeError but got a RangeError' >+test/built-ins/Date/TimeClip_negative_zero.js: >+ default: 'Test262Error: TimeClip does not return negative zero Expected SameValue(ë0û, ë0û) to be true' >+ strict mode: 'Test262Error: TimeClip does not return negative zero Expected SameValue(ë0û, ë0û) to be true' >+test/built-ins/Date/UTC/return-value.js: >+ default: 'Test262Error: 1970 Expected SameValue(ëNaNû, ë0û) to be true' >+ strict mode: 'Test262Error: 1970 Expected SameValue(ëNaNû, ë0û) to be true' >+test/built-ins/Date/proto-from-ctor-realm-one.js: >+ default: 'TypeError: Type error' >+ strict mode: 'TypeError: Type error' >+test/built-ins/Date/proto-from-ctor-realm-two.js: >+ default: 'TypeError: Type error' >+ strict mode: 'TypeError: Type error' >+test/built-ins/Date/proto-from-ctor-realm-zero.js: >+ default: 'TypeError: Type error' >+ strict mode: 'TypeError: Type error' >+test/built-ins/Date/prototype/getTime/this-value-valid-date.js: >+ default: 'Test262Error: -0 Expected SameValue(ë0û, ë0û) to be true' >+ strict mode: 'Test262Error: -0 Expected SameValue(ë0û, ë0û) to be true' >+test/built-ins/Error/proto-from-ctor-realm.js: >+ default: 'Test262Error: Expected SameValue(ëErrorû, ëErrorû) to be true' >+ strict mode: 'Test262Error: Expected SameValue(ëErrorû, ëErrorû) to be true' >+test/built-ins/Function/StrictFunction_restricted-properties.js: >+ default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >+test/built-ins/Function/call-bind-this-realm-undef.js: >+ default: 'Test262Error: implicit undefined Expected SameValue(ë[object global]û, ë[object Undefined]û) to be true' >+ strict mode: 'Test262Error: implicit undefined Expected SameValue(ë[object global]û, ë[object Undefined]û) to be true' >+test/built-ins/Function/internals/Call/class-ctor-realm.js: >+ default: 'Test262Error: Expected a TypeError but got a TypeError' >+ strict mode: 'Test262Error: Expected a TypeError but got a TypeError' >+test/built-ins/Function/internals/Construct/base-ctor-revoked-proxy-realm.js: >+ default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >+ strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >+test/built-ins/Function/internals/Construct/base-ctor-revoked-proxy.js: >+ default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >+ strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >+test/built-ins/Function/internals/Construct/derived-return-val-realm.js: >+ default: 'Test262Error: Expected a TypeError but got a TypeError' >+ strict mode: 'Test262Error: Expected a TypeError but got a TypeError' >+test/built-ins/Function/internals/Construct/derived-this-uninitialized-realm.js: >+ default: 'Test262Error: Expected a ReferenceError but got a ReferenceError' >+ strict mode: 'Test262Error: Expected a ReferenceError but got a ReferenceError' >+test/built-ins/Function/proto-from-ctor-realm.js: >+ default: 'Test262Error: Expected SameValue(ëfunction () {' >+ strict mode: 'Test262Error: Expected SameValue(ëfunction () {' >+test/built-ins/Function/prototype/bind/proto-from-ctor-realm.js: >+ default: 'Test262Error: Expected SameValue(ë[object Object]û, ë[object Object]û) to be true' >+ strict mode: 'Test262Error: Expected SameValue(ë[object Object]û, ë[object Object]û) to be true' >+test/built-ins/Function/prototype/restricted-property-arguments.js: >+ default: "ReferenceError: Can't find variable: verifyNotEnumerable" >+ strict mode: "ReferenceError: Can't find variable: verifyNotEnumerable" >+test/built-ins/Function/prototype/restricted-property-caller.js: >+ default: "ReferenceError: Can't find variable: verifyNotEnumerable" >+ strict mode: "ReferenceError: Can't find variable: verifyNotEnumerable" >+test/built-ins/Function/prototype/toString/AsyncFunction.js: >+ default: "SyntaxError: Unexpected token '}'. Expected a ')' or a ',' after a parameter declaration." >+ strict mode: "SyntaxError: Unexpected token '}'. Expected a ')' or a ',' after a parameter declaration." >+test/built-ins/Function/prototype/toString/AsyncGenerator.js: >+ default: "SyntaxError: Unexpected token '*'. Expected a parenthesis for argument list." >+ strict mode: "SyntaxError: Unexpected token '*'. Expected a parenthesis for argument list." >+test/built-ins/Function/prototype/toString/Function.js: >+ default: "SyntaxError: Unexpected token '}'. Expected a ')' or a ',' after a parameter declaration." >+ strict mode: "SyntaxError: Unexpected token '}'. Expected a ')' or a ',' after a parameter declaration." >+test/built-ins/Function/prototype/toString/GeneratorFunction.js: >+ default: "SyntaxError: Unexpected token '}'. Expected a ')' or a ',' after a parameter declaration." >+ strict mode: "SyntaxError: Unexpected token '}'. Expected a ')' or a ',' after a parameter declaration." >+test/built-ins/Function/prototype/toString/async-arrow-function.js: >+ default: 'Test262Error: looks pretty much like a NativeFunction' >+ strict mode: 'Test262Error: looks pretty much like a NativeFunction' >+test/built-ins/Function/prototype/toString/async-function-declaration.js: >+ default: 'Test262Error: looks pretty much like a NativeFunction' >+ strict mode: 'Test262Error: looks pretty much like a NativeFunction' >+test/built-ins/Function/prototype/toString/async-function-expression.js: >+ default: 'Test262Error: looks pretty much like a NativeFunction' >+ strict mode: 'Test262Error: looks pretty much like a NativeFunction' >+test/built-ins/Function/prototype/toString/async-generator-declaration.js: >+ default: 'Test262Error: looks pretty much like a NativeFunction' >+ strict mode: 'Test262Error: looks pretty much like a NativeFunction' >+test/built-ins/Function/prototype/toString/async-generator-expression.js: >+ default: 'Test262Error: looks pretty much like a NativeFunction' >+ strict mode: 'Test262Error: looks pretty much like a NativeFunction' >+test/built-ins/Function/prototype/toString/async-generator-method-class-expression-static.js: >+ default: 'Test262Error: looks pretty much like a NativeFunction' >+ strict mode: 'Test262Error: looks pretty much like a NativeFunction' >+test/built-ins/Function/prototype/toString/async-generator-method-class-expression.js: >+ default: 'Test262Error: looks pretty much like a NativeFunction' >+ strict mode: 'Test262Error: looks pretty much like a NativeFunction' >+test/built-ins/Function/prototype/toString/async-generator-method-class-statement-static.js: >+ default: 'Test262Error: looks pretty much like a NativeFunction' >+ strict mode: 'Test262Error: looks pretty much like a NativeFunction' >+test/built-ins/Function/prototype/toString/async-generator-method-class-statement.js: >+ default: 'Test262Error: looks pretty much like a NativeFunction' >+ strict mode: 'Test262Error: looks pretty much like a NativeFunction' >+test/built-ins/Function/prototype/toString/async-generator-method-object.js: >+ default: 'Test262Error: looks pretty much like a NativeFunction' >+ strict mode: 'Test262Error: looks pretty much like a NativeFunction' >+test/built-ins/Function/prototype/toString/async-method-class-expression-static.js: >+ default: 'Test262Error: looks pretty much like a NativeFunction' >+ strict mode: 'Test262Error: looks pretty much like a NativeFunction' >+test/built-ins/Function/prototype/toString/async-method-class-expression.js: >+ default: 'Test262Error: looks pretty much like a NativeFunction' >+ strict mode: 'Test262Error: looks pretty much like a NativeFunction' >+test/built-ins/Function/prototype/toString/async-method-class-statement-static.js: >+ default: 'Test262Error: looks pretty much like a NativeFunction' >+ strict mode: 'Test262Error: looks pretty much like a NativeFunction' >+test/built-ins/Function/prototype/toString/async-method-class-statement.js: >+ default: 'Test262Error: looks pretty much like a NativeFunction' >+ strict mode: 'Test262Error: looks pretty much like a NativeFunction' >+test/built-ins/Function/prototype/toString/async-method-object.js: >+ default: 'Test262Error: looks pretty much like a NativeFunction' >+ strict mode: 'Test262Error: looks pretty much like a NativeFunction' >+test/built-ins/Function/prototype/toString/function-declaration-non-simple-parameter-list.js: >+ default: 'Test262Error: looks pretty much like a NativeFunction' >+ strict mode: 'Test262Error: looks pretty much like a NativeFunction' >+test/built-ins/Function/prototype/toString/function-declaration.js: >+ default: 'Test262Error: looks pretty much like a NativeFunction' >+ strict mode: 'Test262Error: looks pretty much like a NativeFunction' >+test/built-ins/Function/prototype/toString/function-expression.js: >+ default: 'Test262Error: looks pretty much like a NativeFunction' >+ strict mode: 'Test262Error: looks pretty much like a NativeFunction' >+test/built-ins/Function/prototype/toString/generator-function-declaration.js: >+ default: 'Test262Error: looks pretty much like a NativeFunction' >+ strict mode: 'Test262Error: looks pretty much like a NativeFunction' >+test/built-ins/Function/prototype/toString/generator-function-expression.js: >+ default: 'Test262Error: looks pretty much like a NativeFunction' >+ strict mode: 'Test262Error: looks pretty much like a NativeFunction' >+test/built-ins/Function/prototype/toString/generator-method.js: >+ default: 'Test262Error: looks pretty much like a NativeFunction' >+ strict mode: 'Test262Error: looks pretty much like a NativeFunction' >+test/built-ins/Function/prototype/toString/getter-class-expression-static.js: >+ default: 'Test262Error: looks pretty much like a NativeFunction' >+ strict mode: 'Test262Error: looks pretty much like a NativeFunction' >+test/built-ins/Function/prototype/toString/getter-class-expression.js: >+ default: 'Test262Error: looks pretty much like a NativeFunction' >+ strict mode: 'Test262Error: looks pretty much like a NativeFunction' >+test/built-ins/Function/prototype/toString/getter-class-statement-static.js: >+ default: 'Test262Error: looks pretty much like a NativeFunction' >+ strict mode: 'Test262Error: looks pretty much like a NativeFunction' >+test/built-ins/Function/prototype/toString/getter-class-statement.js: >+ default: 'Test262Error: looks pretty much like a NativeFunction' >+ strict mode: 'Test262Error: looks pretty much like a NativeFunction' >+test/built-ins/Function/prototype/toString/getter-object.js: >+ default: 'Test262Error: looks pretty much like a NativeFunction' >+ strict mode: 'Test262Error: looks pretty much like a NativeFunction' >+test/built-ins/Function/prototype/toString/line-terminator-normalisation-CR-LF.js: >+ default: "ReferenceError: Can't find variable: assertToStringOrNativeFunction" >+ strict mode: "ReferenceError: Can't find variable: assertToStringOrNativeFunction" >+test/built-ins/Function/prototype/toString/line-terminator-normalisation-CR.js: >+ default: "ReferenceError: Can't find variable: assertToStringOrNativeFunction" >+ strict mode: "ReferenceError: Can't find variable: assertToStringOrNativeFunction" >+test/built-ins/Function/prototype/toString/line-terminator-normalisation-LF.js: >+ default: 'Test262Error: looks pretty much like a NativeFunction' >+ strict mode: 'Test262Error: looks pretty much like a NativeFunction' >+test/built-ins/Function/prototype/toString/method-class-expression-static.js: >+ default: 'Test262Error: looks pretty much like a NativeFunction' >+ strict mode: 'Test262Error: looks pretty much like a NativeFunction' >+test/built-ins/Function/prototype/toString/method-class-expression.js: >+ default: 'Test262Error: looks pretty much like a NativeFunction' >+ strict mode: 'Test262Error: looks pretty much like a NativeFunction' >+test/built-ins/Function/prototype/toString/method-class-statement-static.js: >+ default: 'Test262Error: looks pretty much like a NativeFunction' >+ strict mode: 'Test262Error: looks pretty much like a NativeFunction' >+test/built-ins/Function/prototype/toString/method-class-statement.js: >+ default: 'Test262Error: looks pretty much like a NativeFunction' >+ strict mode: 'Test262Error: looks pretty much like a NativeFunction' >+test/built-ins/Function/prototype/toString/method-computed-property-name.js: >+ default: 'Test262Error: looks pretty much like a NativeFunction' >+ strict mode: 'Test262Error: looks pretty much like a NativeFunction' >+test/built-ins/Function/prototype/toString/method-object.js: >+ default: 'Test262Error: looks pretty much like a NativeFunction' >+ strict mode: 'Test262Error: looks pretty much like a NativeFunction' >+test/built-ins/Function/prototype/toString/setter-class-expression-static.js: >+ default: 'Test262Error: looks pretty much like a NativeFunction' >+ strict mode: 'Test262Error: looks pretty much like a NativeFunction' >+test/built-ins/Function/prototype/toString/setter-class-expression.js: >+ default: 'Test262Error: looks pretty much like a NativeFunction' >+ strict mode: 'Test262Error: looks pretty much like a NativeFunction' >+test/built-ins/Function/prototype/toString/setter-class-statement-static.js: >+ default: 'Test262Error: looks pretty much like a NativeFunction' >+ strict mode: 'Test262Error: looks pretty much like a NativeFunction' >+test/built-ins/Function/prototype/toString/setter-class-statement.js: >+ default: 'Test262Error: looks pretty much like a NativeFunction' >+ strict mode: 'Test262Error: looks pretty much like a NativeFunction' >+test/built-ins/Function/prototype/toString/setter-object.js: >+ default: 'Test262Error: looks pretty much like a NativeFunction' >+ strict mode: 'Test262Error: looks pretty much like a NativeFunction' >+test/built-ins/Function/prototype/toString/unicode.js: >+ default: 'Test262Error: looks pretty much like a NativeFunction' >+ strict mode: 'Test262Error: looks pretty much like a NativeFunction' >+test/built-ins/GeneratorFunction/proto-from-ctor-realm.js: >+ default: 'TypeError: Type error' >+ strict mode: 'TypeError: Type error' >+test/built-ins/JSON/parse/revived-proxy.js: >+ default: 'Test262Error: proxy for array Expected SameValue(ëtrueû, ëfalseû) to be true' >+ strict mode: 'Test262Error: proxy for array Expected SameValue(ëtrueû, ëfalseû) to be true' >+test/built-ins/JSON/parse/reviver-array-length-coerce-err.js: >+ default: 'Test262Error: Expected a Test262Error to be thrown but no exception was thrown at all' >+ strict mode: 'Test262Error: Expected a Test262Error to be thrown but no exception was thrown at all' >+test/built-ins/JSON/parse/reviver-array-length-get-err.js: >+ default: 'Test262Error: Expected a Test262Error to be thrown but no exception was thrown at all' >+ strict mode: 'Test262Error: Expected a Test262Error to be thrown but no exception was thrown at all' >+test/built-ins/JSON/stringify/replacer-proxy-revoked.js: >+ default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >+ strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >+test/built-ins/Map/proto-from-ctor-realm.js: >+ default: 'Test262Error: Expected SameValue(ë[object Map]û, ë[object Map]û) to be true' >+ strict mode: 'Test262Error: Expected SameValue(ë[object Map]û, ë[object Map]û) to be true' >+test/built-ins/Math/cbrt/prop-desc.js: >+ default: "ReferenceError: Can't find variable: verifyNotEnumerable" >+ strict mode: "ReferenceError: Can't find variable: verifyNotEnumerable" >+test/built-ins/Math/round/S15.8.2.15_A7.js: >+ default: "Test262Error: #4: '1 / Math.round(0.49999999999999994) !== 1 / 0'" >+ strict mode: "Test262Error: #4: '1 / Math.round(0.49999999999999994) !== 1 / 0'" >+test/built-ins/Number/S9.3.1_A2_U180E.js: >+ default: 'Test262Error: Number("\u180E") === NaN. Actual: 0 Expected SameValue(ë0û, ëNaNû) to be true' >+ strict mode: 'Test262Error: Number("\u180E") === NaN. Actual: 0 Expected SameValue(ë0û, ëNaNû) to be true' >+test/built-ins/Number/S9.3.1_A3_T1_U180E.js: >+ default: 'Test262Error: Number("\u180E") === NaN Expected SameValue(ë0û, ëNaNû) to be true' >+ strict mode: 'Test262Error: Number("\u180E") === NaN Expected SameValue(ë0û, ëNaNû) to be true' >+test/built-ins/Number/S9.3.1_A3_T2_U180E.js: >+ default: 'Test262Error: Number(dynaString("", "á Â")) === NaN Expected SameValue(ë0û, ëNaNû) to be true' >+ strict mode: 'Test262Error: Number(dynaString("", "á Â")) === NaN Expected SameValue(ë0û, ëNaNû) to be true' >+test/built-ins/Number/proto-from-ctor-realm.js: >+ default: 'Test262Error: Expected SameValue(ë0û, ë0û) to be true' >+ strict mode: 'Test262Error: Expected SameValue(ë0û, ë0û) to be true' >+test/built-ins/Number/prototype/toExponential/range.js: >+ default: 'RangeError: toExponential() argument must be between 0 and 20' >+ strict mode: 'RangeError: toExponential() argument must be between 0 and 20' >+test/built-ins/Number/prototype/toFixed/range.js: >+ default: 'RangeError: toFixed() argument must be between 0 and 20' >+ strict mode: 'RangeError: toFixed() argument must be between 0 and 20' >+test/built-ins/Number/prototype/toPrecision/range.js: >+ default: 'RangeError: toPrecision() argument must be between 1 and 21' >+ strict mode: 'RangeError: toPrecision() argument must be between 1 and 21' >+test/built-ins/Object/defineProperties/15.2.3.7-2-15.js: >+ default: 'TypeError: Property description must be an object.' >+ strict mode: 'TypeError: Property description must be an object.' >+test/built-ins/Object/defineProperties/15.2.3.7-5-a-16.js: >+ default: 'TypeError: Property description must be an object.' >+ strict mode: 'TypeError: Property description must be an object.' >+test/built-ins/Object/defineProperties/15.2.3.7-5-b-248.js: >+ default: 'TypeError: Property description must be an object.' >+ strict mode: 'TypeError: Property description must be an object.' >+test/built-ins/Object/defineProperty/15.2.3.6-4-289-1.js: >+ default: "ReferenceError: Can't find variable: verifyEqualTo" >+ strict mode: "ReferenceError: Can't find variable: verifyEqualTo" >+test/built-ins/Object/internals/DefineOwnProperty/consistent-value-function-arguments.js: >+ default: 'Test262Error: Expected SameValue(ënullû, ë[object Arguments]û) to be true' >+test/built-ins/Object/internals/DefineOwnProperty/consistent-value-function-caller.js: >+ default: 'Test262Error: Expected SameValue(ënullû, ëfunction g() {' >+test/built-ins/Object/proto-from-ctor.js: >+ default: 'Test262Error: Expected SameValue(ë[object Object]û, ë[object Object]û) to be true' >+ strict mode: 'Test262Error: Expected SameValue(ë[object Object]û, ë[object Object]û) to be true' >+test/built-ins/Object/prototype/toString/proxy-function.js: >+ default: 'Test262Error: function proxy Expected SameValue(ë[object Object]û, ë[object Function]û) to be true' >+ strict mode: 'Test262Error: function proxy Expected SameValue(ë[object Object]û, ë[object Function]û) to be true' >+test/built-ins/Promise/all/resolve-element-function-nonconstructor.js: >+ default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >+ strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >+test/built-ins/Promise/proto-from-ctor-realm.js: >+ default: 'Test262Error: Expected SameValue(ë[object Promise]û, ë[object Promise]û) to be true' >+ strict mode: 'Test262Error: Expected SameValue(ë[object Promise]û, ë[object Promise]û) to be true' >+test/built-ins/Promise/reject-function-nonconstructor.js: >+ default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >+ strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >+test/built-ins/Promise/resolve-function-nonconstructor.js: >+ default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >+ strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >+test/built-ins/Proxy/apply/arguments-realm.js: >+ default: 'Test262Error: Expected SameValue(ëfunction Array() {' >+ strict mode: 'Test262Error: Expected SameValue(ëfunction Array() {' >+test/built-ins/Proxy/apply/trap-is-not-callable-realm.js: >+ default: 'Test262Error: Expected a TypeError but got a TypeError' >+ strict mode: 'Test262Error: Expected a TypeError but got a TypeError' >+test/built-ins/Proxy/construct/arguments-realm.js: >+ default: 'Test262Error: Expected SameValue(ëfunction Array() {' >+ strict mode: 'Test262Error: Expected SameValue(ëfunction Array() {' >+test/built-ins/Proxy/construct/trap-is-not-callable-realm.js: >+ default: 'Test262Error: Expected a TypeError but got a TypeError' >+ strict mode: 'Test262Error: Expected a TypeError but got a TypeError' >+test/built-ins/Proxy/construct/trap-is-undefined-proto-from-ctor-realm.js: >+ default: 'Test262Error: Expected SameValue(ë[object Object]û, ë[object Object]û) to be true' >+ strict mode: 'Test262Error: Expected SameValue(ë[object Object]û, ë[object Object]û) to be true' >+test/built-ins/Proxy/create-handler-is-revoked-proxy.js: >+ default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >+ strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >+test/built-ins/Proxy/ownKeys/return-duplicate-entries-throws.js: >+ default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >+ strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >+test/built-ins/Proxy/ownKeys/return-duplicate-symbol-entries-throws.js: >+ default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >+ strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >+test/built-ins/RegExp/S15.10.2.12_A2_T1.js: >+ default: 'Test262Error: #6: Error matching character class S between character 1800 and 1bff' >+ strict mode: 'Test262Error: #6: Error matching character class S between character 1800 and 1bff' >+test/built-ins/RegExp/lookBehind/alternations.js: >+ default: 'SyntaxError: Invalid regular expression: invalid group specifier name' >+ strict mode: 'SyntaxError: Invalid regular expression: invalid group specifier name' >+test/built-ins/RegExp/lookBehind/back-references-to-captures.js: >+ default: 'SyntaxError: Invalid regular expression: invalid group specifier name' >+ strict mode: 'SyntaxError: Invalid regular expression: invalid group specifier name' >+test/built-ins/RegExp/lookBehind/back-references.js: >+ default: 'SyntaxError: Invalid regular expression: invalid group specifier name' >+ strict mode: 'SyntaxError: Invalid regular expression: invalid group specifier name' >+test/built-ins/RegExp/lookBehind/captures-negative.js: >+ default: 'SyntaxError: Invalid regular expression: invalid group specifier name' >+ strict mode: 'SyntaxError: Invalid regular expression: invalid group specifier name' >+test/built-ins/RegExp/lookBehind/captures.js: >+ default: 'SyntaxError: Invalid regular expression: invalid group specifier name' >+ strict mode: 'SyntaxError: Invalid regular expression: invalid group specifier name' >+test/built-ins/RegExp/lookBehind/do-not-backtrack.js: >+ default: 'SyntaxError: Invalid regular expression: invalid group specifier name' >+ strict mode: 'SyntaxError: Invalid regular expression: invalid group specifier name' >+test/built-ins/RegExp/lookBehind/greedy-loop.js: >+ default: 'SyntaxError: Invalid regular expression: invalid group specifier name' >+ strict mode: 'SyntaxError: Invalid regular expression: invalid group specifier name' >+test/built-ins/RegExp/lookBehind/misc.js: >+ default: 'SyntaxError: Invalid regular expression: invalid group specifier name' >+ strict mode: 'SyntaxError: Invalid regular expression: invalid group specifier name' >+test/built-ins/RegExp/lookBehind/mutual-recursive.js: >+ default: 'SyntaxError: Invalid regular expression: invalid group specifier name' >+ strict mode: 'SyntaxError: Invalid regular expression: invalid group specifier name' >+test/built-ins/RegExp/lookBehind/negative.js: >+ default: 'SyntaxError: Invalid regular expression: invalid group specifier name' >+ strict mode: 'SyntaxError: Invalid regular expression: invalid group specifier name' >+test/built-ins/RegExp/lookBehind/nested-lookaround.js: >+ default: 'SyntaxError: Invalid regular expression: invalid group specifier name' >+ strict mode: 'SyntaxError: Invalid regular expression: invalid group specifier name' >+test/built-ins/RegExp/lookBehind/simple-fixed-length.js: >+ default: 'SyntaxError: Invalid regular expression: invalid group specifier name' >+ strict mode: 'SyntaxError: Invalid regular expression: invalid group specifier name' >+test/built-ins/RegExp/lookBehind/sliced-strings.js: >+ default: 'SyntaxError: Invalid regular expression: invalid group specifier name' >+ strict mode: 'SyntaxError: Invalid regular expression: invalid group specifier name' >+test/built-ins/RegExp/lookBehind/start-of-line.js: >+ default: 'SyntaxError: Invalid regular expression: invalid group specifier name' >+ strict mode: 'SyntaxError: Invalid regular expression: invalid group specifier name' >+test/built-ins/RegExp/lookBehind/sticky.js: >+ default: 'SyntaxError: Invalid regular expression: invalid group specifier name' >+ strict mode: 'SyntaxError: Invalid regular expression: invalid group specifier name' >+test/built-ins/RegExp/lookBehind/variable-length.js: >+ default: 'SyntaxError: Invalid regular expression: invalid group specifier name' >+ strict mode: 'SyntaxError: Invalid regular expression: invalid group specifier name' >+test/built-ins/RegExp/lookBehind/word-boundary.js: >+ default: 'SyntaxError: Invalid regular expression: invalid group specifier name' >+ strict mode: 'SyntaxError: Invalid regular expression: invalid group specifier name' >+test/built-ins/RegExp/named-groups/functional-replace-global.js: >+ default: "TypeError: undefined is not an object (evaluating 'groups.fst')" >+ strict mode: "TypeError: undefined is not an object (evaluating 'groups.fst')" >+test/built-ins/RegExp/named-groups/groups-object-subclass-sans.js: >+ default: 'Test262Error: Expected SameValue(ëbû, ë$<a>û) to be true' >+ strict mode: 'Test262Error: Expected SameValue(ëbû, ë$<a>û) to be true' >+test/built-ins/RegExp/named-groups/groups-object-subclass.js: >+ default: 'Test262Error: Expected SameValue(ëbû, ë$<a>û) to be true' >+ strict mode: 'Test262Error: Expected SameValue(ëbû, ë$<a>û) to be true' >+test/built-ins/RegExp/named-groups/groups-object-undefined.js: >+ default: 'Test262Error: Expected true but got false' >+ strict mode: 'Test262Error: Expected true but got false' >+test/built-ins/RegExp/named-groups/groups-object.js: >+ default: 'Test262Error: Expected SameValue(ënullû, ë[object Object]û) to be true' >+ strict mode: 'Test262Error: Expected SameValue(ënullû, ë[object Object]û) to be true' >+test/built-ins/RegExp/named-groups/lookbehind.js: >+ default: 'SyntaxError: Invalid regular expression: invalid group specifier name' >+ strict mode: 'SyntaxError: Invalid regular expression: invalid group specifier name' >+test/built-ins/RegExp/named-groups/non-unicode-malformed.js: >+ default: 'Test262Error: Expected a SyntaxError to be thrown but no exception was thrown at all' >+ strict mode: 'Test262Error: Expected a SyntaxError to be thrown but no exception was thrown at all' >+test/built-ins/RegExp/named-groups/non-unicode-references.js: >+ default: "TypeError: null is not an object (evaluating 'b.length')" >+ strict mode: "TypeError: null is not an object (evaluating 'b.length')" >+test/built-ins/RegExp/named-groups/string-replace-nocaptures.js: >+ default: 'Test262Error: Expected SameValue(ë$<snd>$<fst>cdû, ë$<$<fst>cdû) to be true' >+ strict mode: 'Test262Error: Expected SameValue(ë$<snd>$<fst>cdû, ë$<$<fst>cdû) to be true' >+test/built-ins/RegExp/named-groups/unicode-malformed.js: >+ default: 'Test262Error: Lone k Expected a SyntaxError to be thrown but no exception was thrown at all' >+ strict mode: 'Test262Error: Lone k Expected a SyntaxError to be thrown but no exception was thrown at all' >+test/built-ins/RegExp/named-groups/unicode-property-names.js: >+ default: 'SyntaxError: Invalid regular expression: invalid group specifier name' >+ strict mode: 'SyntaxError: Invalid regular expression: invalid group specifier name' >+test/built-ins/RegExp/named-groups/unicode-references.js: >+ default: 'SyntaxError: Invalid regular expression: invalid backreference for unicode pattern' >+ strict mode: 'SyntaxError: Invalid regular expression: invalid backreference for unicode pattern' >+test/built-ins/RegExp/property-escapes/character-class.js: >+ default: 'Test262Error: Function: /[\p{Hex}-\uFFFF]/u Expected a SyntaxError to be thrown but no exception was thrown at all' >+ strict mode: 'Test262Error: Function: /[\p{Hex}-\uFFFF]/u Expected a SyntaxError to be thrown but no exception was thrown at all' >+test/built-ins/RegExp/proto-from-ctor-realm.js: >+ default: 'Test262Error: Expected SameValue(ë/(?:)/û, ë/(?:)/û) to be true' >+ strict mode: 'Test262Error: Expected SameValue(ë/(?:)/û, ë/(?:)/û) to be true' >+test/built-ins/RegExp/prototype/Symbol.match/builtin-infer-unicode.js: >+ default: 'Test262Error: Expected SameValue(ëüÂû, ënullû) to be true' >+ strict mode: 'Test262Error: Expected SameValue(ëüÂû, ënullû) to be true' >+test/built-ins/RegExp/prototype/Symbol.replace/result-coerce-capture.js: >+ default: 'Test262Error: Expected SameValue(ëû, ëfoo[toString value]barû) to be true' >+ strict mode: 'Test262Error: Expected SameValue(ëû, ëfoo[toString value]barû) to be true' >+test/built-ins/RegExp/prototype/Symbol.replace/result-coerce-length.js: >+ default: 'Test262Error: Expected SameValue(ëû, ëfoobar$3û) to be true' >+ strict mode: 'Test262Error: Expected SameValue(ëû, ëfoobar$3û) to be true' >+test/built-ins/RegExp/prototype/Symbol.replace/result-coerce-matched.js: >+ default: 'Test262Error: Expected SameValue(ëû, ëfoo[toString value]barû) to be true' >+ strict mode: 'Test262Error: Expected SameValue(ëû, ëfoo[toString value]barû) to be true' >+test/built-ins/RegExp/prototype/Symbol.replace/subst-capture-idx-1.js: >+ default: 'Test262Error: Expected SameValue(ëa[cd]eû, ëa[cd$4$0]eû) to be true' >+ strict mode: 'Test262Error: Expected SameValue(ëa[cd]eû, ëa[cd$4$0]eû) to be true' >+test/built-ins/RegExp/prototype/Symbol.replace/subst-capture-idx-2.js: >+ default: 'Test262Error: Expected SameValue(ëa[cd]eû, ëa[cd$04$00]eû) to be true' >+ strict mode: 'Test262Error: Expected SameValue(ëa[cd]eû, ëa[cd$04$00]eû) to be true' >+test/built-ins/RegExp/prototype/Symbol.search/u-lastindex-advance.js: >+ default: 'Test262Error: Expected SameValue(ë1û, ë-1û) to be true' >+ strict mode: 'Test262Error: Expected SameValue(ë1û, ë-1û) to be true' >+test/built-ins/RegExp/prototype/Symbol.split/u-lastindex-adv-thru-failure.js: >+ default: 'Test262Error: Expected SameValue(ë2û, ë1û) to be true' >+ strict mode: 'Test262Error: Expected SameValue(ë2û, ë1û) to be true' >+test/built-ins/RegExp/prototype/exec/S15.10.6.2_A5_T3.js: >+ default: "TypeError: null is not an object (evaluating '__executed[0]')" >+ strict mode: "TypeError: null is not an object (evaluating '__executed[0]')" >+test/built-ins/RegExp/prototype/exec/failure-lastindex-access.js: >+ default: 'Test262Error: Expected SameValue(ë0û, ë1û) to be true' >+ strict mode: 'Test262Error: Expected SameValue(ë0û, ë1û) to be true' >+test/built-ins/RegExp/prototype/exec/success-lastindex-access.js: >+ default: 'Test262Error: Expected SameValue(ë0û, ë1û) to be true' >+ strict mode: 'Test262Error: Expected SameValue(ë0û, ë1û) to be true' >+test/built-ins/RegExp/prototype/exec/u-lastindex-adv.js: >+ default: 'Test262Error: Expected SameValue(ëüÂû, ënullû) to be true' >+ strict mode: 'Test262Error: Expected SameValue(ëüÂû, ënullû) to be true' >+test/built-ins/RegExp/prototype/test/S15.10.6.3_A1_T22.js: >+ default: 'Test262Error: #1: __re = /(?:ab|cd)\d?/g; __re.lastIndex=-1; __executed = __re.test("aacd22 "); __executed === true' >+ strict mode: 'Test262Error: #1: __re = /(?:ab|cd)\d?/g; __re.lastIndex=-1; __executed = __re.test("aacd22 "); __executed === true' >+test/built-ins/RegExp/u180e.js: >+ default: 'Test262Error: \s should not match U+180E Expected SameValue(ë42û, ëá Âû) to be true' >+ strict mode: 'Test262Error: \s should not match U+180E Expected SameValue(ë42û, ëá Âû) to be true' >+test/built-ins/RegExp/unicode_restricted_brackets.js: >+ default: 'Test262Error: RegExp("]", "u"): Expected a SyntaxError to be thrown but no exception was thrown at all' >+ strict mode: 'Test262Error: RegExp("]", "u"): Expected a SyntaxError to be thrown but no exception was thrown at all' >+test/built-ins/RegExp/unicode_restricted_character_class_escape.js: >+ default: 'Test262Error: RegExp("[\d-a]", "u"): Expected a SyntaxError to be thrown but no exception was thrown at all' >+ strict mode: 'Test262Error: RegExp("[\d-a]", "u"): Expected a SyntaxError to be thrown but no exception was thrown at all' >+test/built-ins/RegExp/unicode_restricted_identity_escape.js: >+ default: "Test262Error: Invalid IdentityEscape in AtomEscape: '\\" >+ strict mode: "Test262Error: Invalid IdentityEscape in AtomEscape: '\\" >+test/built-ins/RegExp/unicode_restricted_identity_escape_alpha.js: >+ default: "Test262Error: IdentityEscape in AtomEscape: 'c' Expected a SyntaxError to be thrown but no exception was thrown at all" >+ strict mode: "Test262Error: IdentityEscape in AtomEscape: 'c' Expected a SyntaxError to be thrown but no exception was thrown at all" >+test/built-ins/RegExp/unicode_restricted_identity_escape_c.js: >+ default: 'Test262Error: Expected a SyntaxError to be thrown but no exception was thrown at all' >+ strict mode: 'Test262Error: Expected a SyntaxError to be thrown but no exception was thrown at all' >+test/built-ins/RegExp/unicode_restricted_incomple_quantifier.js: >+ default: 'Test262Error: RegExp("a{", "u"): Expected a SyntaxError to be thrown but no exception was thrown at all' >+ strict mode: 'Test262Error: RegExp("a{", "u"): Expected a SyntaxError to be thrown but no exception was thrown at all' >+test/built-ins/RegExp/unicode_restricted_octal_escape.js: >+ default: 'Test262Error: RegExp("[\1]", "u"): Expected a SyntaxError to be thrown but no exception was thrown at all' >+ strict mode: 'Test262Error: RegExp("[\1]", "u"): Expected a SyntaxError to be thrown but no exception was thrown at all' >+test/built-ins/RegExp/unicode_restricted_quantifiable_assertion.js: >+ default: 'Test262Error: RegExp("(?=.)*", "u"): Expected a SyntaxError to be thrown but no exception was thrown at all' >+ strict mode: 'Test262Error: RegExp("(?=.)*", "u"): Expected a SyntaxError to be thrown but no exception was thrown at all' >+test/built-ins/Set/proto-from-ctor-realm.js: >+ default: 'Test262Error: Expected SameValue(ë[object Set]û, ë[object Set]û) to be true' >+ strict mode: 'Test262Error: Expected SameValue(ë[object Set]û, ë[object Set]û) to be true' >+test/built-ins/String/proto-from-ctor-realm.js: >+ default: 'Test262Error: Expected SameValue(ëû, ëû) to be true' >+ strict mode: 'Test262Error: Expected SameValue(ëû, ëû) to be true' >+test/built-ins/String/prototype/trim/u180e.js: >+ default: 'Test262Error: Expected SameValue(ë_û, ë_á Âû) to be true' >+ strict mode: 'Test262Error: Expected SameValue(ë_û, ë_á Âû) to be true' >+test/built-ins/ThrowTypeError/extensible.js: >+ default: 'Test262Error: Expected SameValue(ëtrueû, ëfalseû) to be true' >+ strict mode: 'Test262Error: Expected SameValue(ëtrueû, ëfalseû) to be true' >+test/built-ins/ThrowTypeError/frozen.js: >+ default: 'Test262Error: Expected SameValue(ëfalseû, ëtrueû) to be true' >+ strict mode: 'Test262Error: Expected SameValue(ëfalseû, ëtrueû) to be true' >+test/built-ins/ThrowTypeError/length.js: >+ default: 'Test262Error: Expected obj[length] to have configurable:false.' >+ strict mode: 'Test262Error: Expected obj[length] to have configurable:false.' >+test/built-ins/ThrowTypeError/unique-per-realm-non-simple.js: >+ default: 'Test262Error: callee.get Expected SameValue(ëfunction () {' >+test/built-ins/TypedArray/prototype/fill/fill-values-conversion-once.js: >+ default: 'Test262Error: additional unexpected ToNumber() calls Expected SameValue(ë3û, ë2û) to be true (Testing with Float64Array.)' >+ strict mode: 'Test262Error: additional unexpected ToNumber() calls Expected SameValue(ë3û, ë2û) to be true (Testing with Float64Array.)' >+test/built-ins/TypedArray/prototype/filter/speciesctor-get-ctor-returns-throws.js: >+ default: 'Test262Error: 42 Expected a TypeError to be thrown but no exception was thrown at all (Testing with Float64Array.)' >+ strict mode: 'Test262Error: 42 Expected a TypeError to be thrown but no exception was thrown at all (Testing with Float64Array.)' >+test/built-ins/TypedArray/prototype/filter/speciesctor-get-species-custom-ctor-length-throws.js: >+ default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all (Testing with Float64Array.)' >+ strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all (Testing with Float64Array.)' >+test/built-ins/TypedArray/prototype/indexOf/length-zero-returns-minus-one.js: >+ default: 'Test262Error: (Testing with Float64Array.)' >+ strict mode: 'Test262Error: (Testing with Float64Array.)' >+test/built-ins/TypedArray/prototype/lastIndexOf/length-zero-returns-minus-one.js: >+ default: 'Test262Error: (Testing with Float64Array.)' >+ strict mode: 'Test262Error: (Testing with Float64Array.)' >+test/built-ins/TypedArray/prototype/slice/arraylength-internal.js: >+ default: 'Test262Error: Expected SameValue(ëtrueû, ëfalseû) to be true (Testing with Float64Array.)' >+ strict mode: 'Test262Error: Expected SameValue(ëtrueû, ëfalseû) to be true (Testing with Float64Array.)' >+test/built-ins/TypedArray/prototype/slice/detached-buffer-zero-count-custom-ctor-other-targettype.js: >+ default: 'TypeError: Underlying ArrayBuffer has been detached from the view (Testing with Float64Array.)' >+ strict mode: 'TypeError: Underlying ArrayBuffer has been detached from the view (Testing with Float64Array.)' >+test/built-ins/TypedArray/prototype/slice/detached-buffer-zero-count-custom-ctor-same-targettype.js: >+ default: 'TypeError: Underlying ArrayBuffer has been detached from the view (Testing with Float64Array.)' >+ strict mode: 'TypeError: Underlying ArrayBuffer has been detached from the view (Testing with Float64Array.)' >+test/built-ins/TypedArray/prototype/slice/results-with-empty-length.js: >+ default: 'Test262Error: begin == length & result.hasOwnProperty(0) === false Expected SameValue(ëtrueû, ëfalseû) to be true (Testing with Float64Array.)' >+ strict mode: 'Test262Error: begin == length & result.hasOwnProperty(0) === false Expected SameValue(ëtrueû, ëfalseû) to be true (Testing with Float64Array.)' >+test/built-ins/TypedArray/prototype/slice/speciesctor-get-species-custom-ctor-length-throws.js: >+ default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all (Testing with Float64Array.)' >+ strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all (Testing with Float64Array.)' >+test/built-ins/TypedArray/prototype/sort/comparefn-nonfunction-call-throws.js: >+ default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all (Testing with Float64Array.)' >+ strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all (Testing with Float64Array.)' >+test/built-ins/TypedArray/prototype/subarray/results-with-empty-length.js: >+ default: 'Test262Error: begin == length & result.hasOwnProperty(0) === false Expected SameValue(ëtrueû, ëfalseû) to be true (Testing with Float64Array.)' >+ strict mode: 'Test262Error: begin == length & result.hasOwnProperty(0) === false Expected SameValue(ëtrueû, ëfalseû) to be true (Testing with Float64Array.)' >+test/built-ins/TypedArray/prototype/toLocaleString/calls-tostring-from-each-value.js: >+ default: 'Test262Error: should not call valueOf if toString is present (Testing with Float64Array.)' >+ strict mode: 'Test262Error: should not call valueOf if toString is present (Testing with Float64Array.)' >+test/built-ins/TypedArray/prototype/toLocaleString/calls-valueof-from-each-value.js: >+ default: 'Test262Error: returns expected value Expected SameValue(ëhacks2,hacks1û, ëhacks1,hacks2û) to be true (Testing with Float64Array.)' >+ strict mode: 'Test262Error: returns expected value Expected SameValue(ëhacks2,hacks1û, ëhacks1,hacks2û) to be true (Testing with Float64Array.)' >+test/built-ins/TypedArrayConstructors/ctors/buffer-arg/bufferbyteoffset-throws-from-modulo-element-size.js: >+ default: 'Test262Error: Expected a RangeError to be thrown but no exception was thrown at all (Testing with Float64Array.)' >+ strict mode: 'Test262Error: Expected a RangeError to be thrown but no exception was thrown at all (Testing with Float64Array.)' >+test/built-ins/TypedArrayConstructors/ctors/buffer-arg/byteoffset-to-number-detachbuffer.js: >+ default: 'Test262Error: Expected a TypeError but got a RangeError (Testing with Float64Array.)' >+ strict mode: 'Test262Error: Expected a TypeError but got a RangeError (Testing with Float64Array.)' >+test/built-ins/TypedArrayConstructors/ctors/buffer-arg/detachedbuffer.js: >+ default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all (Testing with Float64Array.)' >+ strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all (Testing with Float64Array.)' >+test/built-ins/TypedArrayConstructors/ctors/buffer-arg/length-to-number-detachbuffer.js: >+ default: 'Test262Error: Expected a TypeError but got a RangeError (Testing with Float64Array.)' >+ strict mode: 'Test262Error: Expected a TypeError but got a RangeError (Testing with Float64Array.)' >+test/built-ins/TypedArrayConstructors/ctors/buffer-arg/proto-from-ctor-realm.js: >+ default: 'TypeError: Receiver should be a typed array view (Testing with Float64Array.)' >+ strict mode: 'TypeError: Receiver should be a typed array view (Testing with Float64Array.)' >+test/built-ins/TypedArrayConstructors/ctors/length-arg/proto-from-ctor-realm.js: >+ default: 'TypeError: Receiver should be a typed array view (Testing with Float64Array.)' >+ strict mode: 'TypeError: Receiver should be a typed array view (Testing with Float64Array.)' >+test/built-ins/TypedArrayConstructors/ctors/no-args/proto-from-ctor-realm.js: >+ default: 'TypeError: Receiver should be a typed array view (Testing with Float64Array.)' >+ strict mode: 'TypeError: Receiver should be a typed array view (Testing with Float64Array.)' >+test/built-ins/TypedArrayConstructors/ctors/object-arg/length-excessive-throws.js: >+ default: 'Test262Error: Expected a RangeError to be thrown but no exception was thrown at all (Testing with Float64Array.)' >+ strict mode: 'Test262Error: Expected a RangeError to be thrown but no exception was thrown at all (Testing with Float64Array.)' >+test/built-ins/TypedArrayConstructors/ctors/object-arg/proto-from-ctor-realm.js: >+ default: 'TypeError: Receiver should be a typed array view (Testing with Float64Array.)' >+ strict mode: 'TypeError: Receiver should be a typed array view (Testing with Float64Array.)' >+test/built-ins/TypedArrayConstructors/ctors/typedarray-arg/detached-when-species-retrieved-different-type.js: >+ default: 'Test262Error: TypeError thrown for detached source buffer Expected a TypeError to be thrown but no exception was thrown at all (Testing with Float64Array.)' >+ strict mode: 'Test262Error: TypeError thrown for detached source buffer Expected a TypeError to be thrown but no exception was thrown at all (Testing with Float64Array.)' >+test/built-ins/TypedArrayConstructors/ctors/typedarray-arg/detached-when-species-retrieved-same-type.js: >+ default: 'Test262Error: TypeError thrown for detached source buffer Expected a TypeError to be thrown but no exception was thrown at all (Testing with Float64Array.)' >+ strict mode: 'Test262Error: TypeError thrown for detached source buffer Expected a TypeError to be thrown but no exception was thrown at all (Testing with Float64Array.)' >+test/built-ins/TypedArrayConstructors/ctors/typedarray-arg/other-ctor-buffer-ctor-access-throws.js: >+ default: 'Test262Error: Expected a Test262Error to be thrown but no exception was thrown at all (Testing with Float64Array.)' >+ strict mode: 'Test262Error: Expected a Test262Error to be thrown but no exception was thrown at all (Testing with Float64Array.)' >+test/built-ins/TypedArrayConstructors/ctors/typedarray-arg/other-ctor-buffer-ctor-custom-species-proto-from-ctor-realm.js: >+ default: 'Test262Error: Expected SameValue(ë[object ArrayBuffer]û, ë[object ArrayBuffer]û) to be true (Testing with Float64Array.)' >+ strict mode: 'Test262Error: Expected SameValue(ë[object ArrayBuffer]û, ë[object ArrayBuffer]û) to be true (Testing with Float64Array.)' >+test/built-ins/TypedArrayConstructors/ctors/typedarray-arg/other-ctor-buffer-ctor-custom-species.js: >+ default: 'Test262Error: Expected SameValue(ë[object ArrayBuffer]û, ë[object Object]û) to be true (Testing with Float64Array.)' >+ strict mode: 'Test262Error: Expected SameValue(ë[object ArrayBuffer]û, ë[object Object]û) to be true (Testing with Float64Array.)' >+test/built-ins/TypedArrayConstructors/ctors/typedarray-arg/other-ctor-buffer-ctor-not-object-throws.js: >+ default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all (Testing with Float64Array.)' >+ strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all (Testing with Float64Array.)' >+test/built-ins/TypedArrayConstructors/ctors/typedarray-arg/other-ctor-buffer-ctor-species-access-throws.js: >+ default: 'Test262Error: Expected a Test262Error to be thrown but no exception was thrown at all (Testing with Float64Array.)' >+ strict mode: 'Test262Error: Expected a Test262Error to be thrown but no exception was thrown at all (Testing with Float64Array.)' >+test/built-ins/TypedArrayConstructors/ctors/typedarray-arg/other-ctor-buffer-ctor-species-not-ctor-throws.js: >+ default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all (Testing with Float64Array.)' >+ strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all (Testing with Float64Array.)' >+test/built-ins/TypedArrayConstructors/ctors/typedarray-arg/other-ctor-buffer-ctor-species-prototype-throws.js: >+ default: 'Test262Error: Expected a Test262Error to be thrown but no exception was thrown at all (Testing with Float64Array.)' >+ strict mode: 'Test262Error: Expected a Test262Error to be thrown but no exception was thrown at all (Testing with Float64Array.)' >+test/built-ins/TypedArrayConstructors/ctors/typedarray-arg/proto-from-ctor-realm.js: >+ default: 'TypeError: Receiver should be a typed array view (Testing with Float64Array.)' >+ strict mode: 'TypeError: Receiver should be a typed array view (Testing with Float64Array.)' >+test/built-ins/TypedArrayConstructors/ctors/typedarray-arg/same-ctor-buffer-ctor-access-throws.js: >+ default: 'Test262Error: Expected a Test262Error to be thrown but no exception was thrown at all (Testing with Float64Array.)' >+ strict mode: 'Test262Error: Expected a Test262Error to be thrown but no exception was thrown at all (Testing with Float64Array.)' >+test/built-ins/TypedArrayConstructors/ctors/typedarray-arg/same-ctor-buffer-ctor-species-custom-proto-from-ctor-realm.js: >+ default: 'Test262Error: Expected SameValue(ë[object ArrayBuffer]û, ë[object ArrayBuffer]û) to be true (Testing with Float64Array.)' >+ strict mode: 'Test262Error: Expected SameValue(ë[object ArrayBuffer]û, ë[object ArrayBuffer]û) to be true (Testing with Float64Array.)' >+test/built-ins/TypedArrayConstructors/ctors/typedarray-arg/same-ctor-buffer-ctor-species-custom.js: >+ default: 'Test262Error: Expected SameValue(ë[object ArrayBuffer]û, ë[object Object]û) to be true (Testing with Float64Array.)' >+ strict mode: 'Test262Error: Expected SameValue(ë[object ArrayBuffer]û, ë[object Object]û) to be true (Testing with Float64Array.)' >+test/built-ins/TypedArrayConstructors/ctors/typedarray-arg/same-ctor-buffer-ctor-species-not-ctor.js: >+ default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all (Testing with Float64Array.)' >+ strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all (Testing with Float64Array.)' >+test/built-ins/TypedArrayConstructors/ctors/typedarray-arg/same-ctor-buffer-ctor-species-prototype-throws.js: >+ default: 'Test262Error: Expected a Test262Error to be thrown but no exception was thrown at all (Testing with Float64Array.)' >+ strict mode: 'Test262Error: Expected a Test262Error to be thrown but no exception was thrown at all (Testing with Float64Array.)' >+test/built-ins/TypedArrayConstructors/ctors/typedarray-arg/same-ctor-buffer-ctor-species-throws.js: >+ default: 'Test262Error: Expected a Test262Error to be thrown but no exception was thrown at all (Testing with Float64Array.)' >+ strict mode: 'Test262Error: Expected a Test262Error to be thrown but no exception was thrown at all (Testing with Float64Array.)' >+test/built-ins/TypedArrayConstructors/ctors/typedarray-arg/same-ctor-buffer-ctor-value-not-obj-throws.js: >+ default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all (Testing with Float64Array.)' >+ strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all (Testing with Float64Array.)' >+test/built-ins/TypedArrayConstructors/from/custom-ctor-returns-other-instance.js: >+ default: 'TypeError: TypedArray.from requires its this argument subclass a TypedArray constructor (Testing with Float64Array.)' >+ strict mode: 'TypeError: TypedArray.from requires its this argument subclass a TypedArray constructor (Testing with Float64Array.)' >+test/built-ins/TypedArrayConstructors/from/custom-ctor.js: >+ default: 'Test262Error: Expected a Test262Error but got a TypeError (Testing with Float64Array.)' >+ strict mode: 'Test262Error: Expected a Test262Error but got a TypeError (Testing with Float64Array.)' >+test/built-ins/TypedArrayConstructors/from/new-instance-using-custom-ctor.js: >+ default: 'TypeError: TypedArray.from requires its this argument subclass a TypedArray constructor (Testing with Float64Array.)' >+ strict mode: 'TypeError: TypedArray.from requires its this argument subclass a TypedArray constructor (Testing with Float64Array.)' >+test/built-ins/TypedArrayConstructors/from/set-value-abrupt-completion.js: >+ default: 'Test262Error: interrupted source iteration Expected SameValue(ë1û, ë[object Object]û) to be true (Testing with Float64Array.)' >+ strict mode: 'Test262Error: interrupted source iteration Expected SameValue(ë1û, ë[object Object]û) to be true (Testing with Float64Array.)' >+test/built-ins/TypedArrayConstructors/internals/DefineOwnProperty/conversion-operation-consistent-nan.js: >+ default: 'TypeError: Attempting to store non-enumerable or non-writable property on a typed array at index: 0 (Testing with Float32Array.)' >+ strict mode: 'TypeError: Attempting to store non-enumerable or non-writable property on a typed array at index: 0 (Testing with Float32Array.)' >+test/built-ins/TypedArrayConstructors/internals/DefineOwnProperty/conversion-operation.js: >+ default: 'TypeError: Attempting to store non-enumerable or non-writable property on a typed array at index: 0 (Testing with Float64Array.)' >+ strict mode: 'TypeError: Attempting to store non-enumerable or non-writable property on a typed array at index: 0 (Testing with Float64Array.)' >+test/built-ins/TypedArrayConstructors/internals/DefineOwnProperty/desc-value-throws.js: >+ default: 'Test262Error: Expected a Test262Error but got a TypeError (Testing with Float64Array.)' >+ strict mode: 'Test262Error: Expected a Test262Error but got a TypeError (Testing with Float64Array.)' >+test/built-ins/TypedArrayConstructors/internals/DefineOwnProperty/detached-buffer.js: >+ default: 'Test262Error: Return false before Detached Buffer check when value is a negative number Expected SameValue(ëtrueû, ëfalseû) to be true (Testing with Float64Array.)' >+ strict mode: 'Test262Error: Return false before Detached Buffer check when value is a negative number Expected SameValue(ëtrueû, ëfalseû) to be true (Testing with Float64Array.)' >+test/built-ins/TypedArrayConstructors/internals/DefineOwnProperty/key-is-lower-than-zero.js: >+ default: 'Test262Error: -1 Expected SameValue(ëtrueû, ëfalseû) to be true (Testing with Float64Array.)' >+ strict mode: 'Test262Error: -1 Expected SameValue(ëtrueû, ëfalseû) to be true (Testing with Float64Array.)' >+test/built-ins/TypedArrayConstructors/internals/DefineOwnProperty/key-is-minus-zero.js: >+ default: 'Test262Error: defineProperty returns false Expected SameValue(ëtrueû, ëfalseû) to be true (Testing with Float64Array.)' >+ strict mode: 'Test262Error: defineProperty returns false Expected SameValue(ëtrueû, ëfalseû) to be true (Testing with Float64Array.)' >+test/built-ins/TypedArrayConstructors/internals/DefineOwnProperty/key-is-not-integer.js: >+ default: 'Test262Error: 0.1 Expected SameValue(ëtrueû, ëfalseû) to be true (Testing with Float64Array.)' >+ strict mode: 'Test262Error: 0.1 Expected SameValue(ëtrueû, ëfalseû) to be true (Testing with Float64Array.)' >+test/built-ins/TypedArrayConstructors/internals/DefineOwnProperty/key-is-numericindex.js: >+ default: 'Test262Error: property is writable Expected SameValue(ëfalseû, ëtrueû) to be true (Testing with Float64Array.)' >+ strict mode: 'Test262Error: property is writable Expected SameValue(ëfalseû, ëtrueû) to be true (Testing with Float64Array.)' >+test/built-ins/TypedArrayConstructors/internals/DefineOwnProperty/set-value.js: >+ default: 'Test262Error: set value for sample[0] returns true Expected SameValue(ëfalseû, ëtrueû) to be true (Testing with Float64Array.)' >+ strict mode: 'Test262Error: set value for sample[0] returns true Expected SameValue(ëfalseû, ëtrueû) to be true (Testing with Float64Array.)' >+test/built-ins/TypedArrayConstructors/internals/DefineOwnProperty/tonumber-value-detached-buffer.js: >+ default: 'Test262Error: detaching a ArrayBuffer during defining an element of a typed array viewing it should throw Expected a TypeError to be thrown but no exception was thrown at all (Testing with Float64Array.)' >+ strict mode: 'Test262Error: detaching a ArrayBuffer during defining an element of a typed array viewing it should throw Expected a TypeError to be thrown but no exception was thrown at all (Testing with Float64Array.)' >+test/built-ins/TypedArrayConstructors/internals/Get/detached-buffer.js: >+ default: 'Test262Error: detach buffer runs before checking for 1.1 Expected a TypeError to be thrown but no exception was thrown at all (Testing with Float64Array.)' >+ strict mode: 'Test262Error: detach buffer runs before checking for 1.1 Expected a TypeError to be thrown but no exception was thrown at all (Testing with Float64Array.)' >+test/built-ins/TypedArrayConstructors/internals/Get/infinity-detached-buffer.js: >+ default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all (Testing with Float64Array.)' >+ strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all (Testing with Float64Array.)' >+test/built-ins/TypedArrayConstructors/internals/Get/key-is-not-integer.js: >+ default: 'Test262Error: OrdinaryGet was called! Ref: 9.1.8.1 3.c (Testing with Float64Array.)' >+ strict mode: 'Test262Error: OrdinaryGet was called! Ref: 9.1.8.1 3.c (Testing with Float64Array.)' >+test/built-ins/TypedArrayConstructors/internals/Get/key-is-not-minus-zero.js: >+ default: 'Test262Error: OrdinaryGet was called! Ref: 9.1.8.1 3.c (Testing with Float64Array.)' >+ strict mode: 'Test262Error: OrdinaryGet was called! Ref: 9.1.8.1 3.c (Testing with Float64Array.)' >+test/built-ins/TypedArrayConstructors/internals/Get/key-is-out-of-bounds.js: >+ default: 'Test262Error: OrdinaryGet was called! Ref: 9.1.8.1 3.c (Testing with Float64Array.)' >+ strict mode: 'Test262Error: OrdinaryGet was called! Ref: 9.1.8.1 3.c (Testing with Float64Array.)' >+test/built-ins/TypedArrayConstructors/internals/GetOwnProperty/enumerate-detached-buffer.js: >+ default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all (Testing with Float64Array.)' >+ strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all (Testing with Float64Array.)' >+test/built-ins/TypedArrayConstructors/internals/GetOwnProperty/index-prop-desc.js: >+ default: 'Test262Error: index descriptor is writable [0] Expected SameValue(ëfalseû, ëtrueû) to be true (Testing with Float64Array.)' >+ strict mode: 'Test262Error: index descriptor is writable [0] Expected SameValue(ëfalseû, ëtrueû) to be true (Testing with Float64Array.)' >+test/built-ins/TypedArrayConstructors/internals/GetOwnProperty/key-is-out-of-bounds.js: >+ default: 'Test262Error: Expected SameValue(ë[object Object]û, ëundefinedû) to be true (Testing with Float64Array.)' >+ strict mode: 'Test262Error: Expected SameValue(ë[object Object]û, ëundefinedû) to be true (Testing with Float64Array.)' >+test/built-ins/TypedArrayConstructors/internals/HasProperty/abrupt-from-ordinary-has-parent-hasproperty.js: >+ default: 'Test262Error: (Testing with Float64Array.)' >+ strict mode: 'Test262Error: (Testing with Float64Array.)' >+test/built-ins/TypedArrayConstructors/internals/HasProperty/detached-buffer-realm.js: >+ default: 'Test262Error: 0 Expected a TypeError to be thrown but no exception was thrown at all (Testing with Float64Array.)' >+ strict mode: 'Test262Error: 0 Expected a TypeError to be thrown but no exception was thrown at all (Testing with Float64Array.)' >+test/built-ins/TypedArrayConstructors/internals/HasProperty/detached-buffer.js: >+ default: 'Test262Error: 0 Expected a TypeError to be thrown but no exception was thrown at all (Testing with Float64Array.)' >+ strict mode: 'Test262Error: 0 Expected a TypeError to be thrown but no exception was thrown at all (Testing with Float64Array.)' >+test/built-ins/TypedArrayConstructors/internals/HasProperty/infinity-with-detached-buffer.js: >+ default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all (Testing with Float64Array.)' >+test/built-ins/TypedArrayConstructors/internals/HasProperty/inherited-property.js: >+ default: 'Test262Error: 42 Expected SameValue(ëtrueû, ëfalseû) to be true (Testing with Float64Array.)' >+ strict mode: 'Test262Error: 42 Expected SameValue(ëtrueû, ëfalseû) to be true (Testing with Float64Array.)' >+test/built-ins/TypedArrayConstructors/internals/HasProperty/key-is-greater-than-last-index.js: >+ default: 'Test262Error: 1 Expected SameValue(ëtrueû, ëfalseû) to be true (Testing with Float64Array.)' >+ strict mode: 'Test262Error: 1 Expected SameValue(ëtrueû, ëfalseû) to be true (Testing with Float64Array.)' >+test/built-ins/TypedArrayConstructors/internals/HasProperty/key-is-lower-than-zero.js: >+ default: 'Test262Error: -1 Expected SameValue(ëtrueû, ëfalseû) to be true (Testing with Float64Array.)' >+ strict mode: 'Test262Error: -1 Expected SameValue(ëtrueû, ëfalseû) to be true (Testing with Float64Array.)' >+test/built-ins/TypedArrayConstructors/internals/HasProperty/key-is-minus-zero.js: >+ default: 'Test262Error: -0 Expected SameValue(ëtrueû, ëfalseû) to be true (Testing with Float64Array.)' >+ strict mode: 'Test262Error: -0 Expected SameValue(ëtrueû, ëfalseû) to be true (Testing with Float64Array.)' >+test/built-ins/TypedArrayConstructors/internals/HasProperty/key-is-not-integer.js: >+ default: 'Test262Error: 1.1 Expected SameValue(ëtrueû, ëfalseû) to be true (Testing with Float64Array.)' >+ strict mode: 'Test262Error: 1.1 Expected SameValue(ëtrueû, ëfalseû) to be true (Testing with Float64Array.)' >+test/built-ins/TypedArrayConstructors/internals/Set/detached-buffer.js: >+ default: 'Test262Error: detach buffer runs before checking for 1.1 Expected a TypeError to be thrown but no exception was thrown at all (Testing with Float64Array.)' >+ strict mode: 'Test262Error: detach buffer runs before checking for 1.1 Expected a TypeError to be thrown but no exception was thrown at all (Testing with Float64Array.)' >+test/built-ins/TypedArrayConstructors/internals/Set/key-is-minus-zero.js: >+ default: 'Test262Error: -0 Expected SameValue(ëtrueû, ëfalseû) to be true (Testing with Float64Array.)' >+ strict mode: 'Test262Error: -0 Expected SameValue(ëtrueû, ëfalseû) to be true (Testing with Float64Array.)' >+test/built-ins/TypedArrayConstructors/internals/Set/key-is-not-integer.js: >+ default: 'Test262Error: 1.1 Expected SameValue(ëtrueû, ëfalseû) to be true (Testing with Float64Array.)' >+ strict mode: 'Test262Error: 1.1 Expected SameValue(ëtrueû, ëfalseû) to be true (Testing with Float64Array.)' >+test/built-ins/TypedArrayConstructors/internals/Set/key-is-out-of-bounds.js: >+ default: 'Test262Error: -1 Expected SameValue(ëtrueû, ëfalseû) to be true (Testing with Float64Array.)' >+ strict mode: 'Test262Error: -1 Expected SameValue(ëtrueû, ëfalseû) to be true (Testing with Float64Array.)' >+test/built-ins/TypedArrayConstructors/internals/Set/tonumber-value-throws.js: >+ default: 'Test262Error: ToNumber runs before ToInteger(index) Expected a Test262Error to be thrown but no exception was thrown at all (Testing with Float64Array.)' >+ strict mode: 'Test262Error: ToNumber runs before ToInteger(index) Expected a Test262Error to be thrown but no exception was thrown at all (Testing with Float64Array.)' >+test/built-ins/TypedArrayConstructors/of/custom-ctor-returns-other-instance.js: >+ default: 'TypeError: TypedArray.of requires its this argument to subclass a TypedArray constructor (Testing with Float64Array.)' >+ strict mode: 'TypeError: TypedArray.of requires its this argument to subclass a TypedArray constructor (Testing with Float64Array.)' >+test/built-ins/TypedArrayConstructors/of/custom-ctor.js: >+ default: 'Test262Error: Expected a Test262Error but got a TypeError (Testing with Float64Array.)' >+ strict mode: 'Test262Error: Expected a Test262Error but got a TypeError (Testing with Float64Array.)' >+test/built-ins/TypedArrayConstructors/of/new-instance-using-custom-ctor.js: >+ default: 'TypeError: TypedArray.of requires its this argument to subclass a TypedArray constructor (Testing with Float64Array.)' >+ strict mode: 'TypeError: TypedArray.of requires its this argument to subclass a TypedArray constructor (Testing with Float64Array.)' >+test/built-ins/WeakMap/proto-from-ctor-realm.js: >+ default: 'Test262Error: Expected SameValue(ë[object WeakMap]û, ë[object WeakMap]û) to be true' >+ strict mode: 'Test262Error: Expected SameValue(ë[object WeakMap]û, ë[object WeakMap]û) to be true' >+test/built-ins/WeakSet/proto-from-ctor-realm.js: >+ default: 'Test262Error: Expected SameValue(ë[object WeakSet]û, ë[object WeakSet]û) to be true' >+ strict mode: 'Test262Error: Expected SameValue(ë[object WeakSet]û, ë[object WeakSet]û) to be true' >+test/built-ins/global/global-object.js: >+ default: "ReferenceError: Can't find variable: global" >+ strict mode: "ReferenceError: Can't find variable: global" >+test/built-ins/global/property-descriptor.js: >+ default: "TypeError: undefined is not an object (evaluating 'Object.getOwnPropertyDescriptor(obj, name).enumerable')" >+ strict mode: "TypeError: undefined is not an object (evaluating 'Object.getOwnPropertyDescriptor(obj, name).enumerable')" >+test/built-ins/parseFloat/S15.1.2.3_A2_T10_U180E.js: >+ default: 'Test262Error: Single leading U+180E Expected SameValue(ë1.1û, ëNaNû) to be true' >+ strict mode: 'Test262Error: Single leading U+180E Expected SameValue(ë1.1û, ëNaNû) to be true' >+test/built-ins/parseInt/S15.1.2.2_A2_T10_U180E.js: >+ default: 'Test262Error: Single leading U+180E Expected SameValue(ë1û, ëNaNû) to be true' >+ strict mode: 'Test262Error: Single leading U+180E Expected SameValue(ë1û, ëNaNû) to be true' >+test/harness/assert-throws-early-referenceerror.js: >+ default: 'Test262Error: Function: 1 = 1; Expected a ReferenceError to be thrown but no exception was thrown at all' >+ strict mode: 'Test262Error: Function: 1 = 1; Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/intl402/Collator/default-options-object-prototype.js: >+ default: 'Test262Error: Expected SameValue(ëbaseû, ëvariantû) to be true' >+ strict mode: 'Test262Error: Expected SameValue(ëbaseû, ëvariantû) to be true' >+test/intl402/Collator/length.js: >+ default: 'Test262Error: Expected obj[length] to have configurable:true.' >+ strict mode: 'Test262Error: Expected obj[length] to have configurable:true.' >+test/intl402/Collator/prototype/compare/compare-function-name.js: >+ default: 'Test262Error: Expected SameValue(ëtrueû, ëfalseû) to be true' >+ strict mode: 'Test262Error: Expected SameValue(ëtrueû, ëfalseû) to be true' >+test/intl402/Collator/prototype/constructor/prop-desc.js: >+ default: "TypeError: undefined is not an object (evaluating 'Object.getOwnPropertyDescriptor(obj, name).enumerable')" >+ strict mode: "TypeError: undefined is not an object (evaluating 'Object.getOwnPropertyDescriptor(obj, name).enumerable')" >+test/intl402/Collator/prototype/constructor/value.js: >+ default: 'Test262Error: Intl.Collator.prototype.constructor is not the same as Intl.Collator Expected SameValue(ëfunction Object() {' >+ strict mode: 'Test262Error: Intl.Collator.prototype.constructor is not the same as Intl.Collator Expected SameValue(ëfunction Object() {' >+test/intl402/Collator/unicode-ext-seq-in-private-tag.js: >+ default: 'Test262Error: Expected SameValue(ëphonebkû, ëdefaultû) to be true' >+ strict mode: 'Test262Error: Expected SameValue(ëphonebkû, ëdefaultû) to be true' >+test/intl402/DateTimeFormat/length.js: >+ default: 'Test262Error: Expected obj[length] to have configurable:true.' >+ strict mode: 'Test262Error: Expected obj[length] to have configurable:true.' >+test/intl402/DateTimeFormat/prototype/constructor/prop-desc.js: >+ default: "TypeError: undefined is not an object (evaluating 'Object.getOwnPropertyDescriptor(obj, name).enumerable')" >+ strict mode: "TypeError: undefined is not an object (evaluating 'Object.getOwnPropertyDescriptor(obj, name).enumerable')" >+test/intl402/DateTimeFormat/prototype/constructor/value.js: >+ default: 'Test262Error: Intl.DateTimeFormat.prototype.constructor is not the same as Intl.DateTimeFormat Expected SameValue(ëfunction Object() {' >+ strict mode: 'Test262Error: Intl.DateTimeFormat.prototype.constructor is not the same as Intl.DateTimeFormat Expected SameValue(ëfunction Object() {' >+test/intl402/DateTimeFormat/prototype/format/format-function-name.js: >+ default: 'Test262Error: Expected SameValue(ëtrueû, ëfalseû) to be true' >+ strict mode: 'Test262Error: Expected SameValue(ëtrueû, ëfalseû) to be true' >+test/intl402/DateTimeFormat/prototype/format/proleptic-gregorian-calendar.js: >+ default: "Test262Error: Internal error: Didn't find Gregorian calendar Expected SameValue(ëgregorianû, ëgregoryû) to be true" >+ strict mode: "Test262Error: Internal error: Didn't find Gregorian calendar Expected SameValue(ëgregorianû, ëgregoryû) to be true" >+test/intl402/DateTimeFormat/prototype/format/time-clip-near-time-boundaries.js: >+ default: 'Test262Error: Expected a RangeError to be thrown but no exception was thrown at all' >+ strict mode: 'Test262Error: Expected a RangeError to be thrown but no exception was thrown at all' >+test/intl402/DateTimeFormat/prototype/format/time-clip-to-integer.js: >+ default: 'Test262Error: format(-0.9) Expected SameValue(ë8:59:59 PMû, ë9:00:00 PMû) to be true' >+ strict mode: 'Test262Error: format(-0.9) Expected SameValue(ë8:59:59 PMû, ë9:00:00 PMû) to be true' >+test/intl402/DateTimeFormat/prototype/formatToParts/length.js: >+ default: 'Test262Error: Expected SameValue(ë0û, ë1û) to be true' >+ strict mode: 'Test262Error: Expected SameValue(ë0û, ë1û) to be true' >+test/intl402/DateTimeFormat/prototype/formatToParts/time-clip-near-time-boundaries.js: >+ default: 'Test262Error: Expected a RangeError to be thrown but no exception was thrown at all' >+ strict mode: 'Test262Error: Expected a RangeError to be thrown but no exception was thrown at all' >+test/intl402/DateTimeFormat/prototype/formatToParts/time-clip-to-integer.js: >+ default: 'Test262Error: formatToParts(-0.9) Expected SameValue(ë8:59:59 PMû, ë9:00:00 PMû) to be true' >+ strict mode: 'Test262Error: formatToParts(-0.9) Expected SameValue(ë8:59:59 PMû, ë9:00:00 PMû) to be true' >+test/intl402/DateTimeFormat/prototype/resolvedOptions/basic.js: >+ default: 'Test262Error: Invalid calendar: gregorian Expected SameValue(ë-1û, ë-1û) to be false' >+ strict mode: 'Test262Error: Invalid calendar: gregorian Expected SameValue(ë-1û, ë-1û) to be false' >+test/intl402/DateTimeFormat/prototype/resolvedOptions/hourCycle.js: >+ default: 'Test262Error: Expected SameValue(ëundefinedû, ëh11û) to be true' >+ strict mode: 'Test262Error: Expected SameValue(ëundefinedû, ëh11û) to be true' >+test/intl402/DateTimeFormat/prototype/resolvedOptions/resolved-locale-with-hc-unicode.js: >+ default: 'Test262Error: Only hc Unicode extension value is present. (With hour option.) Expected SameValue(ëen-USû, ëen-US-u-hc-h11û) to be true' >+ strict mode: 'Test262Error: Only hc Unicode extension value is present. (With hour option.) Expected SameValue(ëen-USû, ëen-US-u-hc-h11û) to be true' >+test/intl402/Intl/getCanonicalLocales/canonicalized-tags.js: >+ default: 'Test262Error: Expected SameValue(ësgn-GRû, ëgssû) to be true' >+ strict mode: 'Test262Error: Expected SameValue(ësgn-GRû, ëgssû) to be true' >+test/intl402/Intl/getCanonicalLocales/invalid-tags.js: >+ default: 'Test262Error: Test data "de-gregory-gregory" is a canonicalized and structurally valid language tag.' >+ strict mode: 'Test262Error: Test data "de-gregory-gregory" is a canonicalized and structurally valid language tag.' >+test/intl402/Intl/getCanonicalLocales/preferred-grandfathered.js: >+ default: 'Test262Error: Expected SameValue(ëen-GB-oedû, ëen-GB-oxendictû) to be true' >+ strict mode: 'Test262Error: Expected SameValue(ëen-GB-oedû, ëen-GB-oxendictû) to be true' >+test/intl402/Intl/getCanonicalLocales/preferred-variant.js: >+ default: 'Test262Error: Expected SameValue(ëja-Latn-hepburn-heplocû, ëja-Latn-alalc97û) to be true' >+ strict mode: 'Test262Error: Expected SameValue(ëja-Latn-hepburn-heplocû, ëja-Latn-alalc97û) to be true' >+test/intl402/Number/prototype/toLocaleString/default-options-object-prototype.js: >+ default: 'Test262Error: Expected SameValue(ë1.2û, ë1.23û) to be true' >+ strict mode: 'Test262Error: Expected SameValue(ë1.2û, ë1.23û) to be true' >+test/intl402/Number/prototype/toLocaleString/returns-same-results-as-NumberFormat.js: >+ default: 'Error: Failed to format a number.' >+ strict mode: 'Error: Failed to format a number.' >+test/intl402/NumberFormat/default-options-object-prototype.js: >+ default: 'Test262Error: Expected SameValue(ë1û, ë3û) to be true' >+ strict mode: 'Test262Error: Expected SameValue(ë1û, ë3û) to be true' >+test/intl402/NumberFormat/length.js: >+ default: 'Test262Error: Expected obj[length] to have configurable:true.' >+ strict mode: 'Test262Error: Expected obj[length] to have configurable:true.' >+test/intl402/NumberFormat/prototype/constructor/prop-desc.js: >+ default: "TypeError: undefined is not an object (evaluating 'Object.getOwnPropertyDescriptor(obj, name).enumerable')" >+ strict mode: "TypeError: undefined is not an object (evaluating 'Object.getOwnPropertyDescriptor(obj, name).enumerable')" >+test/intl402/NumberFormat/prototype/constructor/value.js: >+ default: 'Test262Error: Intl.NumberFormat.prototype.constructor is not the same as Intl.NumberFormat Expected SameValue(ëfunction Object() {' >+ strict mode: 'Test262Error: Intl.NumberFormat.prototype.constructor is not the same as Intl.NumberFormat Expected SameValue(ëfunction Object() {' >+test/intl402/NumberFormat/prototype/format/bound-to-numberformat-instance.js: >+ default: 'Error: Failed to format a number.' >+ strict mode: 'Error: Failed to format a number.' >+test/intl402/NumberFormat/prototype/format/format-fraction-digits.js: >+ default: 'Test262Error: Formatted value for 12344501000000000000000000000000000, en-US-u-nu-arab and options {"useGrouping":false,"minimumIntegerDigits":3,"minimumFractionDigits":1,"maximumFractionDigits":3} is áâãääÃ¥àáàààààààààààààààààààààààààààëà; expected áâãääÃ¥àáàààààààààäèçèáÃ¥äääæçèãááéãæëà.' >+ strict mode: 'Test262Error: Formatted value for 12344501000000000000000000000000000, en-US-u-nu-arab and options {"useGrouping":false,"minimumIntegerDigits":3,"minimumFractionDigits":1,"maximumFractionDigits":3} is áâãääÃ¥àáàààààààààààààààààààààààààààëà; expected áâãääÃ¥àáàààààààààäèçèáÃ¥äääæçèãááéãæëà.' >+test/intl402/NumberFormat/prototype/format/format-function-name.js: >+ default: 'Test262Error: Expected SameValue(ëtrueû, ëfalseû) to be true' >+ strict mode: 'Test262Error: Expected SameValue(ëtrueû, ëfalseû) to be true' >+test/intl402/NumberFormat/prototype/format/format-significant-digits.js: >+ default: 'Test262Error: Formatted value for 123.44500, en-US-u-nu-arab and options {"useGrouping":false,"minimumSignificantDigits":3,"maximumSignificantDigits":5} is áâãëäÃÂ¥; expected áâãëää.' >+ strict mode: 'Test262Error: Formatted value for 123.44500, en-US-u-nu-arab and options {"useGrouping":false,"minimumSignificantDigits":3,"maximumSignificantDigits":5} is áâãëäÃÂ¥; expected áâãëää.' >+test/intl402/NumberFormat/prototype/formatToParts/default-parameter.js: >+ default: "TypeError: nf.formatToParts is not a function. (In 'nf.formatToParts()', 'nf.formatToParts' is undefined)" >+ strict mode: "TypeError: nf.formatToParts is not a function. (In 'nf.formatToParts()', 'nf.formatToParts' is undefined)" >+test/intl402/NumberFormat/prototype/formatToParts/formatToParts.js: >+ default: 'Test262Error: `typeof Intl.NumberFormat.prototype.formatToParts` is `function` Expected SameValue(ëundefinedû, ëfunctionû) to be true' >+ strict mode: 'Test262Error: `typeof Intl.NumberFormat.prototype.formatToParts` is `function` Expected SameValue(ëundefinedû, ëfunctionû) to be true' >+test/intl402/NumberFormat/prototype/formatToParts/length.js: >+ default: "TypeError: undefined is not an object (evaluating 'Intl.NumberFormat.prototype.formatToParts.length')" >+ strict mode: "TypeError: undefined is not an object (evaluating 'Intl.NumberFormat.prototype.formatToParts.length')" >+test/intl402/NumberFormat/prototype/formatToParts/main.js: >+ default: "TypeError: nf.formatToParts is not a function. (In 'nf.formatToParts(value)', 'nf.formatToParts' is undefined)" >+ strict mode: "TypeError: nf.formatToParts is not a function. (In 'nf.formatToParts(value)', 'nf.formatToParts' is undefined)" >+test/intl402/NumberFormat/prototype/formatToParts/name.js: >+ default: "TypeError: undefined is not an object (evaluating 'Intl.NumberFormat.prototype.formatToParts.name')" >+ strict mode: "TypeError: undefined is not an object (evaluating 'Intl.NumberFormat.prototype.formatToParts.name')" >+test/intl402/NumberFormat/prototype/formatToParts/return-abrupt-tonumber.js: >+ default: 'Test262Error: valueOf Expected a Test262Error but got a TypeError' >+ strict mode: 'Test262Error: valueOf Expected a Test262Error but got a TypeError' >+test/intl402/NumberFormat/significant-digits-options-get-sequence.js: >+ default: 'Test262Error: minimumSignificantDigits getter already called Expected SameValue(ëtrueû, ëfalseû) to be true' >+ strict mode: 'Test262Error: minimumSignificantDigits getter already called Expected SameValue(ëtrueû, ëfalseû) to be true' >+test/intl402/PluralRules/builtin.js: >+ default: 'Test262Error: The [[Class]] internal property of a built-in function must be "Function". Expected SameValue(ë[object Undefined]û, ë[object Function]û) to be true' >+ strict mode: 'Test262Error: The [[Class]] internal property of a built-in function must be "Function". Expected SameValue(ë[object Undefined]û, ë[object Function]û) to be true' >+test/intl402/PluralRules/can-be-subclassed.js: >+ default: "TypeError: undefined is not a constructor (evaluating 'new Intl.PluralRules(locales)')" >+ strict mode: "TypeError: undefined is not a constructor (evaluating 'new Intl.PluralRules(locales)')" >+test/intl402/PluralRules/default-options-object-prototype.js: >+ default: "TypeError: undefined is not a constructor (evaluating 'new Intl.PluralRules(\"en\")')" >+ strict mode: "TypeError: undefined is not a constructor (evaluating 'new Intl.PluralRules(\"en\")')" >+test/intl402/PluralRules/internals.js: >+ default: "TypeError: undefined is not a constructor (evaluating 'new Intl.PluralRules()')" >+ strict mode: "TypeError: undefined is not a constructor (evaluating 'new Intl.PluralRules()')" >+test/intl402/PluralRules/length.js: >+ default: "TypeError: undefined is not an object (evaluating 'Intl.PluralRules.length')" >+ strict mode: "TypeError: undefined is not an object (evaluating 'Intl.PluralRules.length')" >+test/intl402/PluralRules/name.js: >+ default: "TypeError: undefined is not an object (evaluating 'Intl.PluralRules.name')" >+ strict mode: "TypeError: undefined is not an object (evaluating 'Intl.PluralRules.name')" >+test/intl402/PluralRules/prototype/bind.js: >+ default: "TypeError: undefined is not an object (evaluating 'Intl.PluralRules.prototype')" >+ strict mode: "TypeError: undefined is not an object (evaluating 'Intl.PluralRules.prototype')" >+test/intl402/PluralRules/prototype/builtins.js: >+ default: "TypeError: undefined is not an object (evaluating 'Intl.PluralRules.prototype')" >+ strict mode: "TypeError: undefined is not an object (evaluating 'Intl.PluralRules.prototype')" >+test/intl402/PluralRules/prototype/constructor/main.js: >+ default: "TypeError: undefined is not an object (evaluating 'Intl.PluralRules.prototype')" >+ strict mode: "TypeError: undefined is not an object (evaluating 'Intl.PluralRules.prototype')" >+test/intl402/PluralRules/prototype/constructor/prop-desc.js: >+ default: "TypeError: undefined is not an object (evaluating 'Intl.PluralRules.prototype')" >+ strict mode: "TypeError: undefined is not an object (evaluating 'Intl.PluralRules.prototype')" >+test/intl402/PluralRules/prototype/properties.js: >+ default: "TypeError: undefined is not an object (evaluating 'Object.getOwnPropertyDescriptor(obj, name)')" >+ strict mode: "TypeError: undefined is not an object (evaluating 'Object.getOwnPropertyDescriptor(obj, name)')" >+test/intl402/PluralRules/prototype/resolvedOptions/builtins.js: >+ default: "TypeError: undefined is not an object (evaluating 'Intl.PluralRules.prototype')" >+ strict mode: "TypeError: undefined is not an object (evaluating 'Intl.PluralRules.prototype')" >+test/intl402/PluralRules/prototype/resolvedOptions/length.js: >+ default: "TypeError: undefined is not an object (evaluating 'Intl.PluralRules.prototype')" >+ strict mode: "TypeError: undefined is not an object (evaluating 'Intl.PluralRules.prototype')" >+test/intl402/PluralRules/prototype/resolvedOptions/name.js: >+ default: "TypeError: undefined is not an object (evaluating 'Intl.PluralRules.prototype')" >+ strict mode: "TypeError: undefined is not an object (evaluating 'Intl.PluralRules.prototype')" >+test/intl402/PluralRules/prototype/resolvedOptions/prop-desc.js: >+ default: "TypeError: undefined is not an object (evaluating 'Intl.PluralRules.prototype')" >+ strict mode: "TypeError: undefined is not an object (evaluating 'Intl.PluralRules.prototype')" >+test/intl402/PluralRules/prototype/resolvedOptions/properties.js: >+ default: "TypeError: undefined is not a constructor (evaluating 'new Intl.PluralRules()')" >+ strict mode: "TypeError: undefined is not a constructor (evaluating 'new Intl.PluralRules()')" >+test/intl402/PluralRules/prototype/select/length.js: >+ default: "TypeError: undefined is not an object (evaluating 'Intl.PluralRules.prototype')" >+ strict mode: "TypeError: undefined is not an object (evaluating 'Intl.PluralRules.prototype')" >+test/intl402/PluralRules/prototype/select/name.js: >+ default: "TypeError: undefined is not an object (evaluating 'Intl.PluralRules.prototype')" >+ strict mode: "TypeError: undefined is not an object (evaluating 'Intl.PluralRules.prototype')" >+test/intl402/PluralRules/prototype/select/non-finite.js: >+ default: "TypeError: undefined is not a constructor (evaluating 'new Intl.PluralRules()')" >+ strict mode: "TypeError: undefined is not a constructor (evaluating 'new Intl.PluralRules()')" >+test/intl402/PluralRules/prototype/select/prop-desc.js: >+ default: "TypeError: undefined is not an object (evaluating 'Intl.PluralRules.prototype')" >+ strict mode: "TypeError: undefined is not an object (evaluating 'Intl.PluralRules.prototype')" >+test/intl402/PluralRules/prototype/select/tainting.js: >+ default: "TypeError: undefined is not a constructor (evaluating 'new Intl.PluralRules()')" >+ strict mode: "TypeError: undefined is not a constructor (evaluating 'new Intl.PluralRules()')" >+test/intl402/PluralRules/supportedLocalesOf/arguments.js: >+ default: "TypeError: undefined is not a constructor (evaluating 'new Intl.PluralRules(\"und\")')" >+ strict mode: "TypeError: undefined is not a constructor (evaluating 'new Intl.PluralRules(\"und\")')" >+test/intl402/PluralRules/supportedLocalesOf/length.js: >+ default: "TypeError: undefined is not an object (evaluating 'Intl.PluralRules.supportedLocalesOf')" >+ strict mode: "TypeError: undefined is not an object (evaluating 'Intl.PluralRules.supportedLocalesOf')" >+test/intl402/PluralRules/supportedLocalesOf/main.js: >+ default: "TypeError: undefined is not a constructor (evaluating 'new Intl.PluralRules()')" >+ strict mode: "TypeError: undefined is not a constructor (evaluating 'new Intl.PluralRules()')" >+test/intl402/PluralRules/supportedLocalesOf/name.js: >+ default: "TypeError: undefined is not an object (evaluating 'Intl.PluralRules.supportedLocalesOf')" >+ strict mode: "TypeError: undefined is not an object (evaluating 'Intl.PluralRules.supportedLocalesOf')" >+test/intl402/PluralRules/supportedLocalesOf/prop-desc.js: >+ default: "TypeError: undefined is not an object (evaluating 'Object.getOwnPropertyDescriptor(obj, name)')" >+ strict mode: "TypeError: undefined is not an object (evaluating 'Object.getOwnPropertyDescriptor(obj, name)')" >+test/intl402/PluralRules/supportedLocalesOf/supportedLocalesOf.js: >+ default: "TypeError: undefined is not an object (evaluating 'Intl.PluralRules.supportedLocalesOf')" >+ strict mode: "TypeError: undefined is not an object (evaluating 'Intl.PluralRules.supportedLocalesOf')" >+test/intl402/String/prototype/localeCompare/default-options-object-prototype.js: >+ default: 'Test262Error: Expected SameValue(ë0û, ë-1û) to be true' >+ strict mode: 'Test262Error: Expected SameValue(ë0û, ë-1û) to be true' >+test/intl402/fallback-locales-are-supported.js: >+ default: "Test262Error: Locale zh-Hans-CN is supported, but fallback zh-CN isn't. Expected SameValue(ë-1û, ë-1û) to be false (Testing with NumberFormat.)" >+ strict mode: "Test262Error: Locale zh-Hans-CN is supported, but fallback zh-CN isn't. Expected SameValue(ë-1û, ë-1û) to be false (Testing with NumberFormat.)" >+test/intl402/language-tags-canonicalized.js: >+ default: 'Test262Error: For de-DD got de-DD; expected de-DE. (Testing with Collator.)' >+ strict mode: 'Test262Error: For de-DD got de-DD; expected de-DE. (Testing with Collator.)' >+test/intl402/supportedLocalesOf-returned-array-elements-are-frozen.js: >+ default: 'Test262Error: Property length of object returned by SupportedLocales is writable. Expected SameValue(ëtrueû, ëfalseû) to be true (Testing with Collator.)' >+ strict mode: 'Test262Error: Property length of object returned by SupportedLocales is writable. Expected SameValue(ëtrueû, ëfalseû) to be true (Testing with Collator.)' >+test/intl402/supportedLocalesOf-taint-Array-2.js: >+ default: 'Test262Error: Client code can adversely affect behavior: setter for 0. (Testing with Collator.)' >+ strict mode: 'Test262Error: Client code can adversely affect behavior: setter for 0. (Testing with Collator.)' >+test/intl402/supportedLocalesOf-taint-Array.js: >+ default: 'Test262Error: Client code can adversely affect behavior: setter for 0. (Testing with Collator.)' >+ strict mode: 'Test262Error: Client code can adversely affect behavior: setter for 0. (Testing with Collator.)' >+test/language/arguments-object/mapped/nonconfigurable-nonenumerable-nonwritable-descriptors-set-by-arguments.js: >+ default: 'Test262Error: Expected obj[0] to have enumerable:false.' >+test/language/arguments-object/mapped/nonconfigurable-nonenumerable-nonwritable-descriptors-set-by-param.js: >+ default: 'Test262Error: Expected obj[0] to have enumerable:false.' >+test/language/arguments-object/mapped/nonconfigurable-nonwritable-descriptors-define-property-consecutive.js: >+ default: 'Test262Error: Expected obj[0] to have configurable:false.' >+test/language/arguments-object/mapped/nonconfigurable-nonwritable-descriptors-set-by-arguments.js: >+ default: 'Test262Error: Expected obj[0] to have configurable:false.' >+test/language/arguments-object/mapped/nonconfigurable-nonwritable-descriptors-set-by-param.js: >+ default: 'Test262Error: Expected obj[0] to have configurable:false.' >+test/language/asi/S7.9_A5.7_T1.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'SyntaxError: The prefix-increment operator requires a reference expression.' >+test/language/block-scope/syntax/redeclaration/async-function-declaration-attempt-to-redeclare-with-async-function-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/block-scope/syntax/redeclaration/async-function-declaration-attempt-to-redeclare-with-async-generator-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/block-scope/syntax/redeclaration/async-function-declaration-attempt-to-redeclare-with-class-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/block-scope/syntax/redeclaration/async-function-declaration-attempt-to-redeclare-with-const-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/block-scope/syntax/redeclaration/async-function-declaration-attempt-to-redeclare-with-function-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/block-scope/syntax/redeclaration/async-function-declaration-attempt-to-redeclare-with-generator-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/block-scope/syntax/redeclaration/async-function-declaration-attempt-to-redeclare-with-let-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/block-scope/syntax/redeclaration/async-function-declaration-attempt-to-redeclare-with-var-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/block-scope/syntax/redeclaration/async-generator-declaration-attempt-to-redeclare-with-async-function-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/block-scope/syntax/redeclaration/async-generator-declaration-attempt-to-redeclare-with-async-generator-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/block-scope/syntax/redeclaration/async-generator-declaration-attempt-to-redeclare-with-class-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/block-scope/syntax/redeclaration/async-generator-declaration-attempt-to-redeclare-with-const-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/block-scope/syntax/redeclaration/async-generator-declaration-attempt-to-redeclare-with-function-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/block-scope/syntax/redeclaration/async-generator-declaration-attempt-to-redeclare-with-generator-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/block-scope/syntax/redeclaration/async-generator-declaration-attempt-to-redeclare-with-let-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/block-scope/syntax/redeclaration/async-generator-declaration-attempt-to-redeclare-with-var-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/block-scope/syntax/redeclaration/class-declaration-attempt-to-redeclare-with-async-function-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/block-scope/syntax/redeclaration/class-declaration-attempt-to-redeclare-with-async-generator-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/block-scope/syntax/redeclaration/class-declaration-attempt-to-redeclare-with-function-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/block-scope/syntax/redeclaration/class-declaration-attempt-to-redeclare-with-generator-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/block-scope/syntax/redeclaration/class-declaration-attempt-to-redeclare-with-var-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/block-scope/syntax/redeclaration/const-declaration-attempt-to-redeclare-with-async-function-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/block-scope/syntax/redeclaration/const-declaration-attempt-to-redeclare-with-async-generator-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/block-scope/syntax/redeclaration/const-declaration-attempt-to-redeclare-with-function-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/block-scope/syntax/redeclaration/const-declaration-attempt-to-redeclare-with-generator-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/block-scope/syntax/redeclaration/const-declaration-attempt-to-redeclare-with-var-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/block-scope/syntax/redeclaration/function-declaration-attempt-to-redeclare-with-async-function-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/block-scope/syntax/redeclaration/function-declaration-attempt-to-redeclare-with-async-generator-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/block-scope/syntax/redeclaration/function-declaration-attempt-to-redeclare-with-class-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/block-scope/syntax/redeclaration/function-declaration-attempt-to-redeclare-with-const-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/block-scope/syntax/redeclaration/function-declaration-attempt-to-redeclare-with-generator-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/block-scope/syntax/redeclaration/function-declaration-attempt-to-redeclare-with-let-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/block-scope/syntax/redeclaration/function-declaration-attempt-to-redeclare-with-var-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/block-scope/syntax/redeclaration/generator-declaration-attempt-to-redeclare-with-async-function-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/block-scope/syntax/redeclaration/generator-declaration-attempt-to-redeclare-with-async-generator-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/block-scope/syntax/redeclaration/generator-declaration-attempt-to-redeclare-with-class-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/block-scope/syntax/redeclaration/generator-declaration-attempt-to-redeclare-with-const-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/block-scope/syntax/redeclaration/generator-declaration-attempt-to-redeclare-with-function-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/block-scope/syntax/redeclaration/generator-declaration-attempt-to-redeclare-with-generator-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/block-scope/syntax/redeclaration/generator-declaration-attempt-to-redeclare-with-let-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/block-scope/syntax/redeclaration/generator-declaration-attempt-to-redeclare-with-var-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/block-scope/syntax/redeclaration/let-declaration-attempt-to-redeclare-with-async-function-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/block-scope/syntax/redeclaration/let-declaration-attempt-to-redeclare-with-async-generator-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/block-scope/syntax/redeclaration/let-declaration-attempt-to-redeclare-with-function-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/block-scope/syntax/redeclaration/let-declaration-attempt-to-redeclare-with-generator-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/block-scope/syntax/redeclaration/let-declaration-attempt-to-redeclare-with-var-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/block-scope/syntax/redeclaration/var-declaration-attempt-to-redeclare-with-async-function-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/block-scope/syntax/redeclaration/var-declaration-attempt-to-redeclare-with-async-generator-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/block-scope/syntax/redeclaration/var-declaration-attempt-to-redeclare-with-class-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/block-scope/syntax/redeclaration/var-declaration-attempt-to-redeclare-with-const-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/block-scope/syntax/redeclaration/var-declaration-attempt-to-redeclare-with-function-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/block-scope/syntax/redeclaration/var-declaration-attempt-to-redeclare-with-generator-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/block-scope/syntax/redeclaration/var-declaration-attempt-to-redeclare-with-let-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/computed-property-names/class/static/method-number.js: >+ default: "Test262Error: `compareArray(Object.getOwnPropertyNames(C), ['1', '2', 'length', 'prototype', 'a', 'c', 'name'])` returns `true`" >+ strict mode: "Test262Error: `compareArray(Object.getOwnPropertyNames(C), ['1', '2', 'length', 'prototype', 'a', 'c', 'name'])` returns `true`" >+test/language/computed-property-names/class/static/method-string.js: >+ default: "Test262Error: `compareArray(Object.getOwnPropertyNames(C), ['length', 'prototype', 'a', 'b', 'c', 'd', 'name'])` returns `true`" >+ strict mode: "Test262Error: `compareArray(Object.getOwnPropertyNames(C), ['length', 'prototype', 'a', 'b', 'c', 'd', 'name'])` returns `true`" >+test/language/computed-property-names/class/static/method-symbol.js: >+ default: "Test262Error: `compareArray(Object.getOwnPropertyNames(C), ['length', 'prototype', 'a', 'c', 'name'])` returns `true`" >+ strict mode: "Test262Error: `compareArray(Object.getOwnPropertyNames(C), ['length', 'prototype', 'a', 'c', 'name'])` returns `true`" >+test/language/computed-property-names/to-name-side-effects/class.js: >+ default: 'Test262Error: The result of `counter++` is `0` Expected SameValue(ë1û, ë0û) to be true' >+ strict mode: 'Test262Error: The result of `counter++` is `0` Expected SameValue(ë1û, ë0û) to be true' >+test/language/computed-property-names/to-name-side-effects/numbers-class.js: >+ default: 'Test262Error: The result of `counter++` is `0` Expected SameValue(ë1û, ë0û) to be true' >+ strict mode: 'Test262Error: The result of `counter++` is `0` Expected SameValue(ë1û, ë0û) to be true' >+test/language/computed-property-names/to-name-side-effects/object.js: >+ default: 'Test262Error: The result of `counter++` is `0` Expected SameValue(ë1û, ë0û) to be true' >+ strict mode: 'Test262Error: The result of `counter++` is `0` Expected SameValue(ë1û, ë0û) to be true' >+test/language/eval-code/direct/new.target-arrow.js: >+ default: 'Test262Error: Expected SameValue(ëfunction ReferenceError() {' >+ strict mode: 'Test262Error: Expected SameValue(ëfunction ReferenceError() {' >+test/language/eval-code/direct/non-definable-function-with-function.js: >+ default: 'Test262Error: Expected SameValue(ë[object Object]û, ëundefinedû) to be true' >+test/language/eval-code/direct/non-definable-function-with-variable.js: >+ default: 'Test262Error: Expected SameValue(ë[object Object]û, ëundefinedû) to be true' >+test/language/eval-code/direct/non-definable-global-function.js: >+ default: 'Test262Error: Expected true but got false' >+test/language/eval-code/direct/non-definable-global-generator.js: >+ default: 'Test262Error: Expected true but got false' >+test/language/eval-code/direct/var-env-func-init-global-update-configurable.js: >+ default: 'Test262Error: Expected obj[f] to have enumerable:true.' >+test/language/eval-code/direct/var-env-global-lex-non-strict.js: >+ default: "TypeError: Can't create duplicate global variable in eval: 'x'" >+test/language/eval-code/direct/var-env-lower-lex-catch-non-strict.js: >+ default: 'Test262Error: Expected a SyntaxError to be thrown but no exception was thrown at all' >+test/language/eval-code/direct/var-env-lower-lex-non-strict.js: >+ default: 'Test262Error: Expected a SyntaxError to be thrown but no exception was thrown at all' >+test/language/eval-code/indirect/non-definable-function-with-function.js: >+ default: 'Test262Error: declaration preceeding Expected SameValue(ë[object Object]û, ëundefinedû) to be true' >+ strict mode: 'Test262Error: declaration preceeding Expected SameValue(ë[object Object]û, ëundefinedû) to be true' >+test/language/eval-code/indirect/non-definable-function-with-variable.js: >+ default: 'Test262Error: declaration preceeding Expected SameValue(ë[object Object]û, ëundefinedû) to be true' >+ strict mode: 'Test262Error: declaration preceeding Expected SameValue(ë[object Object]û, ëundefinedû) to be true' >+test/language/eval-code/indirect/non-definable-global-function.js: >+ default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >+ strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >+test/language/eval-code/indirect/non-definable-global-generator.js: >+ default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >+ strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >+test/language/eval-code/indirect/var-env-func-init-global-update-configurable.js: >+ default: 'Test262Error: Expected obj[f] to have enumerable:true.' >+ strict mode: 'Test262Error: Expected obj[f] to have enumerable:true.' >+test/language/eval-code/indirect/var-env-global-lex-non-strict.js: >+ default: 'Test262Error: Expected SameValue(ëfunction TypeError() {' >+ strict mode: 'Test262Error: Expected SameValue(ëfunction TypeError() {' >+test/language/expressions/arrow-function/arrow/binding-tests-1.js: >+ strict mode: 'Test262Error: This binding initialization was incorrect for arrow capturing this from closure. Expected SameValue(ëundefinedû, ë[object global]û) to be true' >+test/language/expressions/arrow-function/arrow/binding-tests-2.js: >+ strict mode: 'Test262Error: This binding initialization was incorrect for arrow capturing this from closure. Expected SameValue(ëundefinedû, ë[object global]û) to be true' >+test/language/expressions/arrow-function/arrow/binding-tests-3.js: >+ strict mode: 'Test262Error: This binding initialization was incorrect for arrow capturing this from closure. Expected SameValue(ëundefinedû, ë[object global]û) to be true' >+test/language/expressions/arrow-function/arrow/capturing-closure-variables-2.js: >+ strict mode: "SyntaxError: 'with' statements are not valid in strict mode." >+test/language/expressions/arrow-function/scope-body-lex-distinct.js: >+ default: 'Test262Error: Expected a SyntaxError to be thrown but no exception was thrown at all' >+test/language/expressions/arrow-function/scope-param-elem-var-close.js: >+ default: 'Test262Error: Expected SameValue(ëinsideû, ëoutsideû) to be true' >+test/language/expressions/arrow-function/scope-param-elem-var-open.js: >+ default: 'Test262Error: Expected SameValue(ëinsideû, ëoutsideû) to be true' >+test/language/expressions/arrow-function/scope-param-rest-elem-var-close.js: >+ default: 'Test262Error: Expected SameValue(ëinsideû, ëoutsideû) to be true' >+test/language/expressions/assignment/S11.13.1_A5_T4.js: >+ default: "ReferenceError: Can't find variable: x" >+test/language/expressions/assignment/S11.13.1_A5_T5.js: >+ default: "ReferenceError: Can't find variable: x" >+ strict mode: "ReferenceError: Can't find variable: x" >+test/language/expressions/assignment/S11.13.1_A7_T1.js: >+ default: 'Test262Error: Expected a TypeError but got a Test262Error' >+ strict mode: 'Test262Error: Expected a TypeError but got a Test262Error' >+test/language/expressions/assignment/S11.13.1_A7_T2.js: >+ default: 'Test262Error: Expected a TypeError but got a Test262Error' >+ strict mode: 'Test262Error: Expected a TypeError but got a Test262Error' >+test/language/expressions/assignment/S11.13.1_A7_T3.js: >+ default: 'Test262Error: Expected a DummyError but got a Test262Error' >+ strict mode: 'Test262Error: Expected a DummyError but got a Test262Error' >+test/language/expressions/assignment/destructuring/iterator-destructuring-property-reference-target-evaluation-order.js: >+ default: 'Test262Error: Expected [source, iterator, iterator-step, iterator-done, target, target-key, target-key-tostring, set] and [source, iterator, target, target-key, target-key-tostring, iterator-step, iterator-done, set] to have the same contents. undefined' >+ strict mode: 'Test262Error: Expected [source, iterator, iterator-step, iterator-done, target, target-key, target-key-tostring, set] and [source, iterator, target, target-key, target-key-tostring, iterator-step, iterator-done, set] to have the same contents. undefined' >+test/language/expressions/assignment/destructuring/keyed-destructuring-property-reference-target-evaluation-order.js: >+ default: 'Test262Error: Expected [source, source-key, source-key-tostring, get, target, target-key, target-key-tostring, set] and [source, source-key, source-key-tostring, target, target-key, target-key-tostring, get, set] to have the same contents. undefined' >+ strict mode: 'Test262Error: Expected [source, source-key, source-key-tostring, get, target, target-key, target-key-tostring, set] and [source, source-key, source-key-tostring, target, target-key, target-key-tostring, get, set] to have the same contents. undefined' >+test/language/expressions/assignment/destructuring/obj-prop-__proto__dup.js: >+ default: 'SyntaxError: Attempted to redefine __proto__ property.' >+ strict mode: 'SyntaxError: Attempted to redefine __proto__ property.' >+test/language/expressions/assignment/dstr-array-elem-iter-rtrn-close-err.js: >+ default: "TypeError: undefined is not a function (near '...[ {}[ yield ] ]...')" >+ strict mode: "TypeError: undefined is not a function (near '...[ {}[ yield ] ]...')" >+test/language/expressions/assignment/dstr-array-elem-iter-rtrn-close-null.js: >+ default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >+ strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >+test/language/expressions/assignment/dstr-array-elem-iter-rtrn-close.js: >+ default: 'Test262Error: Expected SameValue(ë0û, ë1û) to be true' >+ strict mode: 'Test262Error: Expected SameValue(ë0û, ë1û) to be true' >+test/language/expressions/assignment/dstr-array-elem-iter-thrw-close-err.js: >+ default: 'Test262Error: Expected SameValue(ë1û, ë0û) to be true' >+ strict mode: 'Test262Error: Expected SameValue(ë1û, ë0û) to be true' >+test/language/expressions/assignment/dstr-array-elem-iter-thrw-close.js: >+ default: 'Test262Error: Expected SameValue(ë1û, ë0û) to be true' >+ strict mode: 'Test262Error: Expected SameValue(ë1û, ë0û) to be true' >+test/language/expressions/assignment/dstr-array-elem-trlg-iter-list-rtrn-close-err.js: >+ default: 'Test262Error: Expected a Test262Error to be thrown but no exception was thrown at all' >+ strict mode: 'Test262Error: Expected a Test262Error to be thrown but no exception was thrown at all' >+test/language/expressions/assignment/dstr-array-elem-trlg-iter-list-rtrn-close-null.js: >+ default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >+ strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >+test/language/expressions/assignment/dstr-array-elem-trlg-iter-list-rtrn-close.js: >+ default: 'Test262Error: Expected SameValue(ë0û, ë1û) to be true' >+ strict mode: 'Test262Error: Expected SameValue(ë0û, ë1û) to be true' >+test/language/expressions/assignment/dstr-array-elem-trlg-iter-list-thrw-close-err.js: >+ default: 'Test262Error: Expected SameValue(ë1û, ë0û) to be true' >+ strict mode: 'Test262Error: Expected SameValue(ë1û, ë0û) to be true' >+test/language/expressions/assignment/dstr-array-elem-trlg-iter-list-thrw-close.js: >+ default: 'Test262Error: Expected SameValue(ë1û, ë0û) to be true' >+ strict mode: 'Test262Error: Expected SameValue(ë1û, ë0û) to be true' >+test/language/expressions/assignment/dstr-array-elem-trlg-iter-rest-rtrn-close-err.js: >+ default: 'Test262Error: Expected a Test262Error to be thrown but no exception was thrown at all' >+ strict mode: 'Test262Error: Expected a Test262Error to be thrown but no exception was thrown at all' >+test/language/expressions/assignment/dstr-array-elem-trlg-iter-rest-rtrn-close-null.js: >+ default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >+ strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >+test/language/expressions/assignment/dstr-array-elem-trlg-iter-rest-rtrn-close.js: >+ default: 'Test262Error: Expected SameValue(ë11û, ë1û) to be true' >+ strict mode: 'Test262Error: Expected SameValue(ë11û, ë1û) to be true' >+test/language/expressions/assignment/dstr-array-elem-trlg-iter-rest-thrw-close-err.js: >+ default: 'Test262Error: Expected SameValue(ë11û, ë1û) to be true' >+ strict mode: 'Test262Error: Expected SameValue(ë11û, ë1û) to be true' >+test/language/expressions/assignment/dstr-array-elem-trlg-iter-rest-thrw-close.js: >+ default: 'Test262Error: Expected SameValue(ë11û, ë1û) to be true' >+ strict mode: 'Test262Error: Expected SameValue(ë11û, ë1û) to be true' >+test/language/expressions/assignment/dstr-array-rest-iter-rtrn-close-err.js: >+ default: "TypeError: undefined is not a function (near '...[...{}[yield]]...')" >+ strict mode: "TypeError: undefined is not a function (near '...[...{}[yield]]...')" >+test/language/expressions/assignment/dstr-array-rest-iter-rtrn-close-null.js: >+ default: "TypeError: undefined is not a function (near '...[...{}[yield]]...')" >+ strict mode: "TypeError: undefined is not a function (near '...[...{}[yield]]...')" >+test/language/expressions/assignment/dstr-array-rest-iter-rtrn-close.js: >+ default: "TypeError: undefined is not a function (near '...[...{}[yield]]...')" >+ strict mode: "TypeError: undefined is not a function (near '...[...{}[yield]]...')" >+test/language/expressions/assignment/dstr-array-rest-iter-thrw-close-err.js: >+ default: 'Test262Error: Expected SameValue(ë11û, ë0û) to be true' >+ strict mode: 'Test262Error: Expected SameValue(ë11û, ë0û) to be true' >+test/language/expressions/assignment/dstr-array-rest-iter-thrw-close.js: >+ default: 'Test262Error: Expected SameValue(ë11û, ë0û) to be true' >+ strict mode: 'Test262Error: Expected SameValue(ë11û, ë0û) to be true' >+test/language/expressions/assignment/dstr-array-rest-lref-err.js: >+ default: 'Test262Error: Expected SameValue(ë1û, ë0û) to be true' >+ strict mode: 'Test262Error: Expected SameValue(ë1û, ë0û) to be true' >+test/language/expressions/assignment/fn-name-lhs-cover.js: >+ default: 'Test262Error: Expected SameValue(ëtrueû, ëfalseû) to be true' >+ strict mode: 'Test262Error: Expected SameValue(ëtrueû, ëfalseû) to be true' >+test/language/expressions/assignment/fn-name-lhs-member.js: >+ default: 'Test262Error: Expected SameValue(ëtrueû, ëfalseû) to be true' >+ strict mode: 'Test262Error: Expected SameValue(ëtrueû, ëfalseû) to be true' >+test/language/expressions/assignment/non-simple-target.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/expressions/assignment/target-boolean.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/expressions/assignment/target-cover-newtarget.js: >+ default: "SyntaxError: new.target can't be the left hand side of an assignment expression." >+ strict mode: "SyntaxError: new.target can't be the left hand side of an assignment expression." >+test/language/expressions/assignment/target-cover-yieldexpr.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/expressions/assignment/target-newtarget.js: >+ default: "SyntaxError: new.target can't be the left hand side of an assignment expression." >+ strict mode: "SyntaxError: new.target can't be the left hand side of an assignment expression." >+test/language/expressions/assignment/target-null.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/expressions/assignment/target-number.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/expressions/assignment/target-string.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/expressions/async-function/early-errors-expression-not-simple-assignment-target.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/expressions/async-generator/early-errors-expression-not-simple-assignment-target.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/expressions/async-generator/early-errors-expression-yield-as-function-binding-identifier.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/expressions/await/early-errors-await-not-simple-assignment-target.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/expressions/call/eval-realm-indirect.js: >+ default: 'Test262Error: Expected SameValue(ëinsideû, ëoutsideû) to be true' >+test/language/expressions/call/eval-spread-empty-leading.js: >+ default: 'Test262Error: Expected SameValue(ëlocalû, ë0û) to be true' >+ strict mode: 'Test262Error: Expected SameValue(ëlocalû, ë0û) to be true' >+test/language/expressions/call/eval-spread-empty-trailing.js: >+ default: 'Test262Error: Expected SameValue(ëlocalû, ë0û) to be true' >+ strict mode: 'Test262Error: Expected SameValue(ëlocalû, ë0û) to be true' >+test/language/expressions/call/eval-spread.js: >+ default: 'Test262Error: Expected SameValue(ëlocalû, ë1û) to be true' >+ strict mode: 'Test262Error: Expected SameValue(ëlocalû, ë1û) to be true' >+test/language/expressions/call/tco-cross-realm-class-construct.js: >+ default: 'Test262Error: Expected a TypeError but got a TypeError' >+ strict mode: 'Test262Error: Expected a TypeError but got a TypeError' >+test/language/expressions/call/tco-cross-realm-class-derived-construct.js: >+ default: 'Test262Error: Expected a TypeError but got a TypeError' >+ strict mode: 'Test262Error: Expected a TypeError but got a TypeError' >+test/language/expressions/call/tco-cross-realm-fun-call.js: >+ default: 'Test262Error: Expected a TypeError but got a TypeError' >+ strict mode: 'Test262Error: Expected a TypeError but got a TypeError' >+test/language/expressions/call/tco-cross-realm-fun-construct.js: >+ default: 'Test262Error: Expected a TypeError but got a TypeError' >+ strict mode: 'Test262Error: Expected a TypeError but got a TypeError' >+test/language/expressions/call/tco-non-eval-function-dynamic.js: >+ default: 'RangeError: Maximum call stack size exceeded.' >+test/language/expressions/call/tco-non-eval-function.js: >+ default: 'RangeError: Maximum call stack size exceeded.' >+test/language/expressions/call/tco-non-eval-global.js: >+ default: 'RangeError: Maximum call stack size exceeded.' >+test/language/expressions/call/tco-non-eval-with.js: >+ default: 'RangeError: Maximum call stack size exceeded.' >+test/language/expressions/class/fields-after-same-line-gen-computed-names.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-after-same-line-gen-computed-symbol-names.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-after-same-line-gen-literal-names.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-after-same-line-gen-private-names.js: >+ default: "SyntaxError: Invalid character: '#'" >+ strict mode: "SyntaxError: Invalid character: '#'" >+test/language/expressions/class/fields-after-same-line-gen-string-literal-names.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-after-same-line-method-computed-names.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-after-same-line-method-computed-symbol-names.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-after-same-line-method-literal-names.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-after-same-line-method-private-names.js: >+ default: "SyntaxError: Invalid character: '#'" >+ strict mode: "SyntaxError: Invalid character: '#'" >+test/language/expressions/class/fields-after-same-line-method-string-literal-names.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-after-same-line-static-async-gen-computed-names.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-after-same-line-static-async-gen-computed-symbol-names.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-after-same-line-static-async-gen-literal-names.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-after-same-line-static-async-gen-private-names.js: >+ default: "SyntaxError: Invalid character: '#'" >+ strict mode: "SyntaxError: Invalid character: '#'" >+test/language/expressions/class/fields-after-same-line-static-async-gen-string-literal-names.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-after-same-line-static-async-method-computed-names.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-after-same-line-static-async-method-computed-symbol-names.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-after-same-line-static-async-method-literal-names.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-after-same-line-static-async-method-private-names.js: >+ default: "SyntaxError: Invalid character: '#'" >+ strict mode: "SyntaxError: Invalid character: '#'" >+test/language/expressions/class/fields-after-same-line-static-async-method-string-literal-names.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-after-same-line-static-gen-computed-names.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-after-same-line-static-gen-computed-symbol-names.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-after-same-line-static-gen-literal-names.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-after-same-line-static-gen-private-names.js: >+ default: "SyntaxError: Invalid character: '#'" >+ strict mode: "SyntaxError: Invalid character: '#'" >+test/language/expressions/class/fields-after-same-line-static-gen-string-literal-names.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-after-same-line-static-method-computed-names.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-after-same-line-static-method-computed-symbol-names.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-after-same-line-static-method-literal-names.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-after-same-line-static-method-private-names.js: >+ default: "SyntaxError: Invalid character: '#'" >+ strict mode: "SyntaxError: Invalid character: '#'" >+test/language/expressions/class/fields-after-same-line-static-method-string-literal-names.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-asi-1.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-asi-2.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-asi-5.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-computed-name-propname-constructor.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-computed-name-toprimitive-symbol.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-computed-name-toprimitive.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-computed-variable-name-propname-constructor.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-ctor-called-after-fields-init.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-derived-cls-direct-eval-err-contains-supercall-1.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-derived-cls-direct-eval-err-contains-supercall-2.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-derived-cls-direct-eval-err-contains-supercall.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-derived-cls-direct-eval-err-contains-superproperty-1.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-derived-cls-direct-eval-err-contains-superproperty-2.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-derived-cls-indirect-eval-err-contains-supercall-1.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-derived-cls-indirect-eval-err-contains-supercall-2.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-derived-cls-indirect-eval-err-contains-supercall.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-derived-cls-indirect-eval-err-contains-superproperty-1.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-derived-cls-indirect-eval-err-contains-superproperty-2.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-direct-eval-err-contains-arguments.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-direct-eval-err-contains-newtarget.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-evaluation-error-computed-name-referenceerror.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-evaluation-error-computed-name-toprimitive-err.js: >+ default: "SyntaxError: Unexpected token '}'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '}'. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-evaluation-error-computed-name-tostring-err.js: >+ default: "SyntaxError: Unexpected token '}'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '}'. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-evaluation-error-computed-name-valueof-err.js: >+ default: "SyntaxError: Unexpected token '}'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '}'. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-indirect-eval-err-contains-arguments.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-indirect-eval-err-contains-newtarget.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-init-err-evaluation.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-init-value-defined-after-class.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-init-value-incremental.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-multiple-definitions-computed-names.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-multiple-definitions-computed-symbol-names.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-multiple-definitions-literal-names.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-multiple-definitions-private-names.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-multiple-definitions-string-literal-names.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-multiple-stacked-definitions-computed-names.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-multiple-stacked-definitions-computed-symbol-names.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-multiple-stacked-definitions-literal-names.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-multiple-stacked-definitions-private-names.js: >+ default: "SyntaxError: Invalid character: '#'" >+ strict mode: "SyntaxError: Invalid character: '#'" >+test/language/expressions/class/fields-multiple-stacked-definitions-string-literal-names.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-new-no-sc-line-method-computed-names.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-new-no-sc-line-method-computed-symbol-names.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-new-no-sc-line-method-literal-names.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-new-no-sc-line-method-private-names.js: >+ default: "SyntaxError: Invalid character: '#'" >+ strict mode: "SyntaxError: Invalid character: '#'" >+test/language/expressions/class/fields-new-no-sc-line-method-string-literal-names.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-new-sc-line-gen-computed-names.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-new-sc-line-gen-computed-symbol-names.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-new-sc-line-gen-literal-names.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-new-sc-line-gen-private-names.js: >+ default: "SyntaxError: Invalid character: '#'" >+ strict mode: "SyntaxError: Invalid character: '#'" >+test/language/expressions/class/fields-new-sc-line-gen-string-literal-names.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-new-sc-line-method-computed-names.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-new-sc-line-method-computed-symbol-names.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-new-sc-line-method-literal-names.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-new-sc-line-method-private-names.js: >+ default: "SyntaxError: Invalid character: '#'" >+ strict mode: "SyntaxError: Invalid character: '#'" >+test/language/expressions/class/fields-new-sc-line-method-string-literal-names.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-redeclaration-symbol.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-redeclaration.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-regular-definitions-computed-names.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-regular-definitions-computed-symbol-names.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-regular-definitions-literal-names.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-regular-definitions-private-names.js: >+ default: "SyntaxError: Invalid character: '#'" >+ strict mode: "SyntaxError: Invalid character: '#'" >+test/language/expressions/class/fields-regular-definitions-string-literal-names.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-same-line-async-gen-computed-names.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-same-line-async-gen-computed-symbol-names.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-same-line-async-gen-literal-names.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-same-line-async-gen-private-names.js: >+ default: "SyntaxError: Invalid character: '#'" >+ strict mode: "SyntaxError: Invalid character: '#'" >+test/language/expressions/class/fields-same-line-async-gen-string-literal-names.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-same-line-async-method-computed-names.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-same-line-async-method-computed-symbol-names.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-same-line-async-method-literal-names.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-same-line-async-method-private-names.js: >+ default: "SyntaxError: Invalid character: '#'" >+ strict mode: "SyntaxError: Invalid character: '#'" >+test/language/expressions/class/fields-same-line-async-method-string-literal-names.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-same-line-gen-computed-names.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-same-line-gen-computed-symbol-names.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-same-line-gen-literal-names.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-same-line-gen-private-names.js: >+ default: "SyntaxError: Invalid character: '#'" >+ strict mode: "SyntaxError: Invalid character: '#'" >+test/language/expressions/class/fields-same-line-gen-string-literal-names.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-same-line-method-computed-names.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-same-line-method-computed-symbol-names.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-same-line-method-literal-names.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-same-line-method-private-names.js: >+ default: "SyntaxError: Invalid character: '#'" >+ strict mode: "SyntaxError: Invalid character: '#'" >+test/language/expressions/class/fields-same-line-method-string-literal-names.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-wrapped-in-sc-computed-names.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-wrapped-in-sc-computed-symbol-names.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-wrapped-in-sc-literal-names.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/fields-wrapped-in-sc-private-names.js: >+ default: "SyntaxError: Invalid character: '#'" >+ strict mode: "SyntaxError: Invalid character: '#'" >+test/language/expressions/class/fields-wrapped-in-sc-string-literal-names.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/expressions/class/name.js: >+ default: 'Test262Error: Expected SameValue(ëtrueû, ëfalseû) to be true' >+ strict mode: 'Test262Error: Expected SameValue(ëtrueû, ëfalseû) to be true' >+test/language/expressions/compound-assignment/S11.13.2_A5.10_T1.js: >+ default: "ReferenceError: Can't find variable: x" >+test/language/expressions/compound-assignment/S11.13.2_A5.10_T2.js: >+ default: "ReferenceError: Can't find variable: x" >+test/language/expressions/compound-assignment/S11.13.2_A5.10_T3.js: >+ default: "ReferenceError: Can't find variable: x" >+test/language/expressions/compound-assignment/S11.13.2_A5.10_T4.js: >+ default: "ReferenceError: Can't find variable: x" >+test/language/expressions/compound-assignment/S11.13.2_A5.10_T5.js: >+ default: "ReferenceError: Can't find variable: x" >+ strict mode: "TypeError: undefined is not an object (evaluating 'delete this.x')" >+test/language/expressions/compound-assignment/S11.13.2_A5.11_T1.js: >+ default: "ReferenceError: Can't find variable: x" >+test/language/expressions/compound-assignment/S11.13.2_A5.11_T2.js: >+ default: "ReferenceError: Can't find variable: x" >+test/language/expressions/compound-assignment/S11.13.2_A5.11_T3.js: >+ default: "ReferenceError: Can't find variable: x" >+test/language/expressions/compound-assignment/S11.13.2_A5.11_T4.js: >+ default: "ReferenceError: Can't find variable: x" >+test/language/expressions/compound-assignment/S11.13.2_A5.11_T5.js: >+ default: "ReferenceError: Can't find variable: x" >+ strict mode: "TypeError: undefined is not an object (evaluating 'delete this.x')" >+test/language/expressions/compound-assignment/S11.13.2_A5.1_T1.js: >+ default: "ReferenceError: Can't find variable: x" >+test/language/expressions/compound-assignment/S11.13.2_A5.1_T2.js: >+ default: "ReferenceError: Can't find variable: x" >+test/language/expressions/compound-assignment/S11.13.2_A5.1_T3.js: >+ default: "ReferenceError: Can't find variable: x" >+test/language/expressions/compound-assignment/S11.13.2_A5.1_T4.js: >+ default: "ReferenceError: Can't find variable: x" >+test/language/expressions/compound-assignment/S11.13.2_A5.1_T5.js: >+ default: "ReferenceError: Can't find variable: x" >+ strict mode: "TypeError: undefined is not an object (evaluating 'delete this.x')" >+test/language/expressions/compound-assignment/S11.13.2_A5.2_T1.js: >+ default: "ReferenceError: Can't find variable: x" >+test/language/expressions/compound-assignment/S11.13.2_A5.2_T2.js: >+ default: "ReferenceError: Can't find variable: x" >+test/language/expressions/compound-assignment/S11.13.2_A5.2_T3.js: >+ default: "ReferenceError: Can't find variable: x" >+test/language/expressions/compound-assignment/S11.13.2_A5.2_T4.js: >+ default: "ReferenceError: Can't find variable: x" >+test/language/expressions/compound-assignment/S11.13.2_A5.2_T5.js: >+ default: "ReferenceError: Can't find variable: x" >+ strict mode: "TypeError: undefined is not an object (evaluating 'delete this.x')" >+test/language/expressions/compound-assignment/S11.13.2_A5.3_T1.js: >+ default: "ReferenceError: Can't find variable: x" >+test/language/expressions/compound-assignment/S11.13.2_A5.3_T2.js: >+ default: "ReferenceError: Can't find variable: x" >+test/language/expressions/compound-assignment/S11.13.2_A5.3_T3.js: >+ default: "ReferenceError: Can't find variable: x" >+test/language/expressions/compound-assignment/S11.13.2_A5.3_T4.js: >+ default: "ReferenceError: Can't find variable: x" >+test/language/expressions/compound-assignment/S11.13.2_A5.3_T5.js: >+ default: "ReferenceError: Can't find variable: x" >+ strict mode: "TypeError: undefined is not an object (evaluating 'delete this.x')" >+test/language/expressions/compound-assignment/S11.13.2_A5.4_T1.js: >+ default: "ReferenceError: Can't find variable: x" >+test/language/expressions/compound-assignment/S11.13.2_A5.4_T2.js: >+ default: "ReferenceError: Can't find variable: x" >+test/language/expressions/compound-assignment/S11.13.2_A5.4_T3.js: >+ default: "ReferenceError: Can't find variable: x" >+test/language/expressions/compound-assignment/S11.13.2_A5.4_T4.js: >+ default: "ReferenceError: Can't find variable: x" >+test/language/expressions/compound-assignment/S11.13.2_A5.4_T5.js: >+ default: "ReferenceError: Can't find variable: x" >+ strict mode: "TypeError: undefined is not an object (evaluating 'delete this.x')" >+test/language/expressions/compound-assignment/S11.13.2_A5.5_T1.js: >+ default: "ReferenceError: Can't find variable: x" >+test/language/expressions/compound-assignment/S11.13.2_A5.5_T2.js: >+ default: "ReferenceError: Can't find variable: x" >+test/language/expressions/compound-assignment/S11.13.2_A5.5_T3.js: >+ default: "ReferenceError: Can't find variable: x" >+test/language/expressions/compound-assignment/S11.13.2_A5.5_T4.js: >+ default: "ReferenceError: Can't find variable: x" >+test/language/expressions/compound-assignment/S11.13.2_A5.5_T5.js: >+ default: "ReferenceError: Can't find variable: x" >+ strict mode: "TypeError: undefined is not an object (evaluating 'delete this.x')" >+test/language/expressions/compound-assignment/S11.13.2_A5.6_T1.js: >+ default: "ReferenceError: Can't find variable: x" >+test/language/expressions/compound-assignment/S11.13.2_A5.6_T2.js: >+ default: "ReferenceError: Can't find variable: x" >+test/language/expressions/compound-assignment/S11.13.2_A5.6_T3.js: >+ default: "ReferenceError: Can't find variable: x" >+test/language/expressions/compound-assignment/S11.13.2_A5.6_T4.js: >+ default: "ReferenceError: Can't find variable: x" >+test/language/expressions/compound-assignment/S11.13.2_A5.6_T5.js: >+ default: "ReferenceError: Can't find variable: x" >+ strict mode: "TypeError: undefined is not an object (evaluating 'delete this.x')" >+test/language/expressions/compound-assignment/S11.13.2_A5.7_T1.js: >+ default: "ReferenceError: Can't find variable: x" >+test/language/expressions/compound-assignment/S11.13.2_A5.7_T2.js: >+ default: "ReferenceError: Can't find variable: x" >+test/language/expressions/compound-assignment/S11.13.2_A5.7_T3.js: >+ default: "ReferenceError: Can't find variable: x" >+test/language/expressions/compound-assignment/S11.13.2_A5.7_T4.js: >+ default: "ReferenceError: Can't find variable: x" >+test/language/expressions/compound-assignment/S11.13.2_A5.7_T5.js: >+ default: "ReferenceError: Can't find variable: x" >+ strict mode: "TypeError: undefined is not an object (evaluating 'delete this.x')" >+test/language/expressions/compound-assignment/S11.13.2_A5.8_T1.js: >+ default: "ReferenceError: Can't find variable: x" >+test/language/expressions/compound-assignment/S11.13.2_A5.8_T2.js: >+ default: "ReferenceError: Can't find variable: x" >+test/language/expressions/compound-assignment/S11.13.2_A5.8_T3.js: >+ default: "ReferenceError: Can't find variable: x" >+test/language/expressions/compound-assignment/S11.13.2_A5.8_T4.js: >+ default: "ReferenceError: Can't find variable: x" >+test/language/expressions/compound-assignment/S11.13.2_A5.8_T5.js: >+ default: "ReferenceError: Can't find variable: x" >+ strict mode: "TypeError: undefined is not an object (evaluating 'delete this.x')" >+test/language/expressions/compound-assignment/S11.13.2_A5.9_T1.js: >+ default: "ReferenceError: Can't find variable: x" >+test/language/expressions/compound-assignment/S11.13.2_A5.9_T2.js: >+ default: "ReferenceError: Can't find variable: x" >+test/language/expressions/compound-assignment/S11.13.2_A5.9_T3.js: >+ default: "ReferenceError: Can't find variable: x" >+test/language/expressions/compound-assignment/S11.13.2_A5.9_T4.js: >+ default: "ReferenceError: Can't find variable: x" >+test/language/expressions/compound-assignment/S11.13.2_A5.9_T5.js: >+ default: "ReferenceError: Can't find variable: x" >+ strict mode: "TypeError: undefined is not an object (evaluating 'delete this.x')" >+test/language/expressions/compound-assignment/S11.13.2_A7.10_T4.js: >+ default: 'Test262Error: Expected true but got false' >+ strict mode: 'Test262Error: Expected true but got false' >+test/language/expressions/compound-assignment/S11.13.2_A7.11_T4.js: >+ default: 'Test262Error: Expected true but got false' >+ strict mode: 'Test262Error: Expected true but got false' >+test/language/expressions/compound-assignment/S11.13.2_A7.1_T4.js: >+ default: 'Test262Error: Expected true but got false' >+ strict mode: 'Test262Error: Expected true but got false' >+test/language/expressions/compound-assignment/S11.13.2_A7.2_T4.js: >+ default: 'Test262Error: Expected true but got false' >+ strict mode: 'Test262Error: Expected true but got false' >+test/language/expressions/compound-assignment/S11.13.2_A7.3_T4.js: >+ default: 'Test262Error: Expected true but got false' >+ strict mode: 'Test262Error: Expected true but got false' >+test/language/expressions/compound-assignment/S11.13.2_A7.4_T4.js: >+ default: 'Test262Error: Expected true but got false' >+ strict mode: 'Test262Error: Expected true but got false' >+test/language/expressions/compound-assignment/S11.13.2_A7.5_T4.js: >+ default: 'Test262Error: Expected true but got false' >+ strict mode: 'Test262Error: Expected true but got false' >+test/language/expressions/compound-assignment/S11.13.2_A7.6_T4.js: >+ default: 'Test262Error: Expected true but got false' >+ strict mode: 'Test262Error: Expected true but got false' >+test/language/expressions/compound-assignment/S11.13.2_A7.7_T4.js: >+ default: 'Test262Error: Expected true but got false' >+ strict mode: 'Test262Error: Expected true but got false' >+test/language/expressions/compound-assignment/S11.13.2_A7.8_T4.js: >+ default: 'Test262Error: Expected true but got false' >+ strict mode: 'Test262Error: Expected true but got false' >+test/language/expressions/compound-assignment/S11.13.2_A7.9_T4.js: >+ default: 'Test262Error: Expected true but got false' >+ strict mode: 'Test262Error: Expected true but got false' >+test/language/expressions/compound-assignment/add-non-simple.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/expressions/compound-assignment/btws-and-non-simple.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/expressions/compound-assignment/btws-or-non-simple.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/expressions/compound-assignment/btws-xor-non-simple.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/expressions/compound-assignment/div-non-simple.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/expressions/compound-assignment/left-shift-non-simple.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/expressions/compound-assignment/mod-div-non-simple.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/expressions/compound-assignment/mult-non-simple.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/expressions/compound-assignment/right-shift-non-simple.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/expressions/compound-assignment/subtract-non-simple.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/expressions/compound-assignment/u-right-shift-non-simple.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/expressions/conditional/in-branch-1.js: >+ default: "SyntaxError: Unexpected keyword 'in'. Expected ':' in ternary operator." >+ strict mode: "SyntaxError: Unexpected keyword 'in'. Expected ':' in ternary operator." >+test/language/expressions/function/name.js: >+ default: 'Test262Error: Expected SameValue(ëtrueû, ëfalseû) to be true' >+ strict mode: 'Test262Error: Expected SameValue(ëtrueû, ëfalseû) to be true' >+test/language/expressions/function/scope-body-lex-distinct.js: >+ default: 'Test262Error: Expected a SyntaxError to be thrown but no exception was thrown at all' >+test/language/expressions/function/scope-param-elem-var-close.js: >+ default: 'Test262Error: Expected SameValue(ëinsideû, ëoutsideû) to be true' >+test/language/expressions/function/scope-param-elem-var-open.js: >+ default: 'Test262Error: Expected SameValue(ëinsideû, ëoutsideû) to be true' >+test/language/expressions/function/scope-param-rest-elem-var-close.js: >+ default: 'Test262Error: Expected SameValue(ëinsideû, ëoutsideû) to be true' >+test/language/expressions/generators/default-proto.js: >+ default: 'Test262Error: Expected SameValue(ë[object Object]û, ë[object Generator]û) to be true' >+ strict mode: 'Test262Error: Expected SameValue(ë[object Object]û, ë[object Generator]û) to be true' >+test/language/expressions/generators/eval-body-proto-realm.js: >+ default: 'Test262Error: Expected SameValue(ë[object Object]û, ë[object Generator]û) to be true' >+ strict mode: 'Test262Error: Expected SameValue(ë[object Object]û, ë[object Generator]û) to be true' >+test/language/expressions/generators/name.js: >+ default: 'Test262Error: Expected SameValue(ëtrueû, ëfalseû) to be true' >+ strict mode: 'Test262Error: Expected SameValue(ëtrueû, ëfalseû) to be true' >+test/language/expressions/generators/scope-body-lex-distinct.js: >+ default: 'Test262Error: Expected a SyntaxError to be thrown but no exception was thrown at all' >+test/language/expressions/generators/scope-param-elem-var-close.js: >+ default: 'Test262Error: Expected SameValue(ëinsideû, ëoutsideû) to be true' >+test/language/expressions/generators/scope-param-elem-var-open.js: >+ default: 'Test262Error: Expected SameValue(ëinsideû, ëoutsideû) to be true' >+test/language/expressions/generators/scope-param-rest-elem-var-close.js: >+ default: 'Test262Error: Expected SameValue(ëinsideû, ëoutsideû) to be true' >+test/language/expressions/instanceof/prototype-getter-with-primitive.js: >+ default: "Test262Error: getter for 'prototype' called" >+ strict mode: "Test262Error: getter for 'prototype' called" >+test/language/expressions/new/non-ctor-err-realm.js: >+ default: 'Test262Error: production including Arguments Expected a TypeError but got a TypeError' >+ strict mode: 'Test262Error: production including Arguments Expected a TypeError but got a TypeError' >+test/language/expressions/object/__proto__-permitted-dup.js: >+ default: 'SyntaxError: Attempted to redefine __proto__ property.' >+ strict mode: 'SyntaxError: Attempted to redefine __proto__ property.' >+test/language/expressions/object/computed-property-evaluation-order.js: >+ default: 'Test262Error: Expected SameValue(ë2û, ë1û) to be true' >+ strict mode: 'Test262Error: Expected SameValue(ë2û, ë1û) to be true' >+test/language/expressions/object/method-definition/escaped-get.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/expressions/object/method-definition/escaped-set.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/expressions/object/method-definition/yield-as-function-expression-binding-identifier.js: >+ strict mode: "SyntaxError: Cannot use 'yield' as a function name in strict mode." >+test/language/expressions/object/method-definition/yield-as-identifier-in-nested-function.js: >+ strict mode: "SyntaxError: Unexpected keyword 'yield'. Cannot use yield expression out of generator." >+test/language/expressions/object/method-definition/yield-as-logical-or-expression.js: >+ default: "SyntaxError: Unexpected token '?'" >+ strict mode: "SyntaxError: Unexpected token '?'" >+test/language/expressions/object/method-definition/yield-as-parameter.js: >+ default: "SyntaxError: Cannot use 'yield' as a parameter name in a generator function." >+ strict mode: "SyntaxError: Cannot use 'yield' as a parameter name in strict mode." >+test/language/expressions/object/method-definition/yield-star-after-newline.js: >+ default: "SyntaxError: Unexpected token '*'" >+ strict mode: "SyntaxError: Unexpected token '*'" >+test/language/expressions/object/method-definition/yield-weak-binding.js: >+ default: "SyntaxError: Unexpected number '3'" >+ strict mode: "SyntaxError: Unexpected number '3'" >+test/language/expressions/object/scope-gen-meth-body-lex-distinct.js: >+ default: 'Test262Error: Expected a SyntaxError to be thrown but no exception was thrown at all' >+test/language/expressions/object/scope-gen-meth-param-elem-var-close.js: >+ default: 'Test262Error: Expected SameValue(ëinsideû, ëoutsideû) to be true' >+test/language/expressions/object/scope-gen-meth-param-elem-var-open.js: >+ default: 'Test262Error: Expected SameValue(ëinsideû, ëoutsideû) to be true' >+test/language/expressions/object/scope-gen-meth-param-rest-elem-var-close.js: >+ default: 'Test262Error: Expected SameValue(ëinsideû, ëoutsideû) to be true' >+test/language/expressions/object/scope-getter-body-lex-distinc.js: >+ default: 'Test262Error: Expected a SyntaxError to be thrown but no exception was thrown at all' >+test/language/expressions/object/scope-meth-body-lex-distinct.js: >+ default: 'Test262Error: Expected a SyntaxError to be thrown but no exception was thrown at all' >+test/language/expressions/object/scope-meth-param-elem-var-close.js: >+ default: 'Test262Error: Expected SameValue(ëinsideû, ëoutsideû) to be true' >+test/language/expressions/object/scope-meth-param-elem-var-open.js: >+ default: 'Test262Error: Expected SameValue(ëinsideû, ëoutsideû) to be true' >+test/language/expressions/object/scope-meth-param-rest-elem-var-close.js: >+ default: 'Test262Error: Expected SameValue(ëinsideû, ëoutsideû) to be true' >+test/language/expressions/object/scope-setter-body-lex-distinc.js: >+ default: 'Test262Error: Expected a SyntaxError to be thrown but no exception was thrown at all' >+test/language/expressions/postfix-decrement/S11.3.2_A5_T1.js: >+ default: "ReferenceError: Can't find variable: x" >+test/language/expressions/postfix-decrement/S11.3.2_A5_T2.js: >+ default: "ReferenceError: Can't find variable: x" >+test/language/expressions/postfix-decrement/S11.3.2_A5_T3.js: >+ default: "ReferenceError: Can't find variable: x" >+test/language/expressions/postfix-decrement/S11.3.2_A5_T4.js: >+ default: "ReferenceError: Can't find variable: x" >+test/language/expressions/postfix-decrement/S11.3.2_A5_T5.js: >+ default: "ReferenceError: Can't find variable: x" >+ strict mode: "TypeError: undefined is not an object (evaluating 'delete this.x')" >+test/language/expressions/postfix-decrement/S11.3.2_A6_T3.js: >+ default: 'Test262Error: Expected true but got false' >+ strict mode: 'Test262Error: Expected true but got false' >+test/language/expressions/postfix-decrement/non-simple.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/expressions/postfix-decrement/target-cover-newtarget.js: >+ default: "SyntaxError: new.target can't come before a postfix operator." >+ strict mode: "SyntaxError: new.target can't come before a postfix operator." >+test/language/expressions/postfix-decrement/target-cover-yieldexpr.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/expressions/postfix-decrement/target-newtarget.js: >+ default: "SyntaxError: new.target can't come before a postfix operator." >+ strict mode: "SyntaxError: new.target can't come before a postfix operator." >+test/language/expressions/postfix-increment/S11.3.1_A5_T1.js: >+ default: "ReferenceError: Can't find variable: x" >+test/language/expressions/postfix-increment/S11.3.1_A5_T2.js: >+ default: "ReferenceError: Can't find variable: x" >+test/language/expressions/postfix-increment/S11.3.1_A5_T3.js: >+ default: "ReferenceError: Can't find variable: x" >+test/language/expressions/postfix-increment/S11.3.1_A5_T4.js: >+ default: "ReferenceError: Can't find variable: x" >+test/language/expressions/postfix-increment/S11.3.1_A5_T5.js: >+ default: "ReferenceError: Can't find variable: x" >+ strict mode: "TypeError: undefined is not an object (evaluating 'delete this.x')" >+test/language/expressions/postfix-increment/S11.3.1_A6_T3.js: >+ default: 'Test262Error: Expected true but got false' >+ strict mode: 'Test262Error: Expected true but got false' >+test/language/expressions/postfix-increment/non-simple.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/expressions/postfix-increment/target-cover-newtarget.js: >+ default: "SyntaxError: new.target can't come before a postfix operator." >+ strict mode: "SyntaxError: new.target can't come before a postfix operator." >+test/language/expressions/postfix-increment/target-cover-yieldexpr.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/expressions/postfix-increment/target-newtarget.js: >+ default: "SyntaxError: new.target can't come before a postfix operator." >+ strict mode: "SyntaxError: new.target can't come before a postfix operator." >+test/language/expressions/prefix-decrement/S11.4.5_A5_T1.js: >+ default: "ReferenceError: Can't find variable: x" >+test/language/expressions/prefix-decrement/S11.4.5_A5_T2.js: >+ default: "ReferenceError: Can't find variable: x" >+test/language/expressions/prefix-decrement/S11.4.5_A5_T3.js: >+ default: "ReferenceError: Can't find variable: x" >+test/language/expressions/prefix-decrement/S11.4.5_A5_T4.js: >+ default: "ReferenceError: Can't find variable: x" >+test/language/expressions/prefix-decrement/S11.4.5_A5_T5.js: >+ default: "ReferenceError: Can't find variable: x" >+ strict mode: "TypeError: undefined is not an object (evaluating 'delete this.x')" >+test/language/expressions/prefix-decrement/S11.4.5_A6_T3.js: >+ default: 'Test262Error: Expected true but got false' >+ strict mode: 'Test262Error: Expected true but got false' >+test/language/expressions/prefix-decrement/non-simple.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/expressions/prefix-decrement/target-cover-newtarget.js: >+ default: "SyntaxError: new.target can't come after a prefix operator." >+ strict mode: "SyntaxError: new.target can't come after a prefix operator." >+test/language/expressions/prefix-decrement/target-cover-yieldexpr.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/expressions/prefix-decrement/target-newtarget.js: >+ default: "SyntaxError: new.target can't come after a prefix operator." >+ strict mode: "SyntaxError: new.target can't come after a prefix operator." >+test/language/expressions/prefix-increment/S11.4.4_A5_T1.js: >+ default: "ReferenceError: Can't find variable: x" >+test/language/expressions/prefix-increment/S11.4.4_A5_T2.js: >+ default: "ReferenceError: Can't find variable: x" >+test/language/expressions/prefix-increment/S11.4.4_A5_T3.js: >+ default: "ReferenceError: Can't find variable: x" >+test/language/expressions/prefix-increment/S11.4.4_A5_T4.js: >+ default: "ReferenceError: Can't find variable: x" >+test/language/expressions/prefix-increment/S11.4.4_A5_T5.js: >+ default: "ReferenceError: Can't find variable: x" >+ strict mode: "TypeError: undefined is not an object (evaluating 'delete this.x')" >+test/language/expressions/prefix-increment/S11.4.4_A6_T3.js: >+ default: 'Test262Error: Expected true but got false' >+ strict mode: 'Test262Error: Expected true but got false' >+test/language/expressions/prefix-increment/non-simple.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/expressions/prefix-increment/target-cover-newtarget.js: >+ default: "SyntaxError: new.target can't come after a prefix operator." >+ strict mode: "SyntaxError: new.target can't come after a prefix operator." >+test/language/expressions/prefix-increment/target-cover-yieldexpr.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/expressions/prefix-increment/target-newtarget.js: >+ default: "SyntaxError: new.target can't come after a prefix operator." >+ strict mode: "SyntaxError: new.target can't come after a prefix operator." >+test/language/expressions/super/call-proto-not-ctor.js: >+ default: 'Test262Error: did not perform ArgumentsListEvaluation Expected SameValue(ëtrueû, ëfalseû) to be true' >+ strict mode: 'Test262Error: did not perform ArgumentsListEvaluation Expected SameValue(ëtrueû, ëfalseû) to be true' >+test/language/expressions/this/S11.1.1_A1.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/expressions/yield/star-iterable.js: >+ default: 'Test262Error: First result `done` flag Expected SameValue(ëfalseû, ëundefinedû) to be true' >+ strict mode: 'Test262Error: First result `done` flag Expected SameValue(ëfalseû, ëundefinedû) to be true' >+test/language/expressions/yield/star-rhs-iter-nrml-res-done-no-value.js: >+ default: 'Test262Error: access count (first iteration) Expected SameValue(ë1û, ë0û) to be true' >+ strict mode: 'Test262Error: access count (first iteration) Expected SameValue(ë1û, ë0û) to be true' >+test/language/expressions/yield/star-rhs-iter-rtrn-res-done-no-value.js: >+ default: 'Test262Error: access count (second iteration) Expected SameValue(ë1û, ë0û) to be true' >+ strict mode: 'Test262Error: access count (second iteration) Expected SameValue(ë1û, ë0û) to be true' >+test/language/expressions/yield/star-rhs-iter-thrw-res-done-no-value.js: >+ default: 'Test262Error: access count (second iteration) Expected SameValue(ë1û, ë0û) to be true' >+ strict mode: 'Test262Error: access count (second iteration) Expected SameValue(ë1û, ë0û) to be true' >+test/language/function-code/each-param-has-own-non-shared-eval-scope.js: >+ default: 'Test262Error: Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/language/function-code/each-param-has-own-scope.js: >+ default: 'Test262Error: Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/language/function-code/eval-param-env-with-computed-key.js: >+ default: 'Test262Error: Expected SameValue(ëinnerû, ëouterû) to be true' >+test/language/function-code/eval-param-env-with-prop-initializer.js: >+ default: 'Test262Error: Expected SameValue(ëinnerû, ëouterû) to be true' >+test/language/global-code/script-decl-func-err-non-configurable.js: >+ default: 'Test262Error: writable, non-enumerable data property Expected a TypeError to be thrown but no exception was thrown at all' >+ strict mode: 'Test262Error: writable, non-enumerable data property Expected a TypeError to be thrown but no exception was thrown at all' >+test/language/global-code/script-decl-func-err-non-extensible.js: >+ default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >+ strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >+test/language/global-code/script-decl-var-err.js: >+ default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >+ strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >+test/language/identifiers/other_id_continue-escaped.js: >+ default: "SyntaxError: Invalid unicode escape in identifier: 'a\\u2118'" >+ strict mode: "SyntaxError: Invalid unicode escape in identifier: 'a\\u2118'" >+test/language/identifiers/other_id_continue.js: >+ default: "SyntaxError: Invalid character '\\u2118'" >+ strict mode: "SyntaxError: Invalid character '\\u2118'" >+test/language/identifiers/other_id_start-escaped.js: >+ default: "SyntaxError: Invalid unicode escape in identifier: '\\u2118'" >+ strict mode: "SyntaxError: Invalid unicode escape in identifier: '\\u2118'" >+test/language/identifiers/other_id_start.js: >+ default: "SyntaxError: Invalid character '\\u2118'" >+ strict mode: "SyntaxError: Invalid character '\\u2118'" >+test/language/identifiers/val-yield-strict.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: "SyntaxError: Cannot use 'yield' as a variable name in strict mode." >+test/language/identifiers/vertical-tilde-continue-escaped.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/identifiers/vertical-tilde-continue.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/identifiers/vertical-tilde-start-escaped.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/identifiers/vertical-tilde-start.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/line-terminators/S7.3_A2.3.js: >+ default: 'Test262Error: Expected a SyntaxError to be thrown but no exception was thrown at all' >+ strict mode: 'Test262Error: Expected a SyntaxError to be thrown but no exception was thrown at all' >+test/language/line-terminators/S7.3_A2.4.js: >+ default: 'Test262Error: Expected a SyntaxError to be thrown but no exception was thrown at all' >+ strict mode: 'Test262Error: Expected a SyntaxError to be thrown but no exception was thrown at all' >+test/language/literals/numeric/numeric-separator-literal-bil-bd-nsl-bd.js: >+ default: 'SyntaxError: No space between binary literal and identifier' >+ strict mode: 'SyntaxError: No space between binary literal and identifier' >+test/language/literals/numeric/numeric-separator-literal-bil-bd-nsl-bds.js: >+ default: 'SyntaxError: No space between binary literal and identifier' >+ strict mode: 'SyntaxError: No space between binary literal and identifier' >+test/language/literals/numeric/numeric-separator-literal-bil-bds-nsl-bd.js: >+ default: 'SyntaxError: No space between binary literal and identifier' >+ strict mode: 'SyntaxError: No space between binary literal and identifier' >+test/language/literals/numeric/numeric-separator-literal-bil-bds-nsl-bds.js: >+ default: 'SyntaxError: No space between binary literal and identifier' >+ strict mode: 'SyntaxError: No space between binary literal and identifier' >+test/language/literals/numeric/numeric-separator-literal-dd-dot-dd-ep-sign-minus-dd-nsl-dd.js: >+ default: 'SyntaxError: No identifiers allowed directly after numeric literal' >+ strict mode: 'SyntaxError: No identifiers allowed directly after numeric literal' >+test/language/literals/numeric/numeric-separator-literal-dd-dot-dd-ep-sign-minus-dds-nsl-dd.js: >+ default: 'SyntaxError: No identifiers allowed directly after numeric literal' >+ strict mode: 'SyntaxError: No identifiers allowed directly after numeric literal' >+test/language/literals/numeric/numeric-separator-literal-dd-dot-dd-ep-sign-plus-dd-nsl-dd.js: >+ default: 'SyntaxError: No identifiers allowed directly after numeric literal' >+ strict mode: 'SyntaxError: No identifiers allowed directly after numeric literal' >+test/language/literals/numeric/numeric-separator-literal-dd-dot-dd-ep-sign-plus-dds-nsl-dd.js: >+ default: 'SyntaxError: No identifiers allowed directly after numeric literal' >+ strict mode: 'SyntaxError: No identifiers allowed directly after numeric literal' >+test/language/literals/numeric/numeric-separator-literal-dd-nsl-dd-one-of.js: >+ default: 'SyntaxError: No identifiers allowed directly after numeric literal' >+ strict mode: 'SyntaxError: No identifiers allowed directly after numeric literal' >+test/language/literals/numeric/numeric-separator-literal-dds-dot-dd-nsl-dd-ep-dd.js: >+ default: 'SyntaxError: No identifiers allowed directly after numeric literal' >+ strict mode: 'SyntaxError: No identifiers allowed directly after numeric literal' >+test/language/literals/numeric/numeric-separator-literal-dds-nsl-dd.js: >+ default: 'SyntaxError: No identifiers allowed directly after numeric literal' >+ strict mode: 'SyntaxError: No identifiers allowed directly after numeric literal' >+test/language/literals/numeric/numeric-separator-literal-dot-dd-nsl-dd-ep.js: >+ default: 'SyntaxError: No identifiers allowed directly after numeric literal' >+ strict mode: 'SyntaxError: No identifiers allowed directly after numeric literal' >+test/language/literals/numeric/numeric-separator-literal-dot-dd-nsl-dds-ep.js: >+ default: 'SyntaxError: No identifiers allowed directly after numeric literal' >+ strict mode: 'SyntaxError: No identifiers allowed directly after numeric literal' >+test/language/literals/numeric/numeric-separator-literal-dot-dds-nsl-dd-ep.js: >+ default: 'SyntaxError: No identifiers allowed directly after numeric literal' >+ strict mode: 'SyntaxError: No identifiers allowed directly after numeric literal' >+test/language/literals/numeric/numeric-separator-literal-dot-dds-nsl-dds-ep.js: >+ default: 'SyntaxError: No identifiers allowed directly after numeric literal' >+ strict mode: 'SyntaxError: No identifiers allowed directly after numeric literal' >+test/language/literals/numeric/numeric-separator-literal-hil-hd-nsl-hd.js: >+ default: 'SyntaxError: No space between hexadecimal literal and identifier' >+ strict mode: 'SyntaxError: No space between hexadecimal literal and identifier' >+test/language/literals/numeric/numeric-separator-literal-hil-hd-nsl-hds.js: >+ default: 'SyntaxError: No space between hexadecimal literal and identifier' >+ strict mode: 'SyntaxError: No space between hexadecimal literal and identifier' >+test/language/literals/numeric/numeric-separator-literal-hil-hds-nsl-hd.js: >+ default: 'SyntaxError: No space between hexadecimal literal and identifier' >+ strict mode: 'SyntaxError: No space between hexadecimal literal and identifier' >+test/language/literals/numeric/numeric-separator-literal-hil-hds-nsl-hds.js: >+ default: 'SyntaxError: No space between hexadecimal literal and identifier' >+ strict mode: 'SyntaxError: No space between hexadecimal literal and identifier' >+test/language/literals/numeric/numeric-separator-literal-hil-od-nsl-od-one-of.js: >+ default: 'SyntaxError: No space between hexadecimal literal and identifier' >+ strict mode: 'SyntaxError: No space between hexadecimal literal and identifier' >+test/language/literals/numeric/numeric-separator-literal-nzd-nsl-dd-one-of.js: >+ default: 'SyntaxError: No identifiers allowed directly after numeric literal' >+ strict mode: 'SyntaxError: No identifiers allowed directly after numeric literal' >+test/language/literals/numeric/numeric-separator-literal-nzd-nsl-dd.js: >+ default: 'SyntaxError: No identifiers allowed directly after numeric literal' >+ strict mode: 'SyntaxError: No identifiers allowed directly after numeric literal' >+test/language/literals/numeric/numeric-separator-literal-nzd-nsl-dds.js: >+ default: 'SyntaxError: No identifiers allowed directly after numeric literal' >+ strict mode: 'SyntaxError: No identifiers allowed directly after numeric literal' >+test/language/literals/numeric/numeric-separator-literal-oil-od-nsl-od-one-of.js: >+ default: 'SyntaxError: No space between octal literal and identifier' >+ strict mode: 'SyntaxError: No space between octal literal and identifier' >+test/language/literals/numeric/numeric-separator-literal-oil-od-nsl-od.js: >+ default: 'SyntaxError: No space between octal literal and identifier' >+ strict mode: 'SyntaxError: No space between octal literal and identifier' >+test/language/literals/numeric/numeric-separator-literal-oil-od-nsl-ods.js: >+ default: 'SyntaxError: No space between octal literal and identifier' >+ strict mode: 'SyntaxError: No space between octal literal and identifier' >+test/language/literals/numeric/numeric-separator-literal-oil-ods-nsl-od.js: >+ default: 'SyntaxError: No space between octal literal and identifier' >+ strict mode: 'SyntaxError: No space between octal literal and identifier' >+test/language/literals/numeric/numeric-separator-literal-oil-ods-nsl-ods.js: >+ default: 'SyntaxError: No space between octal literal and identifier' >+ strict mode: 'SyntaxError: No space between octal literal and identifier' >+test/language/literals/numeric/numeric-separator-literal-sign-minus-dds-nsl-dd.js: >+ default: 'SyntaxError: No identifiers allowed directly after numeric literal' >+ strict mode: 'SyntaxError: No identifiers allowed directly after numeric literal' >+test/language/literals/numeric/numeric-separator-literal-sign-plus-dds-nsl-dd.js: >+ default: 'SyntaxError: No identifiers allowed directly after numeric literal' >+ strict mode: 'SyntaxError: No identifiers allowed directly after numeric literal' >+test/language/literals/regexp/early-err-bad-flag.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/literals/regexp/early-err-dup-flag.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/literals/regexp/u-dec-esc.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/literals/regexp/u-invalid-class-escape.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/literals/regexp/u-invalid-extended-pattern-char.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/literals/regexp/u-invalid-legacy-octal-escape.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/literals/regexp/u-invalid-non-empty-class-ranges-no-dash-a.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/literals/regexp/u-invalid-non-empty-class-ranges-no-dash-ab.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/literals/regexp/u-invalid-non-empty-class-ranges-no-dash-b.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/literals/regexp/u-invalid-non-empty-class-ranges.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/literals/regexp/u-invalid-oob-decimal-escape.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/literals/regexp/u-invalid-quantifiable-assertion.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/module-code/instn-resolve-order-depth.js: >+ module: "SyntaxError: 'break' is only valid inside a switch or loop statement." >+test/language/module-code/instn-resolve-order-src.js: >+ module: "SyntaxError: 'break' is only valid inside a switch or loop statement." >+test/language/module-code/namespace/internals/define-own-property.js: >+ module: 'Test262Error: Reflect.defineProperty: local1 Expected SameValue(ëfalseû, ëtrueû) to be true' >+test/language/module-code/namespace/internals/object-keys-binding-uninit.js: >+ module: 'Test262Error: Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/language/module-code/namespace/internals/set.js: >+ module: 'Test262Error: Reflect.defineProperty: local1 Expected SameValue(ëfalseû, ëtrueû) to be true' >+test/language/module-code/parse-err-hoist-lex-fun.js: >+ module: 'Test262: This statement should not be evaluated.' >+test/language/module-code/parse-err-hoist-lex-gen.js: >+ module: 'Test262: This statement should not be evaluated.' >+test/language/module-code/parse-err-reference.js: >+ module: 'Test262: This statement should not be evaluated.' >+test/language/module-code/privatename-valid-no-earlyerr.js: >+ module: "SyntaxError: Invalid character: '#'" >+test/language/statements/class/classelementname-abrupt-completion.js: >+ default: "SyntaxError: Unexpected token '}'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '}'. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/definition/methods-gen-yield-as-function-expression-binding-identifier.js: >+ default: "SyntaxError: Cannot use 'yield' as a function name in strict mode." >+ strict mode: "SyntaxError: Cannot use 'yield' as a function name in strict mode." >+test/language/statements/class/definition/methods-gen-yield-as-identifier-in-nested-function.js: >+ default: "SyntaxError: Unexpected keyword 'yield'. Cannot use yield expression out of generator." >+ strict mode: "SyntaxError: Unexpected keyword 'yield'. Cannot use yield expression out of generator." >+test/language/statements/class/definition/methods-gen-yield-as-logical-or-expression.js: >+ default: "SyntaxError: Unexpected token '?'" >+ strict mode: "SyntaxError: Unexpected token '?'" >+test/language/statements/class/definition/methods-gen-yield-as-parameter.js: >+ default: "SyntaxError: Cannot use 'yield' as a parameter name in strict mode." >+ strict mode: "SyntaxError: Cannot use 'yield' as a parameter name in strict mode." >+test/language/statements/class/definition/methods-gen-yield-star-after-newline.js: >+ default: "SyntaxError: Unexpected token '*'" >+ strict mode: "SyntaxError: Unexpected token '*'" >+test/language/statements/class/definition/methods-gen-yield-weak-binding.js: >+ default: "SyntaxError: Unexpected number '3'" >+ strict mode: "SyntaxError: Unexpected number '3'" >+test/language/statements/class/fielddefinition-initializer-abrupt-completion.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-after-same-line-gen-computed-names.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-after-same-line-gen-computed-symbol-names.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-after-same-line-gen-literal-names.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-after-same-line-gen-private-names.js: >+ default: "SyntaxError: Invalid character: '#'" >+ strict mode: "SyntaxError: Invalid character: '#'" >+test/language/statements/class/fields-after-same-line-gen-string-literal-names.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-after-same-line-method-computed-names.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-after-same-line-method-computed-symbol-names.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-after-same-line-method-literal-names.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-after-same-line-method-private-names.js: >+ default: "SyntaxError: Invalid character: '#'" >+ strict mode: "SyntaxError: Invalid character: '#'" >+test/language/statements/class/fields-after-same-line-method-string-literal-names.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-after-same-line-static-async-gen-computed-names.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-after-same-line-static-async-gen-computed-symbol-names.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-after-same-line-static-async-gen-literal-names.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-after-same-line-static-async-gen-private-names.js: >+ default: "SyntaxError: Invalid character: '#'" >+ strict mode: "SyntaxError: Invalid character: '#'" >+test/language/statements/class/fields-after-same-line-static-async-gen-string-literal-names.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-after-same-line-static-async-method-computed-names.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-after-same-line-static-async-method-computed-symbol-names.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-after-same-line-static-async-method-literal-names.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-after-same-line-static-async-method-private-names.js: >+ default: "SyntaxError: Invalid character: '#'" >+ strict mode: "SyntaxError: Invalid character: '#'" >+test/language/statements/class/fields-after-same-line-static-async-method-string-literal-names.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-after-same-line-static-gen-computed-names.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-after-same-line-static-gen-computed-symbol-names.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-after-same-line-static-gen-literal-names.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-after-same-line-static-gen-private-names.js: >+ default: "SyntaxError: Invalid character: '#'" >+ strict mode: "SyntaxError: Invalid character: '#'" >+test/language/statements/class/fields-after-same-line-static-gen-string-literal-names.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-after-same-line-static-method-computed-names.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-after-same-line-static-method-computed-symbol-names.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-after-same-line-static-method-literal-names.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-after-same-line-static-method-private-names.js: >+ default: "SyntaxError: Invalid character: '#'" >+ strict mode: "SyntaxError: Invalid character: '#'" >+test/language/statements/class/fields-after-same-line-static-method-string-literal-names.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-asi-1.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-asi-2.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-asi-5.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-computed-name-propname-constructor.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-computed-name-toprimitive-symbol.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-computed-name-toprimitive.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-computed-variable-name-propname-constructor.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-ctor-called-after-fields-init.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-derived-cls-direct-eval-err-contains-supercall-1.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-derived-cls-direct-eval-err-contains-supercall-2.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-derived-cls-direct-eval-err-contains-supercall.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-derived-cls-direct-eval-err-contains-superproperty-1.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-derived-cls-direct-eval-err-contains-superproperty-2.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-derived-cls-indirect-eval-err-contains-supercall-1.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-derived-cls-indirect-eval-err-contains-supercall-2.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-derived-cls-indirect-eval-err-contains-supercall.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-derived-cls-indirect-eval-err-contains-superproperty-1.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-derived-cls-indirect-eval-err-contains-superproperty-2.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-direct-eval-err-contains-arguments.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-direct-eval-err-contains-newtarget.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-evaluation-error-computed-name-referenceerror.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-evaluation-error-computed-name-toprimitive-err.js: >+ default: "SyntaxError: Unexpected token '}'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '}'. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-evaluation-error-computed-name-tostring-err.js: >+ default: "SyntaxError: Unexpected token '}'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '}'. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-evaluation-error-computed-name-valueof-err.js: >+ default: "SyntaxError: Unexpected token '}'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '}'. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-indirect-eval-err-contains-arguments.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-indirect-eval-err-contains-newtarget.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-init-err-evaluation.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-init-value-defined-after-class.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-init-value-incremental.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-multiple-definitions-computed-names.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-multiple-definitions-computed-symbol-names.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-multiple-definitions-literal-names.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-multiple-definitions-private-names.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-multiple-definitions-string-literal-names.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-multiple-stacked-definitions-computed-names.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-multiple-stacked-definitions-computed-symbol-names.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-multiple-stacked-definitions-literal-names.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-multiple-stacked-definitions-private-names.js: >+ default: "SyntaxError: Invalid character: '#'" >+ strict mode: "SyntaxError: Invalid character: '#'" >+test/language/statements/class/fields-multiple-stacked-definitions-string-literal-names.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-new-no-sc-line-method-computed-names.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-new-no-sc-line-method-computed-symbol-names.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-new-no-sc-line-method-literal-names.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-new-no-sc-line-method-private-names.js: >+ default: "SyntaxError: Invalid character: '#'" >+ strict mode: "SyntaxError: Invalid character: '#'" >+test/language/statements/class/fields-new-no-sc-line-method-string-literal-names.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-new-sc-line-gen-computed-names.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-new-sc-line-gen-computed-symbol-names.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-new-sc-line-gen-literal-names.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-new-sc-line-gen-private-names.js: >+ default: "SyntaxError: Invalid character: '#'" >+ strict mode: "SyntaxError: Invalid character: '#'" >+test/language/statements/class/fields-new-sc-line-gen-string-literal-names.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-new-sc-line-method-computed-names.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-new-sc-line-method-computed-symbol-names.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-new-sc-line-method-literal-names.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-new-sc-line-method-private-names.js: >+ default: "SyntaxError: Invalid character: '#'" >+ strict mode: "SyntaxError: Invalid character: '#'" >+test/language/statements/class/fields-new-sc-line-method-string-literal-names.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-redeclaration-symbol.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-redeclaration.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-regular-definitions-computed-names.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-regular-definitions-computed-symbol-names.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-regular-definitions-literal-names.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-regular-definitions-private-names.js: >+ default: "SyntaxError: Invalid character: '#'" >+ strict mode: "SyntaxError: Invalid character: '#'" >+test/language/statements/class/fields-regular-definitions-string-literal-names.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-same-line-async-gen-computed-names.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-same-line-async-gen-computed-symbol-names.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-same-line-async-gen-literal-names.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-same-line-async-gen-private-names.js: >+ default: "SyntaxError: Invalid character: '#'" >+ strict mode: "SyntaxError: Invalid character: '#'" >+test/language/statements/class/fields-same-line-async-gen-string-literal-names.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-same-line-async-method-computed-names.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-same-line-async-method-computed-symbol-names.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-same-line-async-method-literal-names.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-same-line-async-method-private-names.js: >+ default: "SyntaxError: Invalid character: '#'" >+ strict mode: "SyntaxError: Invalid character: '#'" >+test/language/statements/class/fields-same-line-async-method-string-literal-names.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-same-line-gen-computed-names.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-same-line-gen-computed-symbol-names.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-same-line-gen-literal-names.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-same-line-gen-private-names.js: >+ default: "SyntaxError: Invalid character: '#'" >+ strict mode: "SyntaxError: Invalid character: '#'" >+test/language/statements/class/fields-same-line-gen-string-literal-names.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-same-line-method-computed-names.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-same-line-method-computed-symbol-names.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-same-line-method-literal-names.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-same-line-method-private-names.js: >+ default: "SyntaxError: Invalid character: '#'" >+ strict mode: "SyntaxError: Invalid character: '#'" >+test/language/statements/class/fields-same-line-method-string-literal-names.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-wrapped-in-sc-computed-names.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-wrapped-in-sc-computed-symbol-names.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-wrapped-in-sc-literal-names.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/fields-wrapped-in-sc-private-names.js: >+ default: "SyntaxError: Invalid character: '#'" >+ strict mode: "SyntaxError: Invalid character: '#'" >+test/language/statements/class/fields-wrapped-in-sc-string-literal-names.js: >+ default: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token ';'. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/privatefieldadd-typeerror.js: >+ default: "SyntaxError: Invalid character: '#'" >+ strict mode: "SyntaxError: Invalid character: '#'" >+test/language/statements/class/privatefieldget-success-1.js: >+ default: "SyntaxError: Invalid character: '#'" >+ strict mode: "SyntaxError: Invalid character: '#'" >+test/language/statements/class/privatefieldget-success-2.js: >+ default: "SyntaxError: Invalid character: '#'" >+ strict mode: "SyntaxError: Invalid character: '#'" >+test/language/statements/class/privatefieldget-success-3.js: >+ default: "SyntaxError: Invalid character: '#'" >+ strict mode: "SyntaxError: Invalid character: '#'" >+test/language/statements/class/privatefieldget-success-4.js: >+ default: "SyntaxError: Invalid character: '#'" >+ strict mode: "SyntaxError: Invalid character: '#'" >+test/language/statements/class/privatefieldget-success-5.js: >+ default: "SyntaxError: Invalid character: '#'" >+ strict mode: "SyntaxError: Invalid character: '#'" >+test/language/statements/class/privatefieldget-typeerror-1.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/privatefieldget-typeerror-2.js: >+ default: "SyntaxError: Invalid character: '#'" >+ strict mode: "SyntaxError: Invalid character: '#'" >+test/language/statements/class/privatefieldget-typeerror-3.js: >+ default: "SyntaxError: Invalid character: '#'" >+ strict mode: "SyntaxError: Invalid character: '#'" >+test/language/statements/class/privatefieldget-typeerror-4.js: >+ default: "SyntaxError: Invalid character: '#'" >+ strict mode: "SyntaxError: Invalid character: '#'" >+test/language/statements/class/privatefieldget-typeerror-5.js: >+ default: "SyntaxError: Invalid character: '#'" >+ strict mode: "SyntaxError: Invalid character: '#'" >+test/language/statements/class/privatefieldset-typeerror-1.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/privatefieldset-typeerror-2.js: >+ default: "SyntaxError: Invalid character: '#'" >+ strict mode: "SyntaxError: Invalid character: '#'" >+test/language/statements/class/privatefieldset-typeerror-3.js: >+ default: "SyntaxError: Invalid character: '#'" >+ strict mode: "SyntaxError: Invalid character: '#'" >+test/language/statements/class/privatefieldset-typeerror-4.js: >+ default: "SyntaxError: Invalid character: '#'" >+ strict mode: "SyntaxError: Invalid character: '#'" >+test/language/statements/class/privatefieldset-typeerror-5.js: >+ default: "SyntaxError: Invalid character: '#'" >+ strict mode: "SyntaxError: Invalid character: '#'" >+test/language/statements/class/privatename-not-valid-eval-earlyerr-3.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/statements/class/privatename-not-valid-eval-earlyerr-4.js: >+ default: "SyntaxError: Invalid character: '#'" >+ strict mode: "SyntaxError: Invalid character: '#'" >+test/language/statements/class/privatename-not-valid-eval-earlyerr-5.js: >+ default: "SyntaxError: Invalid character: '#'" >+ strict mode: "SyntaxError: Invalid character: '#'" >+test/language/statements/class/privatename-valid-no-earlyerr.js: >+ default: "SyntaxError: Invalid character: '#'" >+ strict mode: "SyntaxError: Invalid character: '#'" >+test/language/statements/class/subclass/bound-function.js: >+ default: 'Test262Error: Expected SameValue(ë[object Object]û, ë[object Object]û) to be true' >+ strict mode: 'Test262Error: Expected SameValue(ë[object Object]û, ë[object Object]û) to be true' >+test/language/statements/class/subclass/builtin-objects/ArrayBuffer/regular-subclassing.js: >+ default: 'Test262Error: Expected true but got false' >+ strict mode: 'Test262Error: Expected true but got false' >+test/language/statements/class/subclass/class-definition-null-proto-super.js: >+ default: 'Test262Error: Expected SameValue(ë1û, ë0û) to be true' >+ strict mode: 'Test262Error: Expected SameValue(ë1û, ë0û) to be true' >+test/language/statements/class/subclass/class-definition-superclass-generator.js: >+ default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >+ strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >+test/language/statements/class/super-fielddefinition-initializer-abrupt-completion.js: >+ default: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+ strict mode: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." >+test/language/statements/const/redeclaration-error-from-within-strict-mode-function-const.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/statements/do-while/let-array-with-newline.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/statements/for-await-of/let-array-with-newline.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/statements/for-in/12.6.4-2.js: >+ default: 'Test262Error: accessedProp Expected SameValue(ëtrueû, ëfalseû) to be true' >+ strict mode: 'Test262Error: accessedProp Expected SameValue(ëtrueû, ëfalseû) to be true' >+test/language/statements/for-in/dstr-array-elem-nested-array-invalid.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/statements/for-in/dstr-array-elem-nested-obj-invalid.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/statements/for-in/dstr-array-elem-target-simple-strict.js: >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/statements/for-in/dstr-array-rest-before-element.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/statements/for-in/dstr-array-rest-before-elision.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/statements/for-in/dstr-array-rest-before-rest.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/statements/for-in/dstr-array-rest-elision-invalid.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/statements/for-in/dstr-array-rest-init.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/statements/for-in/dstr-array-rest-nested-array-invalid.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/statements/for-in/dstr-array-rest-nested-obj-invalid.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/statements/for-in/dstr-obj-id-simple-strict.js: >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/statements/for-in/dstr-obj-prop-nested-array-invalid.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/statements/for-in/dstr-obj-prop-nested-obj-invalid.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/statements/for-in/dstr-obj-rest-not-last-element-invalid.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/statements/for-in/head-const-bound-names-in-stmt.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/statements/for-in/head-let-bound-names-in-stmt.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/statements/for-in/head-lhs-cover-non-asnmt-trgt.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/statements/for-in/head-lhs-invalid-asnmt-ptrn-ary.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/statements/for-in/head-lhs-invalid-asnmt-ptrn-obj.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/statements/for-in/head-lhs-let.js: >+ default: "SyntaxError: Cannot use the keyword 'in' as a lexical variable name." >+test/language/statements/for-in/head-lhs-non-asnmt-trgt.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/statements/for-in/identifier-let-allowed-as-lefthandside-expression-not-strict.js: >+ default: "SyntaxError: Cannot use the keyword 'in' as a lexical variable name." >+test/language/statements/for-in/let-array-with-newline.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/statements/for-in/scope-body-lex-open.js: >+ default: 'Test262Error: Expected a ReferenceError to be thrown but no exception was thrown at all' >+ strict mode: 'Test262Error: Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/language/statements/for-in/scope-head-lex-close.js: >+ default: 'Test262Error: Expected a ReferenceError to be thrown but no exception was thrown at all' >+ strict mode: 'Test262Error: Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/language/statements/for-in/scope-head-lex-open.js: >+ default: 'Test262Error: Expected a ReferenceError to be thrown but no exception was thrown at all' >+ strict mode: 'Test262Error: Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/language/statements/for-of/dstr-array-elem-iter-rtrn-close-err.js: >+ default: "TypeError: undefined is not a function (near '...[ {}[ yield ] ]...')" >+ strict mode: "TypeError: undefined is not a function (near '...[ {}[ yield ] ]...')" >+test/language/statements/for-of/dstr-array-elem-iter-rtrn-close-null.js: >+ default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >+ strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >+test/language/statements/for-of/dstr-array-elem-iter-rtrn-close.js: >+ default: 'Test262Error: Expected SameValue(ë0û, ë1û) to be true' >+ strict mode: 'Test262Error: Expected SameValue(ë0û, ë1û) to be true' >+test/language/statements/for-of/dstr-array-elem-iter-thrw-close-err.js: >+ default: 'Test262Error: Expected SameValue(ë1û, ë0û) to be true' >+ strict mode: 'Test262Error: Expected SameValue(ë1û, ë0û) to be true' >+test/language/statements/for-of/dstr-array-elem-iter-thrw-close.js: >+ default: 'Test262Error: Expected SameValue(ë1û, ë0û) to be true' >+ strict mode: 'Test262Error: Expected SameValue(ë1û, ë0û) to be true' >+test/language/statements/for-of/dstr-array-elem-nested-array-invalid.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/statements/for-of/dstr-array-elem-nested-obj-invalid.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/statements/for-of/dstr-array-elem-target-simple-strict.js: >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/statements/for-of/dstr-array-elem-trlg-iter-list-rtrn-close-err.js: >+ default: 'Test262Error: Expected a Test262Error to be thrown but no exception was thrown at all' >+ strict mode: 'Test262Error: Expected a Test262Error to be thrown but no exception was thrown at all' >+test/language/statements/for-of/dstr-array-elem-trlg-iter-list-rtrn-close-null.js: >+ default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >+ strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >+test/language/statements/for-of/dstr-array-elem-trlg-iter-list-rtrn-close.js: >+ default: 'Test262Error: Expected SameValue(ë0û, ë1û) to be true' >+ strict mode: 'Test262Error: Expected SameValue(ë0û, ë1û) to be true' >+test/language/statements/for-of/dstr-array-elem-trlg-iter-list-thrw-close-err.js: >+ default: 'Test262Error: Expected SameValue(ë1û, ë0û) to be true' >+ strict mode: 'Test262Error: Expected SameValue(ë1û, ë0û) to be true' >+test/language/statements/for-of/dstr-array-elem-trlg-iter-list-thrw-close.js: >+ default: 'Test262Error: Expected SameValue(ë1û, ë0û) to be true' >+ strict mode: 'Test262Error: Expected SameValue(ë1û, ë0û) to be true' >+test/language/statements/for-of/dstr-array-elem-trlg-iter-rest-rtrn-close-err.js: >+ default: 'Test262Error: Expected a Test262Error to be thrown but no exception was thrown at all' >+ strict mode: 'Test262Error: Expected a Test262Error to be thrown but no exception was thrown at all' >+test/language/statements/for-of/dstr-array-elem-trlg-iter-rest-rtrn-close-null.js: >+ default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >+ strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >+test/language/statements/for-of/dstr-array-elem-trlg-iter-rest-rtrn-close.js: >+ default: 'Test262Error: Expected SameValue(ë11û, ë1û) to be true' >+ strict mode: 'Test262Error: Expected SameValue(ë11û, ë1û) to be true' >+test/language/statements/for-of/dstr-array-elem-trlg-iter-rest-thrw-close-err.js: >+ default: 'Test262Error: Expected SameValue(ë11û, ë1û) to be true' >+ strict mode: 'Test262Error: Expected SameValue(ë11û, ë1û) to be true' >+test/language/statements/for-of/dstr-array-elem-trlg-iter-rest-thrw-close.js: >+ default: 'Test262Error: Expected SameValue(ë11û, ë1û) to be true' >+ strict mode: 'Test262Error: Expected SameValue(ë11û, ë1û) to be true' >+test/language/statements/for-of/dstr-array-rest-before-element.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/statements/for-of/dstr-array-rest-before-elision.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/statements/for-of/dstr-array-rest-before-rest.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/statements/for-of/dstr-array-rest-elision-invalid.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/statements/for-of/dstr-array-rest-init.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/statements/for-of/dstr-array-rest-iter-rtrn-close-err.js: >+ default: "TypeError: undefined is not a function (near '...[...{}[yield]]...')" >+ strict mode: "TypeError: undefined is not a function (near '...[...{}[yield]]...')" >+test/language/statements/for-of/dstr-array-rest-iter-rtrn-close-null.js: >+ default: "TypeError: undefined is not a function (near '...[...{}[yield]]...')" >+ strict mode: "TypeError: undefined is not a function (near '...[...{}[yield]]...')" >+test/language/statements/for-of/dstr-array-rest-iter-rtrn-close.js: >+ default: "TypeError: undefined is not a function (near '...[...{}[yield]]...')" >+ strict mode: "TypeError: undefined is not a function (near '...[...{}[yield]]...')" >+test/language/statements/for-of/dstr-array-rest-iter-thrw-close-err.js: >+ default: 'Test262Error: Expected SameValue(ë11û, ë0û) to be true' >+ strict mode: 'Test262Error: Expected SameValue(ë11û, ë0û) to be true' >+test/language/statements/for-of/dstr-array-rest-iter-thrw-close.js: >+ default: 'Test262Error: Expected SameValue(ë11û, ë0û) to be true' >+ strict mode: 'Test262Error: Expected SameValue(ë11û, ë0û) to be true' >+test/language/statements/for-of/dstr-array-rest-lref-err.js: >+ default: 'Test262Error: Expected SameValue(ë1û, ë0û) to be true' >+ strict mode: 'Test262Error: Expected SameValue(ë1û, ë0û) to be true' >+test/language/statements/for-of/dstr-array-rest-nested-array-invalid.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/statements/for-of/dstr-array-rest-nested-obj-invalid.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/statements/for-of/dstr-obj-id-put-const.js: >+ default: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >+ strict mode: 'Test262Error: Expected a TypeError to be thrown but no exception was thrown at all' >+test/language/statements/for-of/dstr-obj-id-put-let.js: >+ default: 'Test262Error: Expected a ReferenceError to be thrown but no exception was thrown at all' >+ strict mode: 'Test262Error: Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/language/statements/for-of/dstr-obj-id-simple-strict.js: >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/statements/for-of/dstr-obj-prop-nested-array-invalid.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/statements/for-of/dstr-obj-prop-nested-obj-invalid.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/statements/for-of/dstr-obj-rest-not-last-element-invalid.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/statements/for-of/head-const-bound-names-in-stmt.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/statements/for-of/head-decl-no-expr.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/statements/for-of/head-expr-no-expr.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/statements/for-of/head-let-bound-names-in-stmt.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/statements/for-of/head-lhs-cover-non-asnmt-trgt.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/statements/for-of/head-lhs-invalid-asnmt-ptrn-ary.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/statements/for-of/head-lhs-invalid-asnmt-ptrn-obj.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/statements/for-of/head-lhs-non-asnmt-trgt.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/statements/for-of/head-var-no-expr.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/statements/for-of/let-array-with-newline.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/statements/for/head-let-bound-names-in-stmt.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/statements/for/head-lhs-let.js: >+ default: "SyntaxError: Unexpected token ';'. Expected a parameter pattern or a ')' in parameter list." >+test/language/statements/for/let-array-with-newline.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/statements/for/scope-body-lex-open.js: >+ default: 'Test262Error: Expected SameValue(ëinsideû, ëoutsideû) to be true' >+ strict mode: 'Test262Error: Expected SameValue(ëinsideû, ëoutsideû) to be true' >+test/language/statements/function/scope-body-lex-distinct.js: >+ default: 'Test262Error: Expected a SyntaxError to be thrown but no exception was thrown at all' >+test/language/statements/function/scope-param-elem-var-close.js: >+ default: 'Test262Error: Expected SameValue(ëinsideû, ëoutsideû) to be true' >+test/language/statements/function/scope-param-elem-var-open.js: >+ default: 'Test262Error: Expected SameValue(ëinsideû, ëoutsideû) to be true' >+test/language/statements/function/scope-param-rest-elem-var-close.js: >+ default: 'Test262Error: Expected SameValue(ëinsideû, ëoutsideû) to be true' >+test/language/statements/generators/default-proto.js: >+ default: 'Test262Error: Expected SameValue(ë[object Object]û, ë[object Generator]û) to be true' >+ strict mode: 'Test262Error: Expected SameValue(ë[object Object]û, ë[object Generator]û) to be true' >+test/language/statements/generators/scope-body-lex-distinct.js: >+ default: 'Test262Error: Expected a SyntaxError to be thrown but no exception was thrown at all' >+test/language/statements/generators/scope-param-elem-var-close.js: >+ default: 'Test262Error: Expected SameValue(ëinsideû, ëoutsideû) to be true' >+test/language/statements/generators/scope-param-elem-var-open.js: >+ default: 'Test262Error: Expected SameValue(ëinsideû, ëoutsideû) to be true' >+test/language/statements/generators/scope-param-rest-elem-var-close.js: >+ default: 'Test262Error: Expected SameValue(ëinsideû, ëoutsideû) to be true' >+test/language/statements/if/if-async-fun-else-async-fun.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/statements/if/if-async-fun-else-stmt.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/statements/if/if-async-fun-no-else.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/statements/if/if-async-gen-else-async-gen.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/statements/if/if-async-gen-else-stmt.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/statements/if/if-async-gen-no-else.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/statements/if/if-gen-else-gen.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/statements/if/if-gen-else-stmt.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/statements/if/if-gen-no-else.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/statements/if/if-stmt-else-async-fun.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/statements/if/if-stmt-else-async-gen.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/statements/if/if-stmt-else-gen.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/statements/if/let-array-with-newline.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/statements/labeled/decl-async-function.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/statements/labeled/decl-async-generator.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/statements/labeled/decl-gen.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/statements/labeled/let-array-with-newline.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/statements/labeled/value-await-non-module-escaped.js: >+ default: "SyntaxError: Unexpected escaped characters in keyword token: 'aw\\u0061it'" >+ strict mode: "SyntaxError: Unexpected escaped characters in keyword token: 'aw\\u0061it'" >+test/language/statements/labeled/value-yield-non-strict-escaped.js: >+ default: "SyntaxError: Unexpected escaped characters in keyword token: 'yi\\u0065ld'" >+test/language/statements/labeled/value-yield-non-strict.js: >+ strict mode: "SyntaxError: Cannot use 'yield' as a label in strict mode." >+test/language/statements/labeled/value-yield-strict.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: "SyntaxError: Cannot use 'yield' as a label in strict mode." >+test/language/statements/let/block-local-closure-set-before-initialization.js: >+ default: 'Test262Error: Expected a ReferenceError to be thrown but no exception was thrown at all' >+test/language/statements/let/redeclaration-error-from-within-strict-mode-function.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/statements/let/syntax/attempt-to-redeclare-let-binding-with-function-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/statements/let/syntax/attempt-to-redeclare-let-binding-with-var.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/statements/let/syntax/escaped-let.js: >+ default: "SyntaxError: Unexpected escaped characters in keyword token: 'l\\u0065t'" >+test/language/statements/switch/syntax/redeclaration/async-function-declaration-attempt-to-redeclare-with-async-function-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/statements/switch/syntax/redeclaration/async-function-declaration-attempt-to-redeclare-with-async-generator-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/statements/switch/syntax/redeclaration/async-function-declaration-attempt-to-redeclare-with-class-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/statements/switch/syntax/redeclaration/async-function-declaration-attempt-to-redeclare-with-const-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/statements/switch/syntax/redeclaration/async-function-declaration-attempt-to-redeclare-with-function-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/statements/switch/syntax/redeclaration/async-function-declaration-attempt-to-redeclare-with-generator-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/statements/switch/syntax/redeclaration/async-function-declaration-attempt-to-redeclare-with-let-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/statements/switch/syntax/redeclaration/async-function-declaration-attempt-to-redeclare-with-var-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/statements/switch/syntax/redeclaration/async-generator-declaration-attempt-to-redeclare-with-async-function-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/statements/switch/syntax/redeclaration/async-generator-declaration-attempt-to-redeclare-with-async-generator-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/statements/switch/syntax/redeclaration/async-generator-declaration-attempt-to-redeclare-with-class-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/statements/switch/syntax/redeclaration/async-generator-declaration-attempt-to-redeclare-with-const-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/statements/switch/syntax/redeclaration/async-generator-declaration-attempt-to-redeclare-with-function-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/statements/switch/syntax/redeclaration/async-generator-declaration-attempt-to-redeclare-with-generator-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/statements/switch/syntax/redeclaration/async-generator-declaration-attempt-to-redeclare-with-let-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/statements/switch/syntax/redeclaration/async-generator-declaration-attempt-to-redeclare-with-var-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/statements/switch/syntax/redeclaration/class-declaration-attempt-to-redeclare-with-async-function-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/statements/switch/syntax/redeclaration/class-declaration-attempt-to-redeclare-with-async-generator-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/statements/switch/syntax/redeclaration/class-declaration-attempt-to-redeclare-with-function-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/statements/switch/syntax/redeclaration/class-declaration-attempt-to-redeclare-with-generator-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/statements/switch/syntax/redeclaration/class-declaration-attempt-to-redeclare-with-var-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/statements/switch/syntax/redeclaration/const-declaration-attempt-to-redeclare-with-async-function-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/statements/switch/syntax/redeclaration/const-declaration-attempt-to-redeclare-with-async-generator-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/statements/switch/syntax/redeclaration/const-declaration-attempt-to-redeclare-with-function-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/statements/switch/syntax/redeclaration/const-declaration-attempt-to-redeclare-with-generator-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/statements/switch/syntax/redeclaration/const-declaration-attempt-to-redeclare-with-var-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/statements/switch/syntax/redeclaration/function-declaration-attempt-to-redeclare-with-async-function-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/statements/switch/syntax/redeclaration/function-declaration-attempt-to-redeclare-with-async-generator-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/statements/switch/syntax/redeclaration/function-declaration-attempt-to-redeclare-with-class-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/statements/switch/syntax/redeclaration/function-declaration-attempt-to-redeclare-with-const-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/statements/switch/syntax/redeclaration/function-declaration-attempt-to-redeclare-with-generator-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/statements/switch/syntax/redeclaration/function-declaration-attempt-to-redeclare-with-let-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/statements/switch/syntax/redeclaration/function-declaration-attempt-to-redeclare-with-var-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/statements/switch/syntax/redeclaration/generator-declaration-attempt-to-redeclare-with-async-function-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/statements/switch/syntax/redeclaration/generator-declaration-attempt-to-redeclare-with-async-generator-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/statements/switch/syntax/redeclaration/generator-declaration-attempt-to-redeclare-with-class-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/statements/switch/syntax/redeclaration/generator-declaration-attempt-to-redeclare-with-const-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/statements/switch/syntax/redeclaration/generator-declaration-attempt-to-redeclare-with-function-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/statements/switch/syntax/redeclaration/generator-declaration-attempt-to-redeclare-with-generator-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/statements/switch/syntax/redeclaration/generator-declaration-attempt-to-redeclare-with-let-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/statements/switch/syntax/redeclaration/generator-declaration-attempt-to-redeclare-with-var-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/statements/switch/syntax/redeclaration/let-declaration-attempt-to-redeclare-with-async-function-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/statements/switch/syntax/redeclaration/let-declaration-attempt-to-redeclare-with-async-generator-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/statements/switch/syntax/redeclaration/let-declaration-attempt-to-redeclare-with-function-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/statements/switch/syntax/redeclaration/let-declaration-attempt-to-redeclare-with-generator-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/statements/switch/syntax/redeclaration/let-declaration-attempt-to-redeclare-with-var-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/statements/switch/syntax/redeclaration/var-declaration-attempt-to-redeclare-with-async-function-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/statements/switch/syntax/redeclaration/var-declaration-attempt-to-redeclare-with-async-generator-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/statements/switch/syntax/redeclaration/var-declaration-attempt-to-redeclare-with-class-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/statements/switch/syntax/redeclaration/var-declaration-attempt-to-redeclare-with-const-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/statements/switch/syntax/redeclaration/var-declaration-attempt-to-redeclare-with-function-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/statements/switch/syntax/redeclaration/var-declaration-attempt-to-redeclare-with-generator-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/statements/switch/syntax/redeclaration/var-declaration-attempt-to-redeclare-with-let-declaration.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/statements/try/early-catch-lex.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/statements/try/early-catch-var.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/statements/try/scope-catch-param-lex-open.js: >+ default: "SyntaxError: Unexpected identifier 'x'. Cannot declare a lexical variable twice: 'x'." >+ strict mode: "SyntaxError: Unexpected identifier 'x'. Cannot declare a lexical variable twice: 'x'." >+test/language/statements/while/let-array-with-newline.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/statements/with/let-array-with-newline.js: >+ default: 'Test262: This statement should not be evaluated.' >+test/language/types/boolean/S8.3_A2.1.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/types/boolean/S8.3_A2.2.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/types/reference/S8.7.2_A1_T1.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/types/reference/S8.7.2_A1_T2.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.' >+test/language/types/reference/put-value-prop-base-primitive-realm.js: >+ default: 'Test262Error: number Expected SameValue(ë0û, ë1û) to be true' >+ strict mode: 'Test262Error: number Expected SameValue(ë0û, ë1û) to be true' >+test/language/types/reference/put-value-prop-base-primitive.js: >+ default: 'Test262Error: number Expected SameValue(ë0û, ë1û) to be true' >+ strict mode: 'TypeError: Attempted to assign to readonly property.' >+test/language/white-space/mongolian-vowel-separator-eval.js: >+ default: 'Test262Error: Expected a SyntaxError to be thrown but no exception was thrown at all' >+ strict mode: 'Test262Error: Expected a SyntaxError to be thrown but no exception was thrown at all' >+test/language/white-space/mongolian-vowel-separator.js: >+ default: 'Test262: This statement should not be evaluated.' >+ strict mode: 'Test262: This statement should not be evaluated.'
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Formatted Diff
|
Diff
Attachments on
bug 185389
:
339739
| 339817