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
function fun1()
(@fun2()):exec() // line 54
return nil
function fun2()
~ procname()
~ procfile()
~ procline() // actaully on line 59
~ callstack(0,.t.)
return nil
gives the following results:
EXEC
59
It looks like procline() gets updated when calling exec, but procfile() and procname() are not updated.
The text was updated successfully, but these errors were encountered:
Running this code:
gives the following results:
It looks like
procline()
gets updated when calling exec, butprocfile()
andprocname()
are not updated.The text was updated successfully, but these errors were encountered: