whereIs
whereIs(s_function)=>t/nil
Description
Prints the last file loaded in debug mode in which a function was defined, as well as the starting line number.
You must turn on debug mode before loading the file.
Arguments
Value Returned
Examples
Returns t if the function was found and prints the file and starting line number of the myFunction function if it was loaded after debug mode was turned on.
whereIs( myFunction )
=> t
Function myFunction was loaded from file ~/myFunctions.il at line 126.
Related Topics
Return to top