Implements binding and evaluating function declarations

This commit is contained in:
2019-06-01 12:33:52 +02:00
parent c407ba2f50
commit 6936b26cae
11 changed files with 215 additions and 10 deletions

View File

@@ -32,6 +32,10 @@ public:
int GetDeepestScope(){
return _deepestScope;
}
int GetCurrentScope(){
return _currentScope;
}
};