Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Only preserve AC for user generators #70

Merged
merged 2 commits into from
Feb 20, 2024
Merged

Only preserve AC for user generators #70

merged 2 commits into from
Feb 20, 2024

Conversation

jridgewell
Copy link
Member

Based on our last meeting, we'll only preserve the ambient AC state for user created generators. Spec created generators, used during iteration and async iteration, do not need to preserve the context. It would only be observable during iteration of array.values() with a getter.

Note that the if the user uses async iteration of of a spec-created generator, then their context will be preserved in their execution:

const array = [];
Object.defineProperty(array, 0, {
  get() {
    // This used to be "foo", the iterator captured ambient AC during init.
    assert.sameValue(asyncVar.get(), "bar");
  }
});

const iter = asyncVar.run("foo", () => array.values());

asyncVar.run("bar", () => {
  iter.next();
});

Copy link
Member

@andreubotella andreubotella left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You forgot to check whether the mapping is empty in GeneratorResumeAbrupt.

Otherwise, LGTM.

@jridgewell jridgewell merged commit a8a2961 into master Feb 20, 2024
4 checks passed
@jridgewell jridgewell deleted the user-gen branch February 20, 2024 22:35
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants