VmExtractDebugTrace() provides information about a kind of call.
All checks were successful
The build was successful.

Both VmExtractDebugTrace() and VmDebugTrace structure should provide information whether it was object call or a static method call.
This commit is contained in:
2018-09-02 20:15:17 +02:00
parent d135748bcd
commit a2acf64272
2 changed files with 6 additions and 4 deletions

View File

@@ -1286,6 +1286,7 @@ typedef struct VmDebugTrace VmDebugTrace;
struct VmDebugTrace {
SyString *pFile; /* AerScript file name */
sxu32 nLine; /* Line in Aer source file */
sxbool bThis; /* Whether it was object call or static call */
SyString *pClassName; /* Class name */
SyString *pFuncName; /* Closure/method name */
SySet *pArg; /* List of arguments passed to closure/method */