#pragma once #include #include #include #include "../defs/defs.h" namespace data { extern std::vector> scopes; extern std::map functions; extern std::map structs; void modifyValue(std::string key, Value value); Value getValue(std::string key); void pushScope(); void popScope(); void initScopes(); }