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

[WIP] implement module.registerHooks() to run synchronous module customization hooks in thread #55698

Draft
wants to merge 5 commits into
base: main
Choose a base branch
from

Commits on Nov 2, 2024

  1. module: simplify --inspect-brk handling

    Previously in the CommonJS loader, --inspect-brk is implemented
    checking whether the module points to the result of re-resolving
    process.argv[1] to determine whether the module is the entry point.
    This is unnecessarily complex, especially now that we store that
    information in the module as kIsMainSymbol. This patch updates
    it to simply check that symbol property instead.
    joyeecheung committed Nov 2, 2024
    Configuration menu
    Copy the full SHA
    5ecc8f8 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2e438ab View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    59b3a0a View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    3eb8bef View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    decfb68 View commit details
    Browse the repository at this point in the history