Implements complex tables
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
@@ -14,12 +14,12 @@
|
||||
using namespace std;
|
||||
|
||||
class BoundScope {
|
||||
unordered_map<int, BoundVariable*>* _scriptScope;
|
||||
unordered_map<int, BoundVariable*>* _tableScope;
|
||||
vector<unordered_map<int, BoundVariable*>*> _localScope;
|
||||
int _currentScope;
|
||||
int _deepestScope;
|
||||
public:
|
||||
explicit BoundScope(unordered_map<int, BoundVariable*> *scriptScope);
|
||||
explicit BoundScope(unordered_map<int, BoundVariable*> *tableScope);
|
||||
~BoundScope();
|
||||
|
||||
void GoInnerScope();
|
||||
|
||||
Reference in New Issue
Block a user