blob: 577612246a658dd65316116161b401263b0ff6f1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
#pragma once
#include <functional>
#include <unordered_set>
#include <unordered_map>
#include "ast.h"
#include "global.h"
using namespace std;
class Environment{
public:
using Hook = function<AST(Environment&,const AST&)>;
using Hook2 = function<AST(Environment&,const AST&,const AST&)>;
private:
unordered_map<string,AST> defs;
unordered_map<string,Hook> hooks;
void reduce(AST &ast,i64 depth=0);
bool betareduce(AST &ast,i64 depth);
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);
};
|