-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathType.hpp
136 lines (108 loc) · 2.76 KB
/
Type.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
124
125
126
127
128
129
130
131
132
133
134
135
136
#pragma once
#include "Value.hpp"
#include "Expression.hpp"
#include "Context.hpp"
#include "Field.hpp"
#include "Exceptions.hpp"
class Context;
class Expression;
class Type
{
public:
Type() {}
virtual ~Type() {}
virtual Value* createNewValue(Context* context) = 0;
virtual Value* createNewValue(Context* context, Value* value) = 0;
virtual Identifier getType() = 0;
};
class NamedType : public Type
{
public:
NamedType(Identifier identifier): identifier(identifier) {}
virtual ~NamedType() {}
virtual Value* createNewValue(Context* context);
virtual Value* createNewValue(Context* context, Value* value);
virtual Identifier getType() { return identifier; };
Identifier identifier;
};
class ArrayType : public Type
{
public:
ArrayType(Expression* expression, Type* arrayType);
virtual ~ArrayType() {}
virtual Value* createNewValue(Context* context);
virtual Value* createNewValue(Context* context, Value* value);
virtual Identifier getType() { return Identifier("ARRAY"); };
Expression* expression;
Type* arrayType;
};
class StructType : public Type
{
public:
StructType(FieldListSequence* fieldListSequence);
virtual ~StructType() {}
virtual Value* createNewValue(Context* context);
virtual Value* createNewValue(Context* context, Value* value);
virtual Identifier getType() { return Identifier("RECORD"); };
std::unordered_map<Identifier, Type*> fieldTypes;
};
class IntegerType : public Type
{
public:
IntegerType() {}
virtual ~IntegerType() {}
virtual Value* createNewValue(Context* context)
{
return createNewValue(context, new IntegerValue(0));
}
virtual Value* createNewValue(Context* context, Value* value)
{
return value;
}
virtual Identifier getType() { return Identifier("INTEGER"); };
};
class BooleanType : public Type
{
public:
BooleanType() {}
virtual ~BooleanType() {}
virtual Value* createNewValue(Context* context)
{
return createNewValue(context, new BooleanValue(false));
}
virtual Value* createNewValue(Context* context, Value* value)
{
return value;
}
virtual Identifier getType() { return Identifier("BOOLEAN"); };
};
class DoubleType : public Type
{
public:
DoubleType() {}
virtual ~DoubleType() {}
virtual Value* createNewValue(Context* context)
{
return createNewValue(context, new DoubleValue(0.0));
}
virtual Value* createNewValue(Context* context, Value* value)
{
return value;
}
virtual Identifier getType() { return Identifier("DOUBLE"); };
};
class StringType : public Type
{
public:
StringType() {}
virtual ~StringType() {}
virtual Value* createNewValue(Context* context)
{
return createNewValue(context, new StringValue(std::string("")));
}
virtual Value* createNewValue(Context* context, Value* value)
{
return value;
}
virtual Identifier getType() { return Identifier("STRING"); };
};