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
It does not work when a breakpoint is set on a line where a variable is assigned a function object or closure using Fat Arrow as shown below.
I checked and it seems that a122 already has this bug.
func := () => "func"
closure := () => func
However, if call it as follows, the breakpoint will work correctly. Therefore, this may be a specification or bug in the AutoHotkey debugger.
%func%()
I need to find out if this bug is due to a specification or an extension.
The text was updated successfully, but these errors were encountered:
When I checked with SciTE4AutoHotkey, the behavior was the same, so I'm going to assume that this is the current specification or bug of AutoHotkey and close this issue.
It does not work when a breakpoint is set on a line where a variable is assigned a function object or closure using Fat Arrow as shown below.
I checked and it seems that
a122
already has this bug.func := () => "func" closure := () => func
However, if call it as follows, the breakpoint will work correctly. Therefore, this may be a specification or bug in the AutoHotkey debugger.
I need to find out if this bug is due to a specification or an extension.
The text was updated successfully, but these errors were encountered: