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

[GR-62667] Implement Deferring Module Evaluation Proposal #894

Closed
woess opened this issue Feb 28, 2025 · 0 comments
Closed

[GR-62667] Implement Deferring Module Evaluation Proposal #894

woess opened this issue Feb 28, 2025 · 0 comments
Assignees

Comments

@woess
Copy link
Member

woess commented Feb 28, 2025

TL;DR

We plan to implement Deferring Module Evaluation in GraalJS.

Details

The proposal is to have a new syntactical import form which will only ever return a namespace exotic object. When used, the module and its dependencies would not be executed, but would be fully loaded to the point of being execution-ready before the module graph is considered loaded.

Only when accessing a property of this module, would the execution operations be performed (if needed).

This way, the module namespace exotic object acts like a proxy to the evaluation of the module, effectively with [[Get]] behavior that triggers synchronous evaluation before returning the defined bindings.

The API will use the below syntax:

import defer * as yNamespace from "y";
@woess woess added this to the Planned for the Future milestone Feb 28, 2025
@woess woess self-assigned this Feb 28, 2025
@woess woess moved this to Todo in GraalJS Roadmap Feb 28, 2025
@woess woess moved this from Todo to In Progress in GraalJS Roadmap Mar 27, 2025
@woess woess moved this from In Progress to Done in GraalJS Roadmap Apr 1, 2025
@woess woess closed this as completed by moving to Done in GraalJS Roadmap Apr 1, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
Status: Done
Development

No branches or pull requests

1 participant