-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSyntaxTree.class.php
More file actions
executable file
·195 lines (175 loc) · 5.88 KB
/
SyntaxTree.class.php
File metadata and controls
executable file
·195 lines (175 loc) · 5.88 KB
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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
<?php namespace lang\meta;
use lang\IllegalAccessException;
use lang\ast\nodes\{Literal, Variable};
use lang\ast\{Visitor, Type};
class SyntaxTree extends Visitor {
private $tree, $type;
public function __construct($tree, $type) {
$this->tree= $tree;
$this->type= $type;
}
/** @return lang.ast.TypeDeclaration */
public function type() { return $this->type; }
/** @return lang.ast.ParseTree */
public function root() { return $this->tree; }
public function resolver() { return $this->tree->scope(); }
private function resolve($type) {
$name= $type instanceof Type ? $type->literal() : $type;
if ('self' === $name) {
$resolved= $this->type->name;
} else if ('parent' === $name) {
$resolved= $this->tree->scope()->parent;
} else {
return $name;
}
return $resolved instanceof Type ? $resolved->literal() : $resolved;
}
/**
* Evaluates code
*
* @param lang.ast.Node $self
* @return var
*/
public function code($self) {
return eval('return '.$self->value.';');
}
/**
* Evaluates literals
*
* @param lang.ast.Node $self
* @return var
*/
public function literal($self) {
return eval('return '.$self->expression.';');
}
/**
* Evaluates arrays
*
* @param lang.ast.Node $self
* @return var
*/
public function array($self) {
$r= [];
foreach ($self->values as list($key, $value)) {
if (null === $key) {
$r[]= $value->visit($this);
} else {
$r[$key->visit($this)]= $value->visit($this);
}
}
return $r;
}
/**
* Evaluates new operator
*
* @param lang.ast.Node $self
* @return var
*/
public function new($self) {
$c= new \ReflectionClass($this->resolve($self->type));
$arguments= [];
foreach ($self->arguments as $key => $node) {
$arguments[$key]= $node->visit($this);
}
return $c->newInstance(...$arguments);
}
/**
* Evaluates scope resolution operators
*
* @param lang.ast.Node $self
* @return var
*/
public function scope($self) {
$c= $this->resolve($self->type);
// Use PHP reflection API to access members' runtime values. We cannot use
// getStaticPropertyValue() as it cannot get non-public members in PHP 7.0
if ($self->member instanceof Variable) {
$p= (new \ReflectionClass($c))->getProperty($self->member->pointer ?? $self->member->name);
$p->setAccessible(true);
return $p->getValue();
} else if ($self->member instanceof Literal) {
return 'class' === $self->member->expression
? substr($c, 1)
: (new \ReflectionClass($c))->getConstant($self->member->expression)
;
} else {
throw new IllegalAccessException('Cannot resolve '.$type->name.'::'.$self->member->kind);
}
}
/**
* Evaluates class constants
*
* @param lang.ast.Node $self
* @return var
*/
public function const($self) {
return $self->expression->visit($this);
}
/**
* Evaluates properties
*
* @param lang.ast.Node $self
* @return var
*/
public function property($self) {
return $self->expression->visit($this);
}
/**
* Evaluates unary prefix operators
*
* @param lang.ast.Node $self
* @return var
*/
public function prefix($self) {
switch ($self->operator) {
case '+': return +$self->expression->visit($this);
case '-': return -$self->expression->visit($this);
case '~': return ~$self->expression->visit($this);
case '!': return !$self->expression->visit($this);
}
}
/**
* Evaluates binary operators
*
* @param lang.ast.Node $self
* @return var
*/
public function binary($self) {
switch ($self->operator) {
case '.': return $self->left->visit($this).$self->right->visit($this);
case '+': return $self->left->visit($this) + $self->right->visit($this);
case '-': return $self->left->visit($this) - $self->right->visit($this);
case '*': return $self->left->visit($this) * $self->right->visit($this);
case '/': return $self->left->visit($this) / $self->right->visit($this);
case '%': return $self->left->visit($this) % $self->right->visit($this);
case '^': return $self->left->visit($this) ^ $self->right->visit($this);
case '|': return $self->left->visit($this) | $self->right->visit($this);
case '&': return $self->left->visit($this) & $self->right->visit($this);
case '**': return $self->left->visit($this) ** $self->right->visit($this);
case '?:': return $self->left->visit($this) ?: $self->right->visit($this);
case '??': return $self->left->visit($this) ?? $self->right->visit($this);
case '<<': return $self->left->visit($this) << $self->right->visit($this);
case '>>': return $self->left->visit($this) >> $self->right->visit($this);
case '||': return $self->left->visit($this) || $self->right->visit($this);
case '&&': return $self->left->visit($this) && $self->right->visit($this);
case '==': return $self->left->visit($this) == $self->right->visit($this);
case '!=': return $self->left->visit($this) != $self->right->visit($this);
case '<': return $self->left->visit($this) < $self->right->visit($this);
case '>': return $self->left->visit($this) > $self->right->visit($this);
case '<=': return $self->left->visit($this) <= $self->right->visit($this);
case '>=': return $self->left->visit($this) >= $self->right->visit($this);
case '<=>': return $self->left->visit($this) <=> $self->right->visit($this);
case '===': return $self->left->visit($this) === $self->right->visit($this);
case '!==': return $self->left->visit($this) !== $self->right->visit($this);
}
}
/**
* Evaluates ternary operators
*
* @param lang.ast.Node $self
* @return var
*/
public function ternary($self) {
return $self->condition->visit($this) ? $self->expression->visit($this) : $self->otherwise->visit($this);
}
}