summaryrefslogtreecommitdiff
path: root/environment.h
blob: bc86efbc5992543e1e3b37859b0282a37a1f74b9 (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{
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;

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