You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 11, 2026. It is now read-only.
If an inline breakpoint is set on a statement in the middle of the line, the breakpoint breaks at the beginning of the line.
For example, with this statement:
If the breakpoint is set on the console.log() statement, column 17, then the breakpoint should break once the console.log() statement is reached.
Instead, it will break when setTimeout() is being called.
It simply seems to ignore the column offset and only use the line, because the breakpoint binds to the beginning of the line.