#pragma once #include #include #include #include "ast.h" #include "global.h" using namespace std; class Environment; using Hook = function; class Environment{ private: unordered_map defs; unordered_map hooks; bool reduce(AST &ast,i64 depth=0); bool betareduce(AST &ast,i64 depth); bool resolve(AST &ast); public: void load(const Environment &other); AST run(const AST &ast); void define(const Name &name,const AST &ast); void define(const Name &name,const Hook &hook); AST get(const Name &name); };