summaryrefslogtreecommitdiff
path: root/ast.h
blob: 700fc8091fe6488acc76a996f512a407ccc0a558 (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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
#pragma once

#include <functional>
#include <iostream>
#include <string>
#include <vector>
#include <cstdlib>
#include "global.h"
#include "indirect.h"

using namespace std;


class AST;


using Number = i64;
using String = string;
using Name = string;
using Index = i64;
class Terms : public vector<AST>{
public:
	using vector<AST>::vector;
	using vector<AST>::operator=;
};
class Lambda{
public:
	Name arg; // if empty, then can only be referred to with indices
	Indirect<AST> body=Indirect<AST>::makeEmpty();

	Lambda();
	Lambda(const Name &arg,const AST &ast);
};
using Native = function<AST(const AST&)>;



class ParseError : public runtime_error{
public:
	explicit ParseError(const string &what_arg);
	explicit ParseError(const char *what_arg);
};

class AST{
public:
	enum class Type{
		number,
		string,
		name,
		index,
		tuple,
		lambda,
		native,
	};

	Type type;
	Number numval;
	String strval;
	Name nameval;
	Index indexval;
	Terms terms;
	Lambda lambdaval;
	Native nativeval;

	bool quoted=false;

private:
	class Tokeniser;
	AST& parse(Tokeniser &tokeniser);

public:
	AST(); // initialises to nil value ()
	explicit AST(const string &source); // parses source
	explicit AST(const char *source); // parses source

	static AST makeNumber(Number numval);
	static AST makeString(String strval);
	static AST makeName(Name nameval);
	static AST makeIndex(Index indexval);
	static AST makeTuple(Terms terms);
	static AST makeLambda(Lambda lambdaval);
	static AST makeLambda(const Name &arg,const AST &body);
	static AST makeNative(const Native &native);
};

namespace std {
	template <>
	struct hash<AST::Type>{
		size_t operator()(const AST::Type &type) const {
			return (size_t)type;
		}
	};
}

ostream& operator<<(ostream &os,const AST &ast);