You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
eshost currently allows for the specification of global bindings during ECMAScript realm creation. These bindings are created as enumerable, writable, and configurable properties of the global object.
The ES2015 specification defines behavior for global object properties with different descriptors. Although some of these can be tested by runtime creation of properties, e.g.
...others cannot. For example the semantics of GlobalDeclarationEvaluation dictate (via CanDeclareGlobalFunction) that if the global object has a property named foo that has the value undefined and the descriptor {[[Configurable]]: false, [[Writable]]: true, [[Enumerable]]: true}, the following code should execute without error:
foo();functionfoo(){}
One solution would be to extend the eshost API to respect the property descriptors of the provided object, but the spec also accounts for global objects that are exotic. For example, here's a non-normative note from GlobalDeclarationEvaluation:
13- NOTE: No abnormal terminations occur after this algorithm step if the
global object is an ordinary object. However, if the global object is a
Proxy exotic object it may exhibit behaviours that cause abnormal
terminations in some of the following steps.
So I think we need the ability to specify the global object directly. Does that sound right to you, @bterlson? I'm also interested in this detail as it relates to Test262. If what I've written above is accurate, we will one day need to write tests that dictate a realm's global object value.
The text was updated successfully, but these errors were encountered:
eshost currently allows for the specification of global bindings during ECMAScript realm creation. These bindings are created as enumerable, writable, and configurable properties of the global object.
The ES2015 specification defines behavior for global object properties with different descriptors. Although some of these can be tested by runtime creation of properties, e.g.
...others cannot. For example the semantics of GlobalDeclarationEvaluation dictate (via CanDeclareGlobalFunction) that if the global object has a property named
foo
that has the valueundefined
and the descriptor {[[Configurable]]: false, [[Writable]]: true, [[Enumerable]]: true}, the following code should execute without error:One solution would be to extend the eshost API to respect the property descriptors of the provided object, but the spec also accounts for global objects that are exotic. For example, here's a non-normative note from GlobalDeclarationEvaluation:
So I think we need the ability to specify the global object directly. Does that sound right to you, @bterlson? I'm also interested in this detail as it relates to Test262. If what I've written above is accurate, we will one day need to write tests that dictate a realm's global object value.
The text was updated successfully, but these errors were encountered: