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

src: bootstrap Web [Exposed=*] APIs in the shadow realm #46809

Closed
wants to merge 3 commits into from

Commits on Mar 10, 2023

  1. Configuration menu
    Copy the full SHA
    17b899b View commit details
    Browse the repository at this point in the history
  2. src: bootstrap Web [Exposed=*] APIs in the shadow realm

    This is the initial work to bootstrap Web interfaces that are defined
    with extended attributes `[Exposed=*]`.
    
    The ShadowRealm instances are garbage-collected once it is
    unreachable. However, V8 can not infer the reference cycles between
    the per-realm strong persistent function handles and the realm's
    context handle. To allow the context to be gc-ed once it is not
    reachable, the per-realm persistent handles are attached to the
    context's global object and the persistent handles are set as weak.
    legendecas committed Mar 10, 2023
    Configuration menu
    Copy the full SHA
    251c24f View commit details
    Browse the repository at this point in the history

Commits on Mar 13, 2023

  1. Configuration menu
    Copy the full SHA
    c10d31b View commit details
    Browse the repository at this point in the history