-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvalue.hpp
123 lines (103 loc) · 2.38 KB
/
value.hpp
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
/* ollieberzs 2018
** value.hpp
** all oca types
*/
#pragma once
#include <string>
#include <map>
#include <any>
#include "common.hpp"
#include "scope.hpp"
OCA_BEGIN
class Value {
public:
Scope scope = Scope(nullptr);
virtual ~Value() = default;
virtual ValuePtr copy() = 0;
virtual bool isNil();
virtual std::string tos() = 0;
virtual std::string typestr() = 0;
oca_int toi();
oca_real tor();
bool tob();
bool isi();
bool isr();
bool isb();
bool iss();
bool ist();
void bind(const std::string& name, const std::string& args, CPPFunc func);
};
class Integer : public Value {
public:
oca_int val;
Integer(oca_int val, Scope* parent);
ValuePtr copy();
std::string tos();
std::string typestr();
};
class Real : public Value {
public:
oca_real val;
Real(oca_real val, Scope* parent);
ValuePtr copy();
std::string tos();
std::string typestr();
};
class String : public Value {
public:
std::string val;
String(const std::string& val, Scope* parent);
ValuePtr copy();
std::string tos();
std::string typestr();
};
class Bool : public Value {
public:
bool val;
Bool(bool val, Scope* parent);
ValuePtr copy();
std::string tos();
std::string typestr();
};
class Table : public Value {
public:
oca_int count = 0;
oca_int size = 0;
explicit Table(Scope* parent);
static std::shared_ptr<Table> from(Scope& scope);
ValuePtr copy();
void add(const std::string& name, ValuePtr value);
bool remove(const std::string& name);
std::string tos();
std::string typestr();
};
class Block : public Value {
Evaluator* evaler;
public:
ExprPtr val;
std::vector<std::string> params;
Block(ExprPtr expr, Scope* parent, Evaluator* evaler);
ValuePtr operator()(ValuePtr caller, ValuePtr arg, ValuePtr block);
ValuePtr copy();
std::string tos();
std::string typestr();
};
class Func : public Value {
CPPFunc val;
public:
std::string params;
Func(CPPFunc func, const std::string& params, Scope* parent);
ValuePtr operator()(ValuePtr caller, ValuePtr arg, ValuePtr block);
ValuePtr copy();
std::string tos();
std::string typestr();
};
class Nil : public Value {
public:
static std::shared_ptr<Nil> in(Scope* parent);
ValuePtr copy();
std::string tos();
std::string typestr();
bool isNil();
};
OCA_END