Skip to content

Setting a realm's global object #8

Description

@jugglinmike

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.

Object.defineProperty(this, 'foo', { value: 0, writable: false });
foo++;
assert.sameValue(foo, 0);

...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();
function foo() {}

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.

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions