-
Notifications
You must be signed in to change notification settings - Fork 6
Open
Labels
draftDraft of new featuresDraft of new featuresenhancementNew feature or requestNew feature or request
Description
Assigning a Fat Arrow Function to a variable and specifying a breakpoint on that line (in this example, line 1) will break at two different times: on assignment and on call.
1| add := (a, b) => a + b;
2| add(1, 2)Usually, this problem is solved with inline breakpoint. However, that is a feature that is not available in the AutoHotkey debugger (or rather, there is no inline breakpoint section in DBGp, which is adopted by the AutoHotkey debugger).
This problem can be solved if in-line breakpoints can be implemented in a pseudo-instrumental way. However, this feature must be implemented as an option, as it overrides the behaviour of the official AutoHotkey debugger.
Metadata
Metadata
Assignees
Labels
draftDraft of new featuresDraft of new featuresenhancementNew feature or requestNew feature or request