summaryrefslogtreecommitdiff
path: root/environment.h
blob: e892207c77d6491353cd9d488b7c63091b81c8ec (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
35
#pragma once

#include <functional>
#include <unordered_set>
#include <unordered_map>
#include "ast.h"
#include "global.h"

using namespace std;


class Environment;

using Hook = function<AST(Environment&,const AST&)>;

class Environment{
private:
	unordered_map<string,AST> defs;
	unordered_map<string,Hook> hooks;

	bool reduce(AST &ast,i64 depth=0);
	bool betareduce(AST &ast,i64 depth);
	bool resolve(AST &ast);
	bool resolve(AST &ast,unordered_set<Name> &avoid);

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);
};