feat(devtools): implement persistent breakpoints on signal consumers using CDP#69860
Draft
eduhmc wants to merge 2 commits into
Draft
feat(devtools): implement persistent breakpoints on signal consumers using CDP#69860eduhmc wants to merge 2 commits into
eduhmc wants to merge 2 commits into
Conversation
eduhmc
marked this pull request as ready for review
July 20, 2026 22:46
eduhmc
marked this pull request as draft
July 20, 2026 22:46
eduhmc
force-pushed
the
add-signal-consumer-breakpoints-cdp
branch
from
July 20, 2026 23:01
f4413d0 to
e12e69f
Compare
Exposes the internal fn reference of effect reactive nodes on DebugSignalGraphNode as debuggableFn. This allows Angular DevTools to inspect and set breakpoints on effect callbacks.
eduhmc
force-pushed
the
add-signal-consumer-breakpoints-cdp
branch
from
July 20, 2026 23:08
e12e69f to
8c1e946
Compare
…using CDP Implements persistent breakpoints for Angular signal consumers (computeds and effects) in Angular DevTools using Chrome DevTools Protocol (CDP). - Adds debugger permission to Chrome and Firefox extension manifests. - Implements CDP breakpoint orchestration in background script. - Updates SignalDetailsComponent and SignalGraphPaneComponent with label icon toggle and persistent state sync across reloads.
eduhmc
force-pushed
the
add-signal-consumer-breakpoints-cdp
branch
from
July 20, 2026 23:12
8c1e946 to
41b55c2
Compare
eduhmc
marked this pull request as ready for review
July 20, 2026 23:21
eduhmc
marked this pull request as draft
July 20, 2026 23:31
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Implements persistent breakpoints on Angular signal consumers (computeds and effects) in Angular DevTools using the Chrome DevTools Protocol (CDP).
debuggableFnfor effects inpackages/core/src/render3/util/signal_debug.ts.debuggerpermission tomanifest.chrome.jsonandmanifest.firefox.json.attachDebugger,setBreakpointByUrl,removeBreakpoint) inbackground.ts.labelicon and state persistence inSignalDetailsComponent&SignalGraphPaneComponent.