add global variable support to script engine

This commit is contained in:
mhgholamrezaei 2021-09-26 21:42:36 +09:00
parent 55db553a08
commit b093ea0c8d
10 changed files with 601 additions and 471 deletions

View file

@ -116,10 +116,16 @@ char *
HandleError(PSCRIPT_ENGINE_ERROR_TYPE Error, char * str);
int
GetIdentifireVal(TOKEN Token);
GetGlobalIdentifireVal(TOKEN Token);
int
NewIdentifire(TOKEN Token);
GetLocalIdentifireVal(TOKEN Token);
int
NewGlobalIdentifire(TOKEN Token);
int
NewLocalIdentifire(TOKEN Token);
int
LalrGetRhsSize(int RuleId);