Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
17
Task/Stack-traces/AutoHotkey/stack-traces-1.ahk
Normal file
17
Task/Stack-traces/AutoHotkey/stack-traces-1.ahk
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
f()
|
||||
return
|
||||
|
||||
f()
|
||||
{
|
||||
return g()
|
||||
}
|
||||
|
||||
g()
|
||||
{
|
||||
ListLines
|
||||
msgbox, lines recently executed
|
||||
x = local to g
|
||||
ListVars
|
||||
msgbox, variable bindings
|
||||
}
|
||||
#Persistent
|
||||
14
Task/Stack-traces/AutoHotkey/stack-traces-2.ahk
Normal file
14
Task/Stack-traces/AutoHotkey/stack-traces-2.ahk
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
001: f()
|
||||
006: Return,g()
|
||||
011: ListLines (0.05)
|
||||
012: MsgBox,lines recently executed (3.81)
|
||||
013: x = local to g
|
||||
014: ListVars
|
||||
015: MsgBox,variable bindings (3.94)
|
||||
016: }
|
||||
002: Return (181.66)
|
||||
|
||||
Global Variables (alphabetical)
|
||||
--------------------------------------------------
|
||||
0[1 of 3]: 0
|
||||
ErrorLevel[1 of 3]: 0
|
||||
Loading…
Add table
Add a link
Reference in a new issue