#pragma once #include #include #include #include "ast.h" #include "global.h" using namespace std; class Environment{ public: using Hook = function; using Hook2 = function; 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); void define2(const Name &name,const Hook2 &hook2); AST get(const Name &name); };