Comments, var access, start on objects

This commit is contained in:
2025-10-26 19:16:35 +11:00
parent c73142178a
commit 191410d174
4 changed files with 30 additions and 15 deletions

View File

@@ -13,6 +13,12 @@
* context of execution. The class implements mechanisms for traversing AST nodes
* and consuming or peeking at individual nodes.
*/
class Object {
public:
std::vector<Object> children;
};
class Executor {
private:
std::map<std::string, ASTFunction> functions;