- Oct 23, 2018
-
-
Mathias Bynens authored
-
Mathias Bynens authored
Closes #1634.
-
- Jan 05, 2018
-
-
Mike Pennisi authored
Early errors may result from parsing the source text of a test file, but they may also result from parsing some other source text as referenced through the ES2015 module syntax. The latter form of early error is not necessarily detectable by ECMAScript parsers, however. Because of this, the label "early" is not sufficiently precise for all Test262 consumers to correctly interpret all tests. Update the "phase" name of "early" to "parse" for all those negative tests that describe errors resulting from parsing of the file's source text directly. A forthcoming commit will update the remaining tests to use a "phase" name that is more specific to module resolution.
-
Rick Waldron authored
-
- Jun 28, 2017
-
-
Mike Pennisi authored
This pattern makes expectations more explicit by making test files more literal.
-
- Oct 19, 2016
-
-
Mike Pennisi authored
Authored via the following command: $ find test -type f -print0 | \ xargs -0 sed \ -i 's/^\(\s*\)negative:\s*SyntaxError\s*$/\1negative:\n\1 phase: early\n\1 type: SyntaxError/g'
-
- May 08, 2015
-
-
André Bargull authored
- Add missing "var" declarations and noStrict flags - Add strict mode tests for: - arguments-object/10.6-6-3 -> arguments-object/10.6-6-3-s - arguments-object/10.6-6-4 -> arguments-object/10.6-6-4-s - Remove try-finally clean-up code - Add strict mode compatible tests for eval-code/S10.4.2_A1.1_T* - No strict mode compatible files added for eval-code/S10.4.2_A1.2_T*, because it doesn't really make sense in this context. - (S10.4.2_A1.1 and S10.4.2_A1.2 should probably be removed, because the tested behaviour is not required by the spec.) - Split S8.5_A10, S8.5_A4 and S8.1_A3 into declaration (both modes) and assignment tests (non-strict only) Part of issue #35.
-
- Dec 07, 2014
-
-
Brian Terlson authored
-