Skip to content
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: nodejs/node-v0.x-archive
base: 2cf7e5de6f0a
Choose a base ref
...
head repository: nodejs/node-v0.x-archive
compare: a32a243d5f95
Choose a head ref
  • 1 commit
  • 6 files changed
  • 1 contributor

Commits on May 2, 2013

  1. debugger: breakpoints in scripts not loaded yet

    When developer calls setBreakpoint with an unknown script name,
    we convert the script name into regular expression matching all
    paths ending with given name (name can be a relative path too).
    
    To create such breakpoint in V8, we use type `scriptRegEx`
    instead of `scriptId` for `setbreakpoint` request.
    
    To restore such breakpoint, we save the original script name
    send by the user. We use this original name to set (restore)
    breakpoint in the new child process.
    
    This is a back-port of commit 5db936d from the master branch.
    bajtos authored and bnoordhuis committed May 2, 2013
    Copy the full SHA
    a32a243 View commit details
    Browse the repository at this point in the history