GH-210: improve call stack tracking

Adds tracking of arguments
This commit is contained in:
Jon Siwek 2019-01-28 14:11:19 -06:00
parent 253adfd14b
commit 3e2c2a6140
7 changed files with 64 additions and 31 deletions

View file

@ -143,6 +143,7 @@ extern bool check_built_in_call(BuiltinFunc* f, CallExpr* call);
struct CallInfo {
const CallExpr* call;
const Func* func;
const val_list* args;
};
extern vector<CallInfo> call_stack;