mirror of
https://github.com/tc39/test262.git
synced 2025-05-03 06:20:37 +02:00
ECMA262 allows for an arbitrary number of "ScriptJob"s to run in a given realm. Although there is no standard mechanism for enqueuing these jobs, many implementations offer this functionality through custom APIs. In those hosts, the semantics describing script interactions are directly observable. In order to guarantee conformance to the specification in advance of a standardized API, Test262 now requires that hosts provide a $.evalScript function whose behavior is defined in the project's "INTERPRETING.md" file. Use this host-provided API to ensure that implementations correctly observe the specification text that dictates script interactions. (In writing these tests, I noticed some gaps in coverage that are observable from a single script execution. This patch includes a dedicated commit for these tests that do not require $.evalScript.) * Improve coverage of GlobalDeclarationInstantiation * Add tests for script interactions Use the host-provied `$.evalScript` method to assert conformance to the specification text that defines script interactions. * fixup! Improve coverage of GlobalDeclarationInstantiation
49 lines
2.0 KiB
JavaScript
49 lines
2.0 KiB
JavaScript
// Copyright (C) 2016 the V8 project authors. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
/*---
|
|
esid: sec-globaldeclarationinstantiation
|
|
es6id: 15.1.8
|
|
description: Declaration of function where permissible
|
|
info: |
|
|
[...]
|
|
9. Let declaredFunctionNames be a new empty List.
|
|
10. For each d in varDeclarations, in reverse list order do
|
|
a. If d is neither a VariableDeclaration or a ForBinding, then
|
|
i. Assert: d is either a FunctionDeclaration or a
|
|
GeneratorDeclaration.
|
|
ii. NOTE If there are multiple FunctionDeclarations for the same name,
|
|
the last declaration is used.
|
|
iii. Let fn be the sole element of the BoundNames of d.
|
|
iv. If fn is not an element of declaredFunctionNames, then
|
|
1. Let fnDefinable be ? envRec.CanDeclareGlobalFunction(fn).
|
|
2. If fnDefinable is false, throw a TypeError exception.
|
|
3. Append fn to declaredFunctionNames.
|
|
4. Insert d as the first element of functionsToInitialize.
|
|
[...]
|
|
17. For each production f in functionsToInitialize, do
|
|
a. Let fn be the sole element of the BoundNames of f.
|
|
b. Let fo be the result of performing InstantiateFunctionObject for f
|
|
with argument env.
|
|
c. Perform ? envRec.CreateGlobalFunctionBinding(fn, fo, false).
|
|
[...]
|
|
|
|
8.1.1.4.16 CanDeclareGlobalFunction
|
|
|
|
1. Let envRec be the global Environment Record for which the method was
|
|
invoked.
|
|
2. Let ObjRec be envRec.[[ObjectRecord]].
|
|
3. Let globalObject be the binding object for ObjRec.
|
|
4. Let existingProp be ? globalObject.[[GetOwnProperty]](N).
|
|
5. If existingProp is undefined, return ? IsExtensible(globalObject).
|
|
includes: [propertyHelper.js]
|
|
---*/
|
|
|
|
assert.sameValue(
|
|
typeof brandNew, 'function', 'new binding on an extensible global object'
|
|
);
|
|
verifyEnumerable(this, 'brandNew');
|
|
verifyWritable(this, 'brandNew');
|
|
verifyNotConfigurable(this, 'brandNew');
|
|
|
|
function brandNew() {}
|