summaryrefslogtreecommitdiff
path: root/INTERPRETING.md
Commit message (Collapse)AuthorAgeFilesLines
* Link to Metadata section in INTERPRETING.md (#1482)mitchcurtis2018-03-091-1/+1
|
* INTERPRETING.md: Make negative phase values easier to readRick Waldron2018-01-101-5/+42
|
* Fix typo in INTERPRETING.mdRick Waldron2018-01-051-1/+1
|
* Rename negative test "phase" for module resolutionMike Pennisi2018-01-051-2/+3
|
* Rename negative test "phase" for parsingMike Pennisi2018-01-051-2/+3
| | | | | | | | | | | | | | 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.
* Remove harness/testBuiltInObject.js fileAndré Bargull2017-12-211-2/+7
|
* Modify $262.uncallableAndIsHTMLDDA() to $262.IsHTMLDDA (#1305)Jeff Walden2017-10-191-10/+10
| | | Modify $262.uncallableAndIsHTMLDDA() to an optional $262.IsHTMLDDA (whose use must be guarded by a feature of the same name), and narrowly/correctly prescribe its requirements consistent with `document.all`'s behavior in HTML.
* Add tests for the case of <iterator>.return, as used in the iteration ↵Jeff Walden2017-10-171-0/+10
| | | | protocol, being an object that's uncallable and compares equal to `undefined`.
* Introduce version number (#1255)jugglinmike2017-10-021-0/+5
| | | | | | Changes to the instructions for interpreting tests will likely produce new failures for consumers who are updating between revisions of Test262. Introduce a machine-readable convention for signaling substantive changes.
* Enforce use of `throw` stmt in early error testsMike Pennisi2017-06-281-10/+1
| | | | | | | | | | | | | | | Previously, test consumers were encouraged to insert a `throw` statement as the first statement of tests for early errors. This recommendation made tests harder to consume, and as an optional transformation, consumers may have ignored it or simply been unaware it was made. By explicitly including such a `throw` statement, the tests become more literal, making them easier to consume and more transparent in their expectations. Document expectation for all tests for early errors to include an explicit `throw` statement. Extend linting script to verify that contributors are automatically notified of violations and to ensure that future contributions satisfy this expectation.
* Update links to the specs (#1005)Leo Balter2017-04-271-6/+6
|
* INTERPRETING.md missed two `$` => `$262` changes.Thomas Wood2017-04-201-2/+2
| | | | References #875, #802
* Document test flag: `generated` (#886)jugglinmike2017-03-061-0/+4
| | | Resolves gh-885
* Rename $ => $262. Fixes gh-802 (#823)Rick Waldron2017-03-011-3/+2
| | | Signed-off-by: Rick Waldron <waldron.rick@gmail.com>
* SharedArrayBuffer and Atomics tests (#839)Shu-yu Guo2017-02-071-0/+27
|
* Correct file reference in "interpreting" document (#799)jugglinmike2016-11-221-1/+1
|
* Update documentationMike Pennisi2016-10-191-5/+23
|
* Document requirements for module testsjugglinmike2016-06-211-1/+26
|
* Document host-defined realm/script API (#644)jugglinmike2016-06-211-0/+26
| | | | | | Define the expected behavior of new host-defined utilities. These will facilitate forthcoming tests that concern cross-realm and cross-script semantics (which are currently untestable using standard ECMAScript alone).
* Add documentation on interpreting tests (#508)jugglinmike2016-04-181-0/+191
The project's CONTRIBUTING.md was written with test authors in mind. It contains details on non-technical metadata (e.g. "author" and "es6id"), helper function usage, and preferred code structure. In addition, it elides certain low-level technical details on the requirements for the runtime environment. Introduce a new document targeted towards those executing the tests. Formalize all expectations regarding how the runtime environment should be defined, how metadata should be interpreted, and how results should be understood. This information has overlap with the CONTRIBUTING.md file, but it also contains details that are irrelevant to test authors. This document can serve as a more formal contract between Test262 and the implementors who consume it. This allows Test262 to unambiguously document future modifications to the formal requirements which in turn supports consumers who maintain their own test harnesses.