@@ -62,7 +62,7 @@ discard block |
||
62 | 62 | |
63 | 63 | $this->code = $code; // keep the code around for __halt_compiler() handling |
64 | 64 | $this->pos = -1; |
65 | - $this->line = 1; |
|
65 | + $this->line = 1; |
|
66 | 66 | $this->filePos = 0; |
67 | 67 | } |
68 | 68 | |
@@ -264,10 +264,10 @@ discard block |
||
264 | 264 | if (T_DOUBLE_COLON === $i) { |
265 | 265 | // T_DOUBLE_COLON is equivalent to T_PAAMAYIM_NEKUDOTAYIM |
266 | 266 | $tokenMap[$i] = Tokens::T_PAAMAYIM_NEKUDOTAYIM; |
267 | - } elseif(T_OPEN_TAG_WITH_ECHO === $i) { |
|
267 | + } elseif (T_OPEN_TAG_WITH_ECHO === $i) { |
|
268 | 268 | // T_OPEN_TAG_WITH_ECHO with dropped T_OPEN_TAG results in T_ECHO |
269 | 269 | $tokenMap[$i] = Tokens::T_ECHO; |
270 | - } elseif(T_CLOSE_TAG === $i) { |
|
270 | + } elseif (T_CLOSE_TAG === $i) { |
|
271 | 271 | // T_CLOSE_TAG is equivalent to ';' |
272 | 272 | $tokenMap[$i] = ord(';'); |
273 | 273 | } elseif ('UNKNOWN' !== $name = token_name($i)) { |
@@ -55,7 +55,7 @@ discard block |
||
55 | 55 | if ('\'' === $str[$bLength]) { |
56 | 56 | return str_replace( |
57 | 57 | array('\\\\', '\\\''), |
58 | - array( '\\', '\''), |
|
58 | + array('\\', '\''), |
|
59 | 59 | substr($str, $bLength + 1, -1) |
60 | 60 | ); |
61 | 61 | } else { |
@@ -110,14 +110,14 @@ discard block |
||
110 | 110 | return chr($num); |
111 | 111 | } |
112 | 112 | if ($num <= 0x7FF) { |
113 | - return chr(($num>>6) + 0xC0) . chr(($num&0x3F) + 0x80); |
|
113 | + return chr(($num >> 6) + 0xC0) . chr(($num & 0x3F) + 0x80); |
|
114 | 114 | } |
115 | 115 | if ($num <= 0xFFFF) { |
116 | - return chr(($num>>12) + 0xE0) . chr((($num>>6)&0x3F) + 0x80) . chr(($num&0x3F) + 0x80); |
|
116 | + return chr(($num >> 12) + 0xE0) . chr((($num >> 6) & 0x3F) + 0x80) . chr(($num & 0x3F) + 0x80); |
|
117 | 117 | } |
118 | 118 | if ($num <= 0x1FFFFF) { |
119 | - return chr(($num>>18) + 0xF0) . chr((($num>>12)&0x3F) + 0x80) |
|
120 | - . chr((($num>>6)&0x3F) + 0x80) . chr(($num&0x3F) + 0x80); |
|
119 | + return chr(($num >> 18) + 0xF0) . chr((($num >> 12) & 0x3F) + 0x80) |
|
120 | + . chr((($num >> 6) & 0x3F) + 0x80) . chr(($num & 0x3F) + 0x80); |
|
121 | 121 | } |
122 | 122 | throw new Error('Invalid UTF-8 codepoint escape sequence: Codepoint too large'); |
123 | 123 | } |
@@ -36,7 +36,7 @@ |
||
36 | 36 | public function __construct($name, array $subNodes = array(), array $attributes = array()) { |
37 | 37 | parent::__construct($attributes); |
38 | 38 | $this->type = isset($subNodes['type']) ? $subNodes['type'] : 0; |
39 | - $this->byRef = isset($subNodes['byRef']) ? $subNodes['byRef'] : false; |
|
39 | + $this->byRef = isset($subNodes['byRef']) ? $subNodes['byRef'] : false; |
|
40 | 40 | $this->name = $name; |
41 | 41 | $this->params = isset($subNodes['params']) ? $subNodes['params'] : array(); |
42 | 42 | $this->returnType = isset($subNodes['returnType']) ? $subNodes['returnType'] : null; |
@@ -7,10 +7,10 @@ |
||
7 | 7 | |
8 | 8 | class Class_ extends ClassLike |
9 | 9 | { |
10 | - const MODIFIER_PUBLIC = 1; |
|
11 | - const MODIFIER_PROTECTED = 2; |
|
12 | - const MODIFIER_PRIVATE = 4; |
|
13 | - const MODIFIER_STATIC = 8; |
|
10 | + const MODIFIER_PUBLIC = 1; |
|
11 | + const MODIFIER_PROTECTED = 2; |
|
12 | + const MODIFIER_PRIVATE = 4; |
|
13 | + const MODIFIER_STATIC = 8; |
|
14 | 14 | const MODIFIER_ABSTRACT = 16; |
15 | 15 | const MODIFIER_FINAL = 32; |
16 | 16 |
@@ -78,7 +78,7 @@ |
||
78 | 78 | } |
79 | 79 | |
80 | 80 | foreach ($node->getSubNodeNames() as $name) { |
81 | - $subNode =& $node->$name; |
|
81 | + $subNode = & $node->$name; |
|
82 | 82 | |
83 | 83 | if (is_array($subNode)) { |
84 | 84 | $subNode = $this->traverseArray($subNode); |
@@ -7,8 +7,8 @@ |
||
7 | 7 | */ |
8 | 8 | class NodeVisitorAbstract implements NodeVisitor |
9 | 9 | { |
10 | - public function beforeTraverse(array $nodes) { } |
|
10 | + public function beforeTraverse(array $nodes) { } |
|
11 | 11 | public function enterNode(Node $node) { } |
12 | 12 | public function leaveNode(Node $node) { } |
13 | - public function afterTraverse(array $nodes) { } |
|
13 | + public function afterTraverse(array $nodes) { } |
|
14 | 14 | } |
15 | 15 | \ No newline at end of file |
@@ -190,765 +190,765 @@ discard block |
||
190 | 190 | ); |
191 | 191 | |
192 | 192 | protected $tokenToSymbol = array( |
193 | - 0, 157, 157, 157, 157, 157, 157, 157, 157, 157, |
|
194 | - 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, |
|
195 | - 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, |
|
196 | - 157, 157, 157, 53, 156, 157, 153, 52, 35, 157, |
|
197 | - 151, 152, 50, 47, 7, 48, 49, 51, 157, 157, |
|
198 | - 157, 157, 157, 157, 157, 157, 157, 157, 29, 148, |
|
199 | - 41, 15, 43, 28, 65, 157, 157, 157, 157, 157, |
|
200 | - 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, |
|
201 | - 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, |
|
202 | - 157, 67, 157, 155, 34, 157, 154, 157, 157, 157, |
|
203 | - 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, |
|
204 | - 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, |
|
205 | - 157, 157, 157, 149, 33, 150, 55, 157, 157, 157, |
|
206 | - 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, |
|
207 | - 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, |
|
208 | - 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, |
|
209 | - 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, |
|
210 | - 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, |
|
211 | - 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, |
|
212 | - 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, |
|
213 | - 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, |
|
214 | - 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, |
|
215 | - 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, |
|
216 | - 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, |
|
217 | - 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, |
|
218 | - 157, 157, 157, 157, 157, 157, 1, 2, 3, 4, |
|
219 | - 5, 6, 8, 9, 10, 11, 12, 13, 14, 16, |
|
220 | - 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, |
|
221 | - 27, 30, 31, 32, 36, 37, 38, 39, 40, 42, |
|
222 | - 44, 45, 46, 54, 56, 57, 58, 59, 60, 61, |
|
223 | - 62, 63, 64, 66, 68, 69, 70, 71, 72, 73, |
|
224 | - 74, 75, 76, 77, 78, 79, 80, 81, 157, 157, |
|
225 | - 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, |
|
226 | - 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, |
|
227 | - 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, |
|
228 | - 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, |
|
229 | - 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, |
|
230 | - 132, 133, 134, 135, 136, 137, 157, 157, 157, 157, |
|
231 | - 157, 157, 138, 139, 140, 141, 142, 143, 144, 145, |
|
232 | - 146, 147 |
|
193 | + 0, 157, 157, 157, 157, 157, 157, 157, 157, 157, |
|
194 | + 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, |
|
195 | + 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, |
|
196 | + 157, 157, 157, 53, 156, 157, 153, 52, 35, 157, |
|
197 | + 151, 152, 50, 47, 7, 48, 49, 51, 157, 157, |
|
198 | + 157, 157, 157, 157, 157, 157, 157, 157, 29, 148, |
|
199 | + 41, 15, 43, 28, 65, 157, 157, 157, 157, 157, |
|
200 | + 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, |
|
201 | + 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, |
|
202 | + 157, 67, 157, 155, 34, 157, 154, 157, 157, 157, |
|
203 | + 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, |
|
204 | + 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, |
|
205 | + 157, 157, 157, 149, 33, 150, 55, 157, 157, 157, |
|
206 | + 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, |
|
207 | + 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, |
|
208 | + 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, |
|
209 | + 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, |
|
210 | + 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, |
|
211 | + 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, |
|
212 | + 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, |
|
213 | + 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, |
|
214 | + 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, |
|
215 | + 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, |
|
216 | + 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, |
|
217 | + 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, |
|
218 | + 157, 157, 157, 157, 157, 157, 1, 2, 3, 4, |
|
219 | + 5, 6, 8, 9, 10, 11, 12, 13, 14, 16, |
|
220 | + 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, |
|
221 | + 27, 30, 31, 32, 36, 37, 38, 39, 40, 42, |
|
222 | + 44, 45, 46, 54, 56, 57, 58, 59, 60, 61, |
|
223 | + 62, 63, 64, 66, 68, 69, 70, 71, 72, 73, |
|
224 | + 74, 75, 76, 77, 78, 79, 80, 81, 157, 157, |
|
225 | + 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, |
|
226 | + 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, |
|
227 | + 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, |
|
228 | + 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, |
|
229 | + 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, |
|
230 | + 132, 133, 134, 135, 136, 137, 157, 157, 157, 157, |
|
231 | + 157, 157, 138, 139, 140, 141, 142, 143, 144, 145, |
|
232 | + 146, 147 |
|
233 | 233 | ); |
234 | 234 | |
235 | 235 | protected $action = array( |
236 | - 814, 70, 71, 440, 72, 73,-32766,-32766,-32766,-32766, |
|
237 | - 74, 75, 145, 76, 234, 235, 236, 237, 238, 239, |
|
238 | - 240, 241, 242, 0, 243, 244, 245, 246, 247, 248, |
|
239 | - 249, 250, 251, 252, 253, 254,-32766,-32766,-32766,-32766, |
|
240 | - -32766,-32767,-32767,-32767,-32767, 64, 77, 78, 460, 255, |
|
241 | - 256, 1189, 79, 458, 80, 309, 310, 81, 82, 83, |
|
242 | - 84, 85, 86, 87, 88, 315, 42, 317, 89, 433, |
|
243 | - 441, 232, 233, 645, 1076, 1077, 483, 387, 1167, 592, |
|
244 | - 803, 432, 484, 56, 27, 442, 639, 485, 376, 486, |
|
245 | - 218, 487, 65, 68, 443, 1196, 882, 883, 46, 47, |
|
246 | - 488, 444, 858, 48, 489, 490, 491, 90, 1133, 512, |
|
247 | - 369, 370, 445, 316, 785, 830, 495, 496, 492, 493, |
|
248 | - 494, 934, 935, 936, 933, 932, 931, 134, 497, 498, |
|
249 | - 368, 1082, 1083, 1084, 1085, 1079, 1080, 326, 49, 312, |
|
250 | - 631, 480, 512, 1086, 1081, 445, 448, 809, 642, 439, |
|
251 | - 57, 298, 351, 336, 338, 340, 674, 675, 676, 677, |
|
252 | - 678, 137, 679, 680, 681, 717, 718,-32766,-32766,-32766, |
|
253 | - -32766,-32766,-32766, 459, 135, 138, 51, 121, 122, 123, |
|
254 | - 124, 125, 126, 127, 128, 129, 130, 131, 132, 755, |
|
255 | - -32766, 324,-32766,-32766,-32766,-32766,-32766,-32766,-32767,-32767, |
|
256 | - -32767,-32767,-32767, 252, 253, 254, 632, 497, 682, 445, |
|
257 | - -32766,-32766,-32766, 912,-32766,-32766,-32766, 964, 966, 255, |
|
258 | - 256, 859, 683, 684, 685, 686, 687, 688, 689, 800, |
|
259 | - -32766, 740,-32766,-32766,-32766,-32766,-32766,-32766, 690, 691, |
|
260 | - 692, 693, 694, 695, 696, 697, 698, 699, 700, 720, |
|
261 | - 721, 722, 723, 724, 712, 713, 714, 715, 716, 701, |
|
262 | - 702, 703, 704, 705, 706, 707, 734, 735, 736, 737, |
|
263 | - 738, 739, 708, 709, 710, 711, 467, 732, 730, 731, |
|
264 | - 727, 728, 907, 719, 725, 726, 94, 95, 96, -483, |
|
265 | - -202, 117, 118, 119, 1043, 319, 1161, 729, 1199,-32766, |
|
266 | - 1201, 1200, 742, 35, 1167,-32766, 50, 120, 97, 98, |
|
267 | - 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, |
|
268 | - 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, |
|
269 | - 119,-32766, 319, 313, 231, 232, 233, 1053, 898,-32766, |
|
270 | - -32766,-32766, 1025, 461, 120,-32766,-32766,-32766,-32766,-32766, |
|
271 | - -32766,-32766,-32766,-32766, 218,-32767,-32767,-32767,-32767,-32766, |
|
272 | - 222,-32766,-32766,-32766,-32766, 313, 143, 41, 512,-32766, |
|
273 | - 359, 445,-32766,-32766,-32766, 742, 449, 67, 351,-32766, |
|
274 | - 435, 147,-32766,-32766,-32766, 589,-32766, 300,-32766, 139, |
|
275 | - -32766, 1161,-32766,-32766,-32766,-32766,-32766,-32766,-32766,-32766, |
|
276 | - 448,-32766,-32766,-32766, 756, 757,-32766, 742,-32766,-32766, |
|
277 | - 511,-32766, 302, -201,-32766,-32766,-32766,-32766,-32766, 45, |
|
278 | - -32766, 22,-32766, 1167, 1189,-32766,-32766, -255, 345,-32766, |
|
279 | - -32766,-32766, 448, 512,-32766,-32766, 445, 1025,-32766,-32766, |
|
280 | - -32766,-32766, 511, 647, 908, 142,-32766,-32766, 427,-32766, |
|
281 | - 888,-32766, 490, 491, -187, -187, -187,-32766,-32766, 136, |
|
282 | - 314, 785, 830, 495, 496, 359,-32766, 654, -1, 1025, |
|
283 | - 353, 490, 491, 249, 250, 251, 1171, 142,-32766,-32766, |
|
284 | - 785, 830, 495, 496, 801, 358, 141,-32767,-32767,-32767, |
|
285 | - -32767, 112, 113, 114, 115, 116,-32766, 351, 1132,-32766, |
|
286 | - -32766,-32766, 742, 231, 232, 233,-32766, 666, -187,-32766, |
|
287 | - -32766,-32766, 889,-32766, 52,-32766, 448,-32766, 341,-32766, |
|
288 | - -32766,-32766,-32766, 218,-32766,-32766,-32766, 448,-32766,-32766, |
|
289 | - -32766, 659, 1174,-32766, 742, 133,-32766, 511,-32766,-32766, |
|
290 | - 448,-32766,-32766,-32766,-32766,-32766, 561,-32766, 144,-32766, |
|
291 | - 1025, 598,-32766, 114, 115, 116,-32766,-32766,-32766, 448, |
|
292 | - 225,-32766,-32766, 454, 260,-32766, 644, 218,-32766, 511, |
|
293 | - 261, 434, 262,-32766,-32766, 1088,-32766, 335,-32766, 224, |
|
294 | - 448, 490, 491,-32766,-32766,-32766,-32766,-32766, 34, 1025, |
|
295 | - 748, 830, 495, 496, 348, 233, 658, 934, 935, 936, |
|
296 | - 933, 932, 931, 926, 448,-32766,-32766, 325, 1088,-32766, |
|
297 | - 223, 350, 301, 218,-32766, 742, 397,-32766,-32766,-32766, |
|
298 | - 255, 256,-32766,-32766,-32766, 663,-32766, 813,-32766, 146, |
|
299 | - -32766, 469, 28,-32766, 474, 604, 319,-32766,-32766,-32766, |
|
300 | - 448, 823,-32766,-32766, 148, 377,-32766, 1127,-32766,-32766, |
|
301 | - 511, 231, 232, 233, 742, 120, 257,-32766,-32766,-32766, |
|
302 | - 62,-32766,-32766,-32766, 66,-32766, 59,-32766, 617,-32766, |
|
303 | - 1025, 218,-32766, 756, 757, 60,-32766,-32766,-32766, 448, |
|
304 | - 61,-32766,-32766, 63, 434,-32766,-32766,-32766,-32766, 511, |
|
305 | - 335,-32766, 69, 311, 490, 491,-32766,-32766,-32766,-32766, |
|
306 | - 490, 491, 317, 748, 830, 495, 496, 611, 612, 785, |
|
307 | - 830, 495, 496, 537, 231, 232, 233,-32766, 532,-32766, |
|
308 | - -32766,-32766,-32766,-32766, 350,-32766,-32766, 911, 662,-32766, |
|
309 | - 743, 751, 923, 669, 218, 742, 533, 924, 550,-32766, |
|
310 | - 749, 649,-32766,-32766,-32766, 551,-32766, 742,-32766, 453, |
|
311 | - -32766, 769, 455,-32766, 1194, 630, 553,-32766,-32766,-32766, |
|
312 | - 448,-32766,-32766,-32766, 624, 614,-32766, 742, 457,-32766, |
|
313 | - 511,-32766, 536,-32766,-32766,-32766,-32766,-32766,-32766, 1046, |
|
314 | - -32766, 357,-32766, 595, 1025,-32766, 1189, 607, 297,-32766, |
|
315 | - -32766,-32766, 448, 356,-32766,-32766, 39, -70,-32766, 452, |
|
316 | - 448,-32766, 511, 831, 434,-32766,-32766,-32766, 347,-32766, |
|
317 | - 335, 478, 638, 497, 490, 491, 1025, 608, 490, 491, |
|
318 | - 231, 232, 233, 748, 830, 495, 496, 785, 830, 495, |
|
319 | - 496, 349, 93, 832, 1087, 337, 490, 491,-32766,-32766, |
|
320 | - 218, 259, 1069,-32766, 350, 785, 830, 495, 496, 742, |
|
321 | - 346, 750, 352,-32766, 30, 817,-32766,-32766,-32766, -484, |
|
322 | - -32766, 1126,-32766, -483,-32766, 339, 404,-32766, 405, 31, |
|
323 | - -384,-32766,-32766,-32766, 448,-32766,-32766,-32766, -392, 413, |
|
324 | - -32766, 742, -393,-32766, 511,-32766,-32766, 36,-32766,-32766, |
|
325 | - -32766,-32766,-32766, 38,-32766, 390,-32766, 1025, 454,-32766, |
|
326 | - 429, 428, 543,-32766,-32766,-32766, 448, 392,-32766,-32766, |
|
327 | - 825, 653,-32766, 812, 754,-32766, 511, 650,-32766, 55, |
|
328 | - 793,-32766, 54,-32766, 490, 491, 802, 917, 753, 1025, |
|
329 | - 490, 491, 752, 785, 830, 495, 496, 490, 491, 785, |
|
330 | - 830, 495, 496,-32766,-32766,-32766, 785, 830, 495, 496, |
|
331 | - 799, 915, 795,-32766, 916, 919,-32766, 918, 842, 43, |
|
332 | - 615, 1027, 742,-32766, 844, 850,-32766, 652, 846,-32766, |
|
333 | - -32766,-32766, 655,-32766, 786,-32766, 788,-32766, 790, 805, |
|
334 | - -32766, 861, 852, 853,-32766,-32766,-32766, 448,-32766,-32766, |
|
335 | - -32766,-32766, 651,-32766, 742, 811,-32766, 511,-32766, 798, |
|
336 | - 796,-32766,-32766,-32766,-32766,-32766, 794,-32766, 804,-32766, |
|
337 | - 344, 425,-32766, 426, 656, 661,-32766,-32766,-32766, 448, |
|
338 | - 664,-32766,-32766, 343, 140,-32766, 643, 665,-32766, 511, |
|
339 | - -186, -186, -186, 797,-32766, 667,-32766, 668, 648, 1004, |
|
340 | - 490, 491, 851, 1039, 827, 1198, 828, 490, 491, 785, |
|
341 | - 830, 495, 496, 829, 1197, 473, 785, 830, 495, 496, |
|
342 | - 1195,-32766, 760, 761, 1168,-32766,-32766, 742, 1166, 1152, |
|
343 | - 1164,-32766, 1067, 900,-32766,-32766,-32766, 819,-32766, 758, |
|
344 | - -32766, 258,-32766, 759, -186,-32766, 1162, 1172, 0,-32766, |
|
345 | - -32766,-32766, 448, 40,-32766,-32766,-32766, 44,-32766, 226, |
|
346 | - 227,-32766, 511, 437, 431, 228, 354, 229, 323,-32766, |
|
347 | - 322, 321, 320, -195, -195, -195, 621, 308, 307, 220, |
|
348 | - -197, -197, -197, 299, 226, 227, 221, 1076, 1077, 92, |
|
349 | - 228,-32766, 229, 91, 58, 1078, 490, 491,-32766,-32766, |
|
350 | - 53, 1023, 0, 583, 220, 785, 830, 495, 496, -203, |
|
351 | - 1029, 1092, 1076, 1077, 490, 491,-32766, 890, 1033, 1030, |
|
352 | - 1078, 490, 491, 785, 830, 495, 496, 490, 491, 636, |
|
353 | - 785, 830, 495, 496, 574, 1146, 785, 830, 495, 496, |
|
354 | - 481, 477, 579, 1005, 1082, 1083, 1084, 1085, 1079, 1080, |
|
355 | - 403, 475, 470, 1093, 398, 25, 1086, 1081, 24, 23, |
|
356 | - 1193, -202, 0, 230, 826,-32766, 1066, 579, 1163, 1082, |
|
357 | - 1083, 1084, 1085, 1079, 1080, 403, 629, 1147, 1151, 1165, |
|
358 | - 1052, 1086, 1081, 490, 491, 1037, 1038, 1035, 230, 1036, |
|
359 | - -32766, 1034, 785, 830, 495, 496, 0, 0, 490, 491, |
|
360 | - 0, 882, 883, 0, 0, 0, 0, 785, 830, 495, |
|
361 | - 496, 0, 0, 0, 512, 0, 0, 445, 0, 0, |
|
362 | - 1028, 0, 0, -206 |
|
236 | + 814, 70, 71, 440, 72, 73, -32766, -32766, -32766, -32766, |
|
237 | + 74, 75, 145, 76, 234, 235, 236, 237, 238, 239, |
|
238 | + 240, 241, 242, 0, 243, 244, 245, 246, 247, 248, |
|
239 | + 249, 250, 251, 252, 253, 254, -32766, -32766, -32766, -32766, |
|
240 | + -32766, -32767, -32767, -32767, -32767, 64, 77, 78, 460, 255, |
|
241 | + 256, 1189, 79, 458, 80, 309, 310, 81, 82, 83, |
|
242 | + 84, 85, 86, 87, 88, 315, 42, 317, 89, 433, |
|
243 | + 441, 232, 233, 645, 1076, 1077, 483, 387, 1167, 592, |
|
244 | + 803, 432, 484, 56, 27, 442, 639, 485, 376, 486, |
|
245 | + 218, 487, 65, 68, 443, 1196, 882, 883, 46, 47, |
|
246 | + 488, 444, 858, 48, 489, 490, 491, 90, 1133, 512, |
|
247 | + 369, 370, 445, 316, 785, 830, 495, 496, 492, 493, |
|
248 | + 494, 934, 935, 936, 933, 932, 931, 134, 497, 498, |
|
249 | + 368, 1082, 1083, 1084, 1085, 1079, 1080, 326, 49, 312, |
|
250 | + 631, 480, 512, 1086, 1081, 445, 448, 809, 642, 439, |
|
251 | + 57, 298, 351, 336, 338, 340, 674, 675, 676, 677, |
|
252 | + 678, 137, 679, 680, 681, 717, 718, -32766, -32766, -32766, |
|
253 | + -32766, -32766, -32766, 459, 135, 138, 51, 121, 122, 123, |
|
254 | + 124, 125, 126, 127, 128, 129, 130, 131, 132, 755, |
|
255 | + -32766, 324, -32766, -32766, -32766, -32766, -32766, -32766, -32767, -32767, |
|
256 | + -32767, -32767, -32767, 252, 253, 254, 632, 497, 682, 445, |
|
257 | + -32766, -32766, -32766, 912, -32766, -32766, -32766, 964, 966, 255, |
|
258 | + 256, 859, 683, 684, 685, 686, 687, 688, 689, 800, |
|
259 | + -32766, 740, -32766, -32766, -32766, -32766, -32766, -32766, 690, 691, |
|
260 | + 692, 693, 694, 695, 696, 697, 698, 699, 700, 720, |
|
261 | + 721, 722, 723, 724, 712, 713, 714, 715, 716, 701, |
|
262 | + 702, 703, 704, 705, 706, 707, 734, 735, 736, 737, |
|
263 | + 738, 739, 708, 709, 710, 711, 467, 732, 730, 731, |
|
264 | + 727, 728, 907, 719, 725, 726, 94, 95, 96, -483, |
|
265 | + -202, 117, 118, 119, 1043, 319, 1161, 729, 1199, -32766, |
|
266 | + 1201, 1200, 742, 35, 1167, -32766, 50, 120, 97, 98, |
|
267 | + 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, |
|
268 | + 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, |
|
269 | + 119, -32766, 319, 313, 231, 232, 233, 1053, 898, -32766, |
|
270 | + -32766, -32766, 1025, 461, 120, -32766, -32766, -32766, -32766, -32766, |
|
271 | + -32766, -32766, -32766, -32766, 218, -32767, -32767, -32767, -32767, -32766, |
|
272 | + 222, -32766, -32766, -32766, -32766, 313, 143, 41, 512, -32766, |
|
273 | + 359, 445, -32766, -32766, -32766, 742, 449, 67, 351, -32766, |
|
274 | + 435, 147, -32766, -32766, -32766, 589, -32766, 300, -32766, 139, |
|
275 | + -32766, 1161, -32766, -32766, -32766, -32766, -32766, -32766, -32766, -32766, |
|
276 | + 448, -32766, -32766, -32766, 756, 757, -32766, 742, -32766, -32766, |
|
277 | + 511, -32766, 302, -201, -32766, -32766, -32766, -32766, -32766, 45, |
|
278 | + -32766, 22, -32766, 1167, 1189, -32766, -32766, -255, 345, -32766, |
|
279 | + -32766, -32766, 448, 512, -32766, -32766, 445, 1025, -32766, -32766, |
|
280 | + -32766, -32766, 511, 647, 908, 142, -32766, -32766, 427, -32766, |
|
281 | + 888, -32766, 490, 491, -187, -187, -187, -32766, -32766, 136, |
|
282 | + 314, 785, 830, 495, 496, 359, -32766, 654, -1, 1025, |
|
283 | + 353, 490, 491, 249, 250, 251, 1171, 142, -32766, -32766, |
|
284 | + 785, 830, 495, 496, 801, 358, 141, -32767, -32767, -32767, |
|
285 | + -32767, 112, 113, 114, 115, 116, -32766, 351, 1132, -32766, |
|
286 | + -32766, -32766, 742, 231, 232, 233, -32766, 666, -187, -32766, |
|
287 | + -32766, -32766, 889, -32766, 52, -32766, 448, -32766, 341, -32766, |
|
288 | + -32766, -32766, -32766, 218, -32766, -32766, -32766, 448, -32766, -32766, |
|
289 | + -32766, 659, 1174, -32766, 742, 133, -32766, 511, -32766, -32766, |
|
290 | + 448, -32766, -32766, -32766, -32766, -32766, 561, -32766, 144, -32766, |
|
291 | + 1025, 598, -32766, 114, 115, 116, -32766, -32766, -32766, 448, |
|
292 | + 225, -32766, -32766, 454, 260, -32766, 644, 218, -32766, 511, |
|
293 | + 261, 434, 262, -32766, -32766, 1088, -32766, 335, -32766, 224, |
|
294 | + 448, 490, 491, -32766, -32766, -32766, -32766, -32766, 34, 1025, |
|
295 | + 748, 830, 495, 496, 348, 233, 658, 934, 935, 936, |
|
296 | + 933, 932, 931, 926, 448, -32766, -32766, 325, 1088, -32766, |
|
297 | + 223, 350, 301, 218, -32766, 742, 397, -32766, -32766, -32766, |
|
298 | + 255, 256, -32766, -32766, -32766, 663, -32766, 813, -32766, 146, |
|
299 | + -32766, 469, 28, -32766, 474, 604, 319, -32766, -32766, -32766, |
|
300 | + 448, 823, -32766, -32766, 148, 377, -32766, 1127, -32766, -32766, |
|
301 | + 511, 231, 232, 233, 742, 120, 257, -32766, -32766, -32766, |
|
302 | + 62, -32766, -32766, -32766, 66, -32766, 59, -32766, 617, -32766, |
|
303 | + 1025, 218, -32766, 756, 757, 60, -32766, -32766, -32766, 448, |
|
304 | + 61, -32766, -32766, 63, 434, -32766, -32766, -32766, -32766, 511, |
|
305 | + 335, -32766, 69, 311, 490, 491, -32766, -32766, -32766, -32766, |
|
306 | + 490, 491, 317, 748, 830, 495, 496, 611, 612, 785, |
|
307 | + 830, 495, 496, 537, 231, 232, 233, -32766, 532, -32766, |
|
308 | + -32766, -32766, -32766, -32766, 350, -32766, -32766, 911, 662, -32766, |
|
309 | + 743, 751, 923, 669, 218, 742, 533, 924, 550, -32766, |
|
310 | + 749, 649, -32766, -32766, -32766, 551, -32766, 742, -32766, 453, |
|
311 | + -32766, 769, 455, -32766, 1194, 630, 553, -32766, -32766, -32766, |
|
312 | + 448, -32766, -32766, -32766, 624, 614, -32766, 742, 457, -32766, |
|
313 | + 511, -32766, 536, -32766, -32766, -32766, -32766, -32766, -32766, 1046, |
|
314 | + -32766, 357, -32766, 595, 1025, -32766, 1189, 607, 297, -32766, |
|
315 | + -32766, -32766, 448, 356, -32766, -32766, 39, -70, -32766, 452, |
|
316 | + 448, -32766, 511, 831, 434, -32766, -32766, -32766, 347, -32766, |
|
317 | + 335, 478, 638, 497, 490, 491, 1025, 608, 490, 491, |
|
318 | + 231, 232, 233, 748, 830, 495, 496, 785, 830, 495, |
|
319 | + 496, 349, 93, 832, 1087, 337, 490, 491, -32766, -32766, |
|
320 | + 218, 259, 1069, -32766, 350, 785, 830, 495, 496, 742, |
|
321 | + 346, 750, 352, -32766, 30, 817, -32766, -32766, -32766, -484, |
|
322 | + -32766, 1126, -32766, -483, -32766, 339, 404, -32766, 405, 31, |
|
323 | + -384, -32766, -32766, -32766, 448, -32766, -32766, -32766, -392, 413, |
|
324 | + -32766, 742, -393, -32766, 511, -32766, -32766, 36, -32766, -32766, |
|
325 | + -32766, -32766, -32766, 38, -32766, 390, -32766, 1025, 454, -32766, |
|
326 | + 429, 428, 543, -32766, -32766, -32766, 448, 392, -32766, -32766, |
|
327 | + 825, 653, -32766, 812, 754, -32766, 511, 650, -32766, 55, |
|
328 | + 793, -32766, 54, -32766, 490, 491, 802, 917, 753, 1025, |
|
329 | + 490, 491, 752, 785, 830, 495, 496, 490, 491, 785, |
|
330 | + 830, 495, 496, -32766, -32766, -32766, 785, 830, 495, 496, |
|
331 | + 799, 915, 795, -32766, 916, 919, -32766, 918, 842, 43, |
|
332 | + 615, 1027, 742, -32766, 844, 850, -32766, 652, 846, -32766, |
|
333 | + -32766, -32766, 655, -32766, 786, -32766, 788, -32766, 790, 805, |
|
334 | + -32766, 861, 852, 853, -32766, -32766, -32766, 448, -32766, -32766, |
|
335 | + -32766, -32766, 651, -32766, 742, 811, -32766, 511, -32766, 798, |
|
336 | + 796, -32766, -32766, -32766, -32766, -32766, 794, -32766, 804, -32766, |
|
337 | + 344, 425, -32766, 426, 656, 661, -32766, -32766, -32766, 448, |
|
338 | + 664, -32766, -32766, 343, 140, -32766, 643, 665, -32766, 511, |
|
339 | + -186, -186, -186, 797, -32766, 667, -32766, 668, 648, 1004, |
|
340 | + 490, 491, 851, 1039, 827, 1198, 828, 490, 491, 785, |
|
341 | + 830, 495, 496, 829, 1197, 473, 785, 830, 495, 496, |
|
342 | + 1195, -32766, 760, 761, 1168, -32766, -32766, 742, 1166, 1152, |
|
343 | + 1164, -32766, 1067, 900, -32766, -32766, -32766, 819, -32766, 758, |
|
344 | + -32766, 258, -32766, 759, -186, -32766, 1162, 1172, 0, -32766, |
|
345 | + -32766, -32766, 448, 40, -32766, -32766, -32766, 44, -32766, 226, |
|
346 | + 227, -32766, 511, 437, 431, 228, 354, 229, 323, -32766, |
|
347 | + 322, 321, 320, -195, -195, -195, 621, 308, 307, 220, |
|
348 | + -197, -197, -197, 299, 226, 227, 221, 1076, 1077, 92, |
|
349 | + 228, -32766, 229, 91, 58, 1078, 490, 491, -32766, -32766, |
|
350 | + 53, 1023, 0, 583, 220, 785, 830, 495, 496, -203, |
|
351 | + 1029, 1092, 1076, 1077, 490, 491, -32766, 890, 1033, 1030, |
|
352 | + 1078, 490, 491, 785, 830, 495, 496, 490, 491, 636, |
|
353 | + 785, 830, 495, 496, 574, 1146, 785, 830, 495, 496, |
|
354 | + 481, 477, 579, 1005, 1082, 1083, 1084, 1085, 1079, 1080, |
|
355 | + 403, 475, 470, 1093, 398, 25, 1086, 1081, 24, 23, |
|
356 | + 1193, -202, 0, 230, 826, -32766, 1066, 579, 1163, 1082, |
|
357 | + 1083, 1084, 1085, 1079, 1080, 403, 629, 1147, 1151, 1165, |
|
358 | + 1052, 1086, 1081, 490, 491, 1037, 1038, 1035, 230, 1036, |
|
359 | + -32766, 1034, 785, 830, 495, 496, 0, 0, 490, 491, |
|
360 | + 0, 882, 883, 0, 0, 0, 0, 785, 830, 495, |
|
361 | + 496, 0, 0, 0, 512, 0, 0, 445, 0, 0, |
|
362 | + 1028, 0, 0, -206 |
|
363 | 363 | ); |
364 | 364 | |
365 | 365 | protected $actionCheck = array( |
366 | - 1, 2, 3, 4, 5, 6, 31, 32, 33, 34, |
|
367 | - 11, 12, 67, 14, 31, 32, 33, 34, 35, 36, |
|
368 | - 37, 38, 39, 0, 41, 42, 43, 44, 45, 46, |
|
369 | - 47, 48, 49, 50, 51, 52, 31, 32, 33, 34, |
|
370 | - 35, 36, 37, 38, 39, 67, 47, 48, 7, 66, |
|
371 | - 67, 82, 53, 29, 55, 56, 57, 58, 59, 60, |
|
372 | - 61, 62, 63, 64, 65, 7, 67, 68, 69, 70, |
|
373 | - 71, 9, 10, 29, 75, 76, 77, 79, 79, 87, |
|
374 | - 81, 7, 83, 84, 85, 86, 77, 88, 7, 90, |
|
375 | - 28, 92, 67, 67, 95, 150, 130, 131, 99, 100, |
|
376 | - 101, 102, 29, 104, 105, 113, 114, 108, 139, 143, |
|
377 | - 111, 112, 146, 35, 122, 123, 124, 125, 119, 120, |
|
378 | - 121, 112, 113, 114, 115, 116, 117, 149, 129, 130, |
|
379 | - 7, 132, 133, 134, 135, 136, 137, 138, 140, 141, |
|
380 | - 77, 7, 143, 144, 145, 146, 102, 148, 149, 7, |
|
381 | - 151, 13, 153, 154, 128, 156, 2, 3, 4, 5, |
|
382 | - 6, 13, 8, 9, 10, 11, 12, 8, 9, 10, |
|
383 | - 8, 9, 10, 149, 149, 149, 15, 16, 17, 18, |
|
384 | - 19, 20, 21, 22, 23, 24, 25, 26, 27, 148, |
|
385 | - 28, 7, 30, 31, 32, 33, 34, 35, 36, 37, |
|
386 | - 38, 39, 40, 50, 51, 52, 143, 129, 54, 146, |
|
387 | - 8, 9, 10, 150, 31, 32, 33, 56, 57, 66, |
|
388 | - 67, 148, 68, 69, 70, 71, 72, 73, 74, 148, |
|
389 | - 28, 77, 30, 31, 32, 33, 34, 35, 84, 85, |
|
390 | - 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, |
|
391 | - 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, |
|
392 | - 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, |
|
393 | - 116, 117, 118, 119, 120, 121, 7, 123, 124, 125, |
|
394 | - 126, 127, 148, 129, 130, 131, 8, 9, 10, 128, |
|
395 | - 152, 50, 51, 52, 152, 54, 79, 143, 77, 1, |
|
396 | - 79, 80, 77, 7, 79, 8, 28, 66, 30, 31, |
|
397 | - 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, |
|
398 | - 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, |
|
399 | - 52, 1, 54, 35, 8, 9, 10, 112, 79, 8, |
|
400 | - 9, 10, 12, 7, 66, 31, 32, 33, 34, 35, |
|
401 | - 36, 37, 38, 39, 28, 41, 42, 43, 44, 28, |
|
402 | - 7, 30, 31, 32, 33, 35, 149, 7, 143, 71, |
|
403 | - 153, 146, 8, 9, 10, 77, 151, 67, 153, 81, |
|
404 | - 123, 149, 84, 85, 86, 153, 88, 7, 90, 7, |
|
405 | - 92, 79, 28, 95, 30, 31, 32, 99, 100, 101, |
|
406 | - 102, 71, 104, 105, 102, 103, 108, 77, 151, 111, |
|
407 | - 112, 81, 153, 74, 84, 85, 86, 119, 88, 7, |
|
408 | - 90, 152, 92, 79, 82, 95, 1, 79, 7, 99, |
|
409 | - 100, 101, 102, 143, 104, 105, 146, 12, 108, 8, |
|
410 | - 9, 111, 112, 29, 148, 147, 148, 149, 146, 119, |
|
411 | - 152, 103, 113, 114, 96, 97, 98, 109, 1, 149, |
|
412 | - 35, 122, 123, 124, 125, 153, 118, 29, 0, 12, |
|
413 | - 7, 113, 114, 47, 48, 49, 77, 147, 148, 149, |
|
414 | - 122, 123, 124, 125, 148, 67, 29, 41, 42, 43, |
|
415 | - 44, 45, 46, 47, 48, 49, 71, 153, 156, 8, |
|
416 | - 9, 10, 77, 8, 9, 10, 81, 29, 150, 84, |
|
417 | - 85, 86, 152, 88, 13, 90, 102, 92, 82, 28, |
|
418 | - 95, 30, 31, 28, 99, 100, 101, 102, 71, 104, |
|
419 | - 105, 29, 152, 108, 77, 15, 111, 112, 81, 1, |
|
420 | - 102, 84, 85, 86, 119, 88, 128, 90, 149, 92, |
|
421 | - 12, 82, 95, 47, 48, 49, 99, 100, 101, 102, |
|
422 | - 15, 104, 105, 146, 15, 108, 149, 28, 111, 112, |
|
423 | - 15, 103, 15, 148, 149, 139, 119, 109, 1, 15, |
|
424 | - 102, 113, 114, 31, 32, 33, 34, 35, 103, 12, |
|
425 | - 122, 123, 124, 125, 109, 10, 29, 112, 113, 114, |
|
426 | - 115, 116, 117, 118, 102, 148, 149, 29, 139, 71, |
|
427 | - 15, 143, 35, 28, 31, 77, 78, 31, 32, 81, |
|
428 | - 66, 67, 84, 85, 86, 29, 88, 29, 90, 29, |
|
429 | - 92, 72, 73, 95, 72, 73, 54, 99, 100, 101, |
|
430 | - 102, 35, 104, 105, 97, 98, 108, 152, 71, 111, |
|
431 | - 112, 8, 9, 10, 77, 66, 13, 119, 81, 1, |
|
432 | - 67, 84, 85, 86, 67, 88, 67, 90, 74, 92, |
|
433 | - 12, 28, 95, 102, 103, 67, 99, 100, 101, 102, |
|
434 | - 67, 104, 105, 67, 103, 108, 148, 149, 111, 112, |
|
435 | - 109, 1, 67, 35, 113, 114, 119, 8, 9, 10, |
|
436 | - 113, 114, 68, 122, 123, 124, 125, 106, 107, 122, |
|
437 | - 123, 124, 125, 77, 8, 9, 10, 28, 77, 30, |
|
438 | - 31, 32, 33, 34, 143, 148, 149, 148, 149, 71, |
|
439 | - 77, 150, 148, 149, 28, 77, 77, 150, 77, 81, |
|
440 | - 148, 149, 84, 85, 86, 77, 88, 77, 90, 77, |
|
441 | - 92, 77, 77, 95, 77, 79, 94, 99, 100, 101, |
|
442 | - 102, 71, 104, 105, 79, 79, 108, 77, 86, 111, |
|
443 | - 112, 81, 79, 1, 84, 85, 86, 119, 88, 79, |
|
444 | - 90, 82, 92, 96, 12, 95, 82, 96, 94, 99, |
|
445 | - 100, 101, 102, 82, 104, 105, 94, 94, 108, 102, |
|
446 | - 102, 111, 112, 123, 103, 1, 148, 149, 127, 119, |
|
447 | - 109, 102, 89, 129, 113, 114, 12, 109, 113, 114, |
|
448 | - 8, 9, 10, 122, 123, 124, 125, 122, 123, 124, |
|
449 | - 125, 110, 149, 123, 139, 128, 113, 114, 148, 149, |
|
450 | - 28, 29, 152, 71, 143, 122, 123, 124, 125, 77, |
|
451 | - 126, 150, 126, 81, 142, 150, 84, 85, 86, 128, |
|
452 | - 88, 155, 90, 128, 92, 128, 146, 95, 146, 142, |
|
453 | - 142, 99, 100, 101, 102, 71, 104, 105, 142, 146, |
|
454 | - 108, 77, 142, 111, 112, 81, 1, 142, 84, 85, |
|
455 | - 86, 119, 88, 142, 90, 142, 92, 12, 146, 95, |
|
456 | - 146, 146, 146, 99, 100, 101, 102, 146, 104, 105, |
|
457 | - 147, 149, 108, 148, 148, 111, 112, 148, 1, 148, |
|
458 | - 148, 149, 148, 119, 113, 114, 148, 148, 148, 12, |
|
459 | - 113, 114, 148, 122, 123, 124, 125, 113, 114, 122, |
|
460 | - 123, 124, 125, 8, 9, 10, 122, 123, 124, 125, |
|
461 | - 148, 148, 148, 149, 148, 148, 71, 148, 148, 151, |
|
462 | - 155, 150, 77, 28, 148, 150, 81, 150, 148, 84, |
|
463 | - 85, 86, 149, 88, 150, 90, 148, 92, 148, 148, |
|
464 | - 95, 148, 148, 148, 99, 100, 101, 102, 71, 104, |
|
465 | - 105, 1, 148, 108, 77, 148, 111, 112, 81, 148, |
|
466 | - 148, 84, 85, 86, 119, 88, 148, 90, 148, 92, |
|
467 | - 149, 149, 95, 149, 149, 149, 99, 100, 101, 102, |
|
468 | - 149, 104, 105, 149, 149, 108, 149, 149, 111, 112, |
|
469 | - 96, 97, 98, 148, 149, 149, 119, 149, 149, 152, |
|
470 | - 113, 114, 150, 150, 150, 150, 150, 113, 114, 122, |
|
471 | - 123, 124, 125, 150, 150, 150, 122, 123, 124, 125, |
|
472 | - 150, 71, 150, 150, 150, 148, 149, 77, 150, 150, |
|
473 | - 150, 81, 150, 150, 84, 85, 86, 150, 88, 150, |
|
474 | - 90, 29, 92, 150, 150, 95, 150, 150, -1, 99, |
|
475 | - 100, 101, 102, 151, 104, 105, 151, 151, 108, 47, |
|
476 | - 48, 111, 112, 151, 151, 53, 151, 55, 151, 119, |
|
477 | - 151, 151, 151, 72, 73, 74, 93, 151, 151, 67, |
|
478 | - 72, 73, 74, 151, 47, 48, 151, 75, 76, 151, |
|
479 | - 53, 79, 55, 151, 151, 83, 113, 114, 148, 149, |
|
480 | - 151, 154, -1, 152, 67, 122, 123, 124, 125, 152, |
|
481 | - 152, 152, 75, 76, 113, 114, 79, 152, 152, 152, |
|
482 | - 83, 113, 114, 122, 123, 124, 125, 113, 114, 152, |
|
483 | - 122, 123, 124, 125, 152, 155, 122, 123, 124, 125, |
|
484 | - 152, 152, 130, 152, 132, 133, 134, 135, 136, 137, |
|
485 | - 138, 152, 152, 155, 152, 152, 144, 145, 152, 152, |
|
486 | - 155, 152, -1, 151, 150, 153, 155, 130, 155, 132, |
|
487 | - 133, 134, 135, 136, 137, 138, 91, 155, 155, 155, |
|
488 | - 155, 144, 145, 113, 114, 155, 155, 155, 151, 155, |
|
489 | - 153, 155, 122, 123, 124, 125, -1, -1, 113, 114, |
|
490 | - -1, 130, 131, -1, -1, -1, -1, 122, 123, 124, |
|
491 | - 125, -1, -1, -1, 143, -1, -1, 146, -1, -1, |
|
492 | - 150, -1, -1, 152 |
|
366 | + 1, 2, 3, 4, 5, 6, 31, 32, 33, 34, |
|
367 | + 11, 12, 67, 14, 31, 32, 33, 34, 35, 36, |
|
368 | + 37, 38, 39, 0, 41, 42, 43, 44, 45, 46, |
|
369 | + 47, 48, 49, 50, 51, 52, 31, 32, 33, 34, |
|
370 | + 35, 36, 37, 38, 39, 67, 47, 48, 7, 66, |
|
371 | + 67, 82, 53, 29, 55, 56, 57, 58, 59, 60, |
|
372 | + 61, 62, 63, 64, 65, 7, 67, 68, 69, 70, |
|
373 | + 71, 9, 10, 29, 75, 76, 77, 79, 79, 87, |
|
374 | + 81, 7, 83, 84, 85, 86, 77, 88, 7, 90, |
|
375 | + 28, 92, 67, 67, 95, 150, 130, 131, 99, 100, |
|
376 | + 101, 102, 29, 104, 105, 113, 114, 108, 139, 143, |
|
377 | + 111, 112, 146, 35, 122, 123, 124, 125, 119, 120, |
|
378 | + 121, 112, 113, 114, 115, 116, 117, 149, 129, 130, |
|
379 | + 7, 132, 133, 134, 135, 136, 137, 138, 140, 141, |
|
380 | + 77, 7, 143, 144, 145, 146, 102, 148, 149, 7, |
|
381 | + 151, 13, 153, 154, 128, 156, 2, 3, 4, 5, |
|
382 | + 6, 13, 8, 9, 10, 11, 12, 8, 9, 10, |
|
383 | + 8, 9, 10, 149, 149, 149, 15, 16, 17, 18, |
|
384 | + 19, 20, 21, 22, 23, 24, 25, 26, 27, 148, |
|
385 | + 28, 7, 30, 31, 32, 33, 34, 35, 36, 37, |
|
386 | + 38, 39, 40, 50, 51, 52, 143, 129, 54, 146, |
|
387 | + 8, 9, 10, 150, 31, 32, 33, 56, 57, 66, |
|
388 | + 67, 148, 68, 69, 70, 71, 72, 73, 74, 148, |
|
389 | + 28, 77, 30, 31, 32, 33, 34, 35, 84, 85, |
|
390 | + 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, |
|
391 | + 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, |
|
392 | + 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, |
|
393 | + 116, 117, 118, 119, 120, 121, 7, 123, 124, 125, |
|
394 | + 126, 127, 148, 129, 130, 131, 8, 9, 10, 128, |
|
395 | + 152, 50, 51, 52, 152, 54, 79, 143, 77, 1, |
|
396 | + 79, 80, 77, 7, 79, 8, 28, 66, 30, 31, |
|
397 | + 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, |
|
398 | + 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, |
|
399 | + 52, 1, 54, 35, 8, 9, 10, 112, 79, 8, |
|
400 | + 9, 10, 12, 7, 66, 31, 32, 33, 34, 35, |
|
401 | + 36, 37, 38, 39, 28, 41, 42, 43, 44, 28, |
|
402 | + 7, 30, 31, 32, 33, 35, 149, 7, 143, 71, |
|
403 | + 153, 146, 8, 9, 10, 77, 151, 67, 153, 81, |
|
404 | + 123, 149, 84, 85, 86, 153, 88, 7, 90, 7, |
|
405 | + 92, 79, 28, 95, 30, 31, 32, 99, 100, 101, |
|
406 | + 102, 71, 104, 105, 102, 103, 108, 77, 151, 111, |
|
407 | + 112, 81, 153, 74, 84, 85, 86, 119, 88, 7, |
|
408 | + 90, 152, 92, 79, 82, 95, 1, 79, 7, 99, |
|
409 | + 100, 101, 102, 143, 104, 105, 146, 12, 108, 8, |
|
410 | + 9, 111, 112, 29, 148, 147, 148, 149, 146, 119, |
|
411 | + 152, 103, 113, 114, 96, 97, 98, 109, 1, 149, |
|
412 | + 35, 122, 123, 124, 125, 153, 118, 29, 0, 12, |
|
413 | + 7, 113, 114, 47, 48, 49, 77, 147, 148, 149, |
|
414 | + 122, 123, 124, 125, 148, 67, 29, 41, 42, 43, |
|
415 | + 44, 45, 46, 47, 48, 49, 71, 153, 156, 8, |
|
416 | + 9, 10, 77, 8, 9, 10, 81, 29, 150, 84, |
|
417 | + 85, 86, 152, 88, 13, 90, 102, 92, 82, 28, |
|
418 | + 95, 30, 31, 28, 99, 100, 101, 102, 71, 104, |
|
419 | + 105, 29, 152, 108, 77, 15, 111, 112, 81, 1, |
|
420 | + 102, 84, 85, 86, 119, 88, 128, 90, 149, 92, |
|
421 | + 12, 82, 95, 47, 48, 49, 99, 100, 101, 102, |
|
422 | + 15, 104, 105, 146, 15, 108, 149, 28, 111, 112, |
|
423 | + 15, 103, 15, 148, 149, 139, 119, 109, 1, 15, |
|
424 | + 102, 113, 114, 31, 32, 33, 34, 35, 103, 12, |
|
425 | + 122, 123, 124, 125, 109, 10, 29, 112, 113, 114, |
|
426 | + 115, 116, 117, 118, 102, 148, 149, 29, 139, 71, |
|
427 | + 15, 143, 35, 28, 31, 77, 78, 31, 32, 81, |
|
428 | + 66, 67, 84, 85, 86, 29, 88, 29, 90, 29, |
|
429 | + 92, 72, 73, 95, 72, 73, 54, 99, 100, 101, |
|
430 | + 102, 35, 104, 105, 97, 98, 108, 152, 71, 111, |
|
431 | + 112, 8, 9, 10, 77, 66, 13, 119, 81, 1, |
|
432 | + 67, 84, 85, 86, 67, 88, 67, 90, 74, 92, |
|
433 | + 12, 28, 95, 102, 103, 67, 99, 100, 101, 102, |
|
434 | + 67, 104, 105, 67, 103, 108, 148, 149, 111, 112, |
|
435 | + 109, 1, 67, 35, 113, 114, 119, 8, 9, 10, |
|
436 | + 113, 114, 68, 122, 123, 124, 125, 106, 107, 122, |
|
437 | + 123, 124, 125, 77, 8, 9, 10, 28, 77, 30, |
|
438 | + 31, 32, 33, 34, 143, 148, 149, 148, 149, 71, |
|
439 | + 77, 150, 148, 149, 28, 77, 77, 150, 77, 81, |
|
440 | + 148, 149, 84, 85, 86, 77, 88, 77, 90, 77, |
|
441 | + 92, 77, 77, 95, 77, 79, 94, 99, 100, 101, |
|
442 | + 102, 71, 104, 105, 79, 79, 108, 77, 86, 111, |
|
443 | + 112, 81, 79, 1, 84, 85, 86, 119, 88, 79, |
|
444 | + 90, 82, 92, 96, 12, 95, 82, 96, 94, 99, |
|
445 | + 100, 101, 102, 82, 104, 105, 94, 94, 108, 102, |
|
446 | + 102, 111, 112, 123, 103, 1, 148, 149, 127, 119, |
|
447 | + 109, 102, 89, 129, 113, 114, 12, 109, 113, 114, |
|
448 | + 8, 9, 10, 122, 123, 124, 125, 122, 123, 124, |
|
449 | + 125, 110, 149, 123, 139, 128, 113, 114, 148, 149, |
|
450 | + 28, 29, 152, 71, 143, 122, 123, 124, 125, 77, |
|
451 | + 126, 150, 126, 81, 142, 150, 84, 85, 86, 128, |
|
452 | + 88, 155, 90, 128, 92, 128, 146, 95, 146, 142, |
|
453 | + 142, 99, 100, 101, 102, 71, 104, 105, 142, 146, |
|
454 | + 108, 77, 142, 111, 112, 81, 1, 142, 84, 85, |
|
455 | + 86, 119, 88, 142, 90, 142, 92, 12, 146, 95, |
|
456 | + 146, 146, 146, 99, 100, 101, 102, 146, 104, 105, |
|
457 | + 147, 149, 108, 148, 148, 111, 112, 148, 1, 148, |
|
458 | + 148, 149, 148, 119, 113, 114, 148, 148, 148, 12, |
|
459 | + 113, 114, 148, 122, 123, 124, 125, 113, 114, 122, |
|
460 | + 123, 124, 125, 8, 9, 10, 122, 123, 124, 125, |
|
461 | + 148, 148, 148, 149, 148, 148, 71, 148, 148, 151, |
|
462 | + 155, 150, 77, 28, 148, 150, 81, 150, 148, 84, |
|
463 | + 85, 86, 149, 88, 150, 90, 148, 92, 148, 148, |
|
464 | + 95, 148, 148, 148, 99, 100, 101, 102, 71, 104, |
|
465 | + 105, 1, 148, 108, 77, 148, 111, 112, 81, 148, |
|
466 | + 148, 84, 85, 86, 119, 88, 148, 90, 148, 92, |
|
467 | + 149, 149, 95, 149, 149, 149, 99, 100, 101, 102, |
|
468 | + 149, 104, 105, 149, 149, 108, 149, 149, 111, 112, |
|
469 | + 96, 97, 98, 148, 149, 149, 119, 149, 149, 152, |
|
470 | + 113, 114, 150, 150, 150, 150, 150, 113, 114, 122, |
|
471 | + 123, 124, 125, 150, 150, 150, 122, 123, 124, 125, |
|
472 | + 150, 71, 150, 150, 150, 148, 149, 77, 150, 150, |
|
473 | + 150, 81, 150, 150, 84, 85, 86, 150, 88, 150, |
|
474 | + 90, 29, 92, 150, 150, 95, 150, 150, -1, 99, |
|
475 | + 100, 101, 102, 151, 104, 105, 151, 151, 108, 47, |
|
476 | + 48, 111, 112, 151, 151, 53, 151, 55, 151, 119, |
|
477 | + 151, 151, 151, 72, 73, 74, 93, 151, 151, 67, |
|
478 | + 72, 73, 74, 151, 47, 48, 151, 75, 76, 151, |
|
479 | + 53, 79, 55, 151, 151, 83, 113, 114, 148, 149, |
|
480 | + 151, 154, -1, 152, 67, 122, 123, 124, 125, 152, |
|
481 | + 152, 152, 75, 76, 113, 114, 79, 152, 152, 152, |
|
482 | + 83, 113, 114, 122, 123, 124, 125, 113, 114, 152, |
|
483 | + 122, 123, 124, 125, 152, 155, 122, 123, 124, 125, |
|
484 | + 152, 152, 130, 152, 132, 133, 134, 135, 136, 137, |
|
485 | + 138, 152, 152, 155, 152, 152, 144, 145, 152, 152, |
|
486 | + 155, 152, -1, 151, 150, 153, 155, 130, 155, 132, |
|
487 | + 133, 134, 135, 136, 137, 138, 91, 155, 155, 155, |
|
488 | + 155, 144, 145, 113, 114, 155, 155, 155, 151, 155, |
|
489 | + 153, 155, 122, 123, 124, 125, -1, -1, 113, 114, |
|
490 | + -1, 130, 131, -1, -1, -1, -1, 122, 123, 124, |
|
491 | + 125, -1, -1, -1, 143, -1, -1, 146, -1, -1, |
|
492 | + 150, -1, -1, 152 |
|
493 | 493 | ); |
494 | 494 | |
495 | 495 | protected $actionBase = array( |
496 | - 0, 358, 934, 468, 581, 1041, 701, 1048, 824, 817, |
|
497 | - -8, 1023, 339, 1125, 927, 1054, 811, 723, 1110, 705, |
|
498 | - 587, 414, 438, 502, 478, 502, 44, 698, 698, 698, |
|
499 | - 217, 217, 63, 779, 154, 154, 154, 154, 154, 9, |
|
500 | - 298, 330, 658, 658, 690, 658, 772, 804, 885, 538, |
|
501 | - 457, 577, 425, 917, 917, 917, 917, 990, 990, 917, |
|
502 | - 917, 917, 917, 917, 917, 917, 917, 917, 917, 917, |
|
503 | - 917, 917, 917, 917, 917, 917, 917, 917, 917, 917, |
|
504 | - 917, 917, 917, 917, 917, 917, 917, 917, 917, 917, |
|
505 | - 917, 917, 917, 917, 917, 917, 917, 917, 917, 917, |
|
506 | - 917, 917, 917, 917, 917, 917, 917, 917, 917, 917, |
|
507 | - 917, 917, 917, 917, 917, 917, 917, 917, 917, 917, |
|
508 | - 917, 917, 917, 917, 917, 917, 917, 917, 917, 917, |
|
509 | - 917, 917, 917, 917, 917, 917, 917, 917, 917, 917, |
|
510 | - 917, 917, 917, 917, 917, 917, 917, 917, 917, 73, |
|
511 | - 860, 148, 501, 858, 852, 851, 847, 998, 694, 1031, |
|
512 | - 910, 914, 600, 918, 919, 920, 922, 923, 905, 937, |
|
513 | - 805, 936, 278, 278, 278, 278, 278, 278, 278, 278, |
|
514 | - 278, 278, 278, 297, 643, 495, 812, 706, 431, 326, |
|
515 | - 326, 326, 326, 326, 326, 326, 159, 159, 159, 159, |
|
516 | - 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, |
|
517 | - 159, 159, 159, 62, 935, 935, 935, 585, 1052, 539, |
|
496 | + 0, 358, 934, 468, 581, 1041, 701, 1048, 824, 817, |
|
497 | + -8, 1023, 339, 1125, 927, 1054, 811, 723, 1110, 705, |
|
498 | + 587, 414, 438, 502, 478, 502, 44, 698, 698, 698, |
|
499 | + 217, 217, 63, 779, 154, 154, 154, 154, 154, 9, |
|
500 | + 298, 330, 658, 658, 690, 658, 772, 804, 885, 538, |
|
501 | + 457, 577, 425, 917, 917, 917, 917, 990, 990, 917, |
|
502 | + 917, 917, 917, 917, 917, 917, 917, 917, 917, 917, |
|
503 | + 917, 917, 917, 917, 917, 917, 917, 917, 917, 917, |
|
504 | + 917, 917, 917, 917, 917, 917, 917, 917, 917, 917, |
|
505 | + 917, 917, 917, 917, 917, 917, 917, 917, 917, 917, |
|
506 | + 917, 917, 917, 917, 917, 917, 917, 917, 917, 917, |
|
507 | + 917, 917, 917, 917, 917, 917, 917, 917, 917, 917, |
|
508 | + 917, 917, 917, 917, 917, 917, 917, 917, 917, 917, |
|
509 | + 917, 917, 917, 917, 917, 917, 917, 917, 917, 917, |
|
510 | + 917, 917, 917, 917, 917, 917, 917, 917, 917, 73, |
|
511 | + 860, 148, 501, 858, 852, 851, 847, 998, 694, 1031, |
|
512 | + 910, 914, 600, 918, 919, 920, 922, 923, 905, 937, |
|
513 | + 805, 936, 278, 278, 278, 278, 278, 278, 278, 278, |
|
514 | + 278, 278, 278, 297, 643, 495, 812, 706, 431, 326, |
|
515 | + 326, 326, 326, 326, 326, 326, 159, 159, 159, 159, |
|
516 | + 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, |
|
517 | + 159, 159, 159, 62, 935, 935, 935, 585, 1052, 539, |
|
518 | 518 | 1077, 1077, 1077, 1077, 1077, 1077, 1077, 1077, 1077, 1077, |
519 | 519 | 1077, 1077, 1077, 1077, 1077, 1077, 1077, 1077, 1077, 1077, |
520 | 520 | 1077, 1077, 1077, 1077, 1077, 1077, 1077, 1077, 1077, 1077, |
521 | 521 | 1077, 1077, 1077, 1077, 1077, 1077, 1077, 1077, 1077, 1077, |
522 | - 1077, 1077, 1077, 491, -17, -17, 364, 583, 331, 586, |
|
523 | - 689, 183, 202, 162, 162, 162, 162, 162, -25, 552, |
|
524 | - 5, 5, 5, 5, 161, 446, 446, 446, 446, 314, |
|
525 | - 314, 314, 314, 903, 896, 894, 893, 78, 78, 684, |
|
526 | - 684, 634, 875, 506, 506, 426, 426, 225, 225, 225, |
|
527 | - 225, 225, 225, 225, 225, 225, 225, 257, 348, 945, |
|
528 | - 1111, 1111, 1111, 1111, -34, -34, 436, -31, 342, 241, |
|
529 | - 241, 241, 153, 153, 153, 302, 711, 399, 399, 399, |
|
530 | - 699, 695, 704, 571, 571, 571, 290, 290, 290, 290, |
|
531 | - 417, 683, 290, 290, 290, 25, -2, -2, 221, 232, |
|
532 | - 687, 815, 691, 892, 579, 740, 26, 755, 754, 259, |
|
533 | - 697, 559, 562, 601, 728, 24, 259, 73, 584, 310, |
|
534 | - 582, 778, 668, 41, 784, 81, 336, 418, 592, -22, |
|
535 | - 312, 269, 874, 780, 991, 887, 380, -55, 731, 582, |
|
536 | - 582, 582, 360, 469, 861, 862, -22, 138, 554, 554, |
|
537 | - 554, 554, 912, 864, 554, 554, 554, 554, 913, 929, |
|
538 | - 296, 134, 933, 142, 803, 670, 670, 670, 670, 670, |
|
539 | - 670, 606, 670, 946, 659, 942, 942, 661, 686, 606, |
|
540 | - 983, 983, 983, 983, 606, 670, 942, 942, 606, 634, |
|
541 | - 942, 412, 606, 724, 670, 726, 726, 983, 769, 844, |
|
542 | - 659, 693, 681, 942, 942, 942, 681, 661, 606, 983, |
|
543 | - 708, 763, 353, 942, 983, 578, 578, 708, 606, 578, |
|
544 | - 686, 578, 23, 598, 599, 989, 982, 952, 641, 877, |
|
545 | - 680, 710, 967, 966, 978, 636, 672, 972, 808, 756, |
|
546 | - 766, 802, 675, 520, 608, 613, 593, 616, 712, 597, |
|
547 | - 707, 697, 752, 589, 589, 589, 735, 727, 735, 589, |
|
548 | - 589, 589, 589, 589, 589, 589, 589, 1076, 753, 736, |
|
549 | - 737, 682, 765, 595, 761, 662, 564, 889, 756, 756, |
|
550 | - 1007, 1042, 987, 653, 961, 1022, 735, 1074, 774, 382, |
|
551 | - 545, 960, 720, 674, 722, 735, 959, 735, 762, 735, |
|
552 | - 1006, 677, 895, 756, 589, 1005, 1072, 1071, 1070, 1065, |
|
553 | - 1064, 1063, 1062, 1053, 625, 1051, 830, 1040, 184, 975, |
|
554 | - 728, 745, 733, 831, 463, 1045, 735, 735, 823, 683, |
|
555 | - 735, 865, 833, 771, 1047, 834, 1039, 1038, 695, 1029, |
|
556 | - 735, 709, 1020, 463, 567, 594, 997, 835, 953, 685, |
|
557 | - 999, 955, 866, 549, 555, 904, 596, 828, 1046, 1043, |
|
558 | - 1049, 820, 871, 878, 557, 700, 676, 886, 957, 816, |
|
559 | - 1017, 703, 752, 751, 721, 702, 888, 1028, 810, 809, |
|
560 | - 807, 806, 0, 0, 0, 0, 0, 0, 0, 0, |
|
561 | - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
562 | - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
563 | - 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
564 | - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
565 | - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
566 | - 154, 154, 154, 154, 0, 0, 0, 0, 0, 154, |
|
567 | - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
568 | - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
569 | - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
570 | - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
571 | - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
572 | - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
573 | - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
574 | - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
575 | - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
576 | - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
577 | - -1, -1, -1, -1, -1, -1, -1, -1, -1, 278, |
|
578 | - 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, |
|
579 | - 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, |
|
580 | - 278, 278, 0, 0, 0, 0, 0, 0, 0, 0, |
|
581 | - 0, 0, 0, 278, -17, -17, -17, -17, 278, -17, |
|
582 | - -17, -17, -17, -17, -17, -17, 278, 278, 278, 278, |
|
583 | - 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, |
|
584 | - 278, 278, 278, -17, 278, 278, 278, -17, 225, -17, |
|
585 | - 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, |
|
586 | - 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, |
|
587 | - 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, |
|
588 | - 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, |
|
589 | - 225, 225, 225, 278, 0, 0, 278, -17, 278, -17, |
|
590 | - 278, -17, 278, 278, 278, 278, 278, 278, -17, -17, |
|
591 | - -17, -17, -17, -17, 0, 241, 241, 241, 241, -17, |
|
592 | - -17, -17, -17, 485, 485, 485, 485, 225, 225, 225, |
|
593 | - 225, 225, 225, 241, 241, 153, 153, 0, 0, 0, |
|
594 | - 0, 0, 0, 0, 0, 0, 0, 225, 485, 225, |
|
595 | - 670, 670, 670, 670, 670, 670, -2, -2, -2, 0, |
|
596 | - 0, 0, 0, 0, 0, 670, -2, 344, 344, 344, |
|
597 | - -2, -2, -2, 670, 670, 670, 670, 670, 670, 670, |
|
598 | - 670, 344, 670, 670, 670, 942, 0, 0, 0, 344, |
|
599 | - 547, 547, 547, 547, 463, -22, 0, 670, 670, 0, |
|
600 | - 693, 0, 0, 0, 942, 0, 0, 0, 0, 0, |
|
601 | - 589, 382, 961, 0, 123, 0, 0, 0, 0, 0, |
|
602 | - 0, 0, 653, 123, 58, 58, 0, 0, 625, 589, |
|
603 | - 589, 589, 0, 0, 653, 653, 0, 0, 0, 0, |
|
604 | - 0, 0, 421, 653, 0, 0, 0, 0, 421, 74, |
|
605 | - 0, 0, 74, 0, 463 |
|
522 | + 1077, 1077, 1077, 491, -17, -17, 364, 583, 331, 586, |
|
523 | + 689, 183, 202, 162, 162, 162, 162, 162, -25, 552, |
|
524 | + 5, 5, 5, 5, 161, 446, 446, 446, 446, 314, |
|
525 | + 314, 314, 314, 903, 896, 894, 893, 78, 78, 684, |
|
526 | + 684, 634, 875, 506, 506, 426, 426, 225, 225, 225, |
|
527 | + 225, 225, 225, 225, 225, 225, 225, 257, 348, 945, |
|
528 | + 1111, 1111, 1111, 1111, -34, -34, 436, -31, 342, 241, |
|
529 | + 241, 241, 153, 153, 153, 302, 711, 399, 399, 399, |
|
530 | + 699, 695, 704, 571, 571, 571, 290, 290, 290, 290, |
|
531 | + 417, 683, 290, 290, 290, 25, -2, -2, 221, 232, |
|
532 | + 687, 815, 691, 892, 579, 740, 26, 755, 754, 259, |
|
533 | + 697, 559, 562, 601, 728, 24, 259, 73, 584, 310, |
|
534 | + 582, 778, 668, 41, 784, 81, 336, 418, 592, -22, |
|
535 | + 312, 269, 874, 780, 991, 887, 380, -55, 731, 582, |
|
536 | + 582, 582, 360, 469, 861, 862, -22, 138, 554, 554, |
|
537 | + 554, 554, 912, 864, 554, 554, 554, 554, 913, 929, |
|
538 | + 296, 134, 933, 142, 803, 670, 670, 670, 670, 670, |
|
539 | + 670, 606, 670, 946, 659, 942, 942, 661, 686, 606, |
|
540 | + 983, 983, 983, 983, 606, 670, 942, 942, 606, 634, |
|
541 | + 942, 412, 606, 724, 670, 726, 726, 983, 769, 844, |
|
542 | + 659, 693, 681, 942, 942, 942, 681, 661, 606, 983, |
|
543 | + 708, 763, 353, 942, 983, 578, 578, 708, 606, 578, |
|
544 | + 686, 578, 23, 598, 599, 989, 982, 952, 641, 877, |
|
545 | + 680, 710, 967, 966, 978, 636, 672, 972, 808, 756, |
|
546 | + 766, 802, 675, 520, 608, 613, 593, 616, 712, 597, |
|
547 | + 707, 697, 752, 589, 589, 589, 735, 727, 735, 589, |
|
548 | + 589, 589, 589, 589, 589, 589, 589, 1076, 753, 736, |
|
549 | + 737, 682, 765, 595, 761, 662, 564, 889, 756, 756, |
|
550 | + 1007, 1042, 987, 653, 961, 1022, 735, 1074, 774, 382, |
|
551 | + 545, 960, 720, 674, 722, 735, 959, 735, 762, 735, |
|
552 | + 1006, 677, 895, 756, 589, 1005, 1072, 1071, 1070, 1065, |
|
553 | + 1064, 1063, 1062, 1053, 625, 1051, 830, 1040, 184, 975, |
|
554 | + 728, 745, 733, 831, 463, 1045, 735, 735, 823, 683, |
|
555 | + 735, 865, 833, 771, 1047, 834, 1039, 1038, 695, 1029, |
|
556 | + 735, 709, 1020, 463, 567, 594, 997, 835, 953, 685, |
|
557 | + 999, 955, 866, 549, 555, 904, 596, 828, 1046, 1043, |
|
558 | + 1049, 820, 871, 878, 557, 700, 676, 886, 957, 816, |
|
559 | + 1017, 703, 752, 751, 721, 702, 888, 1028, 810, 809, |
|
560 | + 807, 806, 0, 0, 0, 0, 0, 0, 0, 0, |
|
561 | + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
562 | + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
563 | + 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
564 | + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
565 | + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
566 | + 154, 154, 154, 154, 0, 0, 0, 0, 0, 154, |
|
567 | + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
568 | + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
569 | + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
570 | + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
571 | + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
572 | + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
573 | + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
574 | + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
575 | + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
576 | + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
577 | + -1, -1, -1, -1, -1, -1, -1, -1, -1, 278, |
|
578 | + 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, |
|
579 | + 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, |
|
580 | + 278, 278, 0, 0, 0, 0, 0, 0, 0, 0, |
|
581 | + 0, 0, 0, 278, -17, -17, -17, -17, 278, -17, |
|
582 | + -17, -17, -17, -17, -17, -17, 278, 278, 278, 278, |
|
583 | + 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, |
|
584 | + 278, 278, 278, -17, 278, 278, 278, -17, 225, -17, |
|
585 | + 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, |
|
586 | + 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, |
|
587 | + 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, |
|
588 | + 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, |
|
589 | + 225, 225, 225, 278, 0, 0, 278, -17, 278, -17, |
|
590 | + 278, -17, 278, 278, 278, 278, 278, 278, -17, -17, |
|
591 | + -17, -17, -17, -17, 0, 241, 241, 241, 241, -17, |
|
592 | + -17, -17, -17, 485, 485, 485, 485, 225, 225, 225, |
|
593 | + 225, 225, 225, 241, 241, 153, 153, 0, 0, 0, |
|
594 | + 0, 0, 0, 0, 0, 0, 0, 225, 485, 225, |
|
595 | + 670, 670, 670, 670, 670, 670, -2, -2, -2, 0, |
|
596 | + 0, 0, 0, 0, 0, 670, -2, 344, 344, 344, |
|
597 | + -2, -2, -2, 670, 670, 670, 670, 670, 670, 670, |
|
598 | + 670, 344, 670, 670, 670, 942, 0, 0, 0, 344, |
|
599 | + 547, 547, 547, 547, 463, -22, 0, 670, 670, 0, |
|
600 | + 693, 0, 0, 0, 942, 0, 0, 0, 0, 0, |
|
601 | + 589, 382, 961, 0, 123, 0, 0, 0, 0, 0, |
|
602 | + 0, 0, 653, 123, 58, 58, 0, 0, 625, 589, |
|
603 | + 589, 589, 0, 0, 653, 653, 0, 0, 0, 0, |
|
604 | + 0, 0, 421, 653, 0, 0, 0, 0, 421, 74, |
|
605 | + 0, 0, 74, 0, 463 |
|
606 | 606 | ); |
607 | 607 | |
608 | 608 | protected $actionDefault = array( |
609 | - 3,32767,32767,32767,32767,32767,32767,32767,32767,32767, |
|
610 | - 32767,32767,32767,32767,32767,32767,32767,32767,32767,32767, |
|
611 | - 32767,32767,32767,32767,32767,32767,32767,32767,32767,32767, |
|
612 | - 32767,32767,32767,32767,32767,32767,32767,32767,32767,32767, |
|
613 | - 32767,32767, 510, 510,32767, 467,32767,32767,32767,32767, |
|
614 | - 32767,32767,32767, 273, 273, 273,32767,32767,32767, 499, |
|
615 | - 499, 499, 499, 499, 499, 499, 499, 499, 499, 499, |
|
616 | - 32767,32767,32767,32767,32767, 355,32767,32767,32767,32767, |
|
617 | - 32767,32767,32767,32767,32767,32767,32767,32767,32767,32767, |
|
618 | - 32767,32767,32767,32767,32767,32767,32767,32767,32767,32767, |
|
619 | - 32767,32767,32767,32767,32767,32767,32767,32767,32767,32767, |
|
620 | - 32767,32767,32767,32767,32767,32767,32767,32767,32767,32767, |
|
621 | - 32767,32767,32767,32767,32767,32767,32767,32767,32767,32767, |
|
622 | - 32767,32767,32767,32767,32767,32767,32767,32767,32767,32767, |
|
623 | - 32767,32767,32767,32767,32767,32767,32767,32767,32767,32767, |
|
624 | - 32767, 361, 515,32767,32767,32767,32767,32767,32767,32767, |
|
625 | - 32767,32767,32767,32767,32767,32767,32767,32767,32767,32767, |
|
626 | - 32767,32767, 336, 337, 339, 340, 272, 500, 223, 362, |
|
627 | - 514, 271, 225, 300, 471,32767,32767,32767, 302, 106, |
|
628 | - 234, 179, 470, 109, 270, 210, 354, 356, 301, 277, |
|
629 | - 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, |
|
630 | - 292, 293, 276, 427, 333, 332, 331, 429,32767, 428, |
|
631 | - 464, 464, 467,32767,32767,32767,32767,32767,32767,32767, |
|
632 | - 32767,32767,32767,32767,32767,32767,32767,32767,32767,32767, |
|
633 | - 32767,32767,32767,32767,32767,32767,32767,32767,32767,32767, |
|
634 | - 32767,32767,32767,32767,32767,32767,32767,32767,32767,32767, |
|
635 | - 32767,32767,32767, 298, 455, 454, 299, 425, 303, 426, |
|
636 | - 305, 430, 304, 321, 322, 319, 320, 323, 432, 431, |
|
637 | - 448, 449, 446, 447, 275, 324, 325, 326, 327, 450, |
|
638 | - 451, 452, 453, 257, 257, 257, 257,32767,32767, 509, |
|
639 | - 509,32767,32767, 312, 313, 439, 440,32767,32767,32767, |
|
640 | - 32767,32767,32767,32767,32767,32767,32767,32767, 258,32767, |
|
641 | - 214, 214, 214, 214, 214,32767,32767,32767,32767, 307, |
|
642 | - 308, 306, 434, 435, 433,32767, 401,32767,32767,32767, |
|
643 | - 32767,32767, 403,32767,32767,32767,32767,32767,32767,32767, |
|
644 | - 32767,32767,32767,32767,32767, 472, 402,32767,32767,32767, |
|
645 | - 32767,32767,32767,32767,32767, 485, 390,32767,32767,32767, |
|
646 | - 383, 198, 200, 148, 458,32767,32767,32767,32767, 490, |
|
647 | - 317,32767,32767,32767,32767,32767,32767, 522,32767, 485, |
|
648 | - 32767,32767,32767,32767,32767,32767,32767,32767, 330, 309, |
|
649 | - 310, 311,32767,32767,32767,32767, 489, 483, 442, 443, |
|
650 | - 444, 445,32767,32767, 436, 437, 438, 441,32767,32767, |
|
651 | - 32767,32767,32767,32767,32767,32767,32767,32767,32767,32767, |
|
652 | - 32767, 152,32767, 398,32767, 404, 404,32767,32767, 152, |
|
653 | - 32767,32767,32767,32767, 152,32767, 488, 487, 152,32767, |
|
654 | - 384, 466, 152, 165,32767, 163, 163,32767, 184, 184, |
|
655 | - 32767,32767, 167, 459, 478,32767, 167,32767, 152,32767, |
|
656 | - 372, 154, 466,32767,32767, 216, 216, 372, 152, 216, |
|
657 | - 32767, 216,32767, 72, 408,32767,32767,32767,32767,32767, |
|
658 | - 32767,32767,32767,32767,32767,32767,32767,32767,32767, 385, |
|
659 | - 32767,32767,32767,32767, 351, 352, 461, 474,32767, 475, |
|
660 | - 32767, 383,32767, 315, 316, 318, 295,32767, 297, 341, |
|
661 | - 342, 343, 344, 345, 346, 347, 349,32767,32767, 388, |
|
662 | - 391,32767,32767,32767, 74, 98, 233,32767, 74, 386, |
|
663 | - 32767, 280,32767,32767,32767,32767, 517,32767,32767, 274, |
|
664 | - 32767,32767, 74,32767, 74, 229,32767, 150,32767, 507, |
|
665 | - 32767,32767, 483, 387, 314,32767,32767,32767,32767,32767, |
|
666 | - 32767,32767,32767,32767, 484,32767,32767,32767, 205,32767, |
|
667 | - 421,32767, 74,32767, 166,32767, 278, 224,32767,32767, |
|
668 | - 516,32767,32767,32767,32767,32767,32767,32767,32767,32767, |
|
669 | - 151,32767,32767, 168,32767,32767, 483,32767,32767,32767, |
|
670 | - 32767,32767,32767,32767, 269,32767,32767,32767,32767,32767, |
|
671 | - 483,32767,32767,32767, 209,32767,32767,32767,32767,32767, |
|
672 | - 32767, 72, 59,32767, 251,32767,32767,32767,32767,32767, |
|
673 | - 32767,32767, 111, 111, 3, 111, 192, 111, 236, 3, |
|
674 | - 184, 184, 145, 236, 111, 236, 236, 111, 111, 111, |
|
675 | - 111, 111, 243, 111, 111, 111, 111, 111, 111, 111 |
|
609 | + 3, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, |
|
610 | + 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, |
|
611 | + 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, |
|
612 | + 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, |
|
613 | + 32767, 32767, 510, 510, 32767, 467, 32767, 32767, 32767, 32767, |
|
614 | + 32767, 32767, 32767, 273, 273, 273, 32767, 32767, 32767, 499, |
|
615 | + 499, 499, 499, 499, 499, 499, 499, 499, 499, 499, |
|
616 | + 32767, 32767, 32767, 32767, 32767, 355, 32767, 32767, 32767, 32767, |
|
617 | + 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, |
|
618 | + 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, |
|
619 | + 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, |
|
620 | + 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, |
|
621 | + 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, |
|
622 | + 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, |
|
623 | + 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, |
|
624 | + 32767, 361, 515, 32767, 32767, 32767, 32767, 32767, 32767, 32767, |
|
625 | + 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, |
|
626 | + 32767, 32767, 336, 337, 339, 340, 272, 500, 223, 362, |
|
627 | + 514, 271, 225, 300, 471, 32767, 32767, 32767, 302, 106, |
|
628 | + 234, 179, 470, 109, 270, 210, 354, 356, 301, 277, |
|
629 | + 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, |
|
630 | + 292, 293, 276, 427, 333, 332, 331, 429, 32767, 428, |
|
631 | + 464, 464, 467, 32767, 32767, 32767, 32767, 32767, 32767, 32767, |
|
632 | + 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, |
|
633 | + 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, |
|
634 | + 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, |
|
635 | + 32767, 32767, 32767, 298, 455, 454, 299, 425, 303, 426, |
|
636 | + 305, 430, 304, 321, 322, 319, 320, 323, 432, 431, |
|
637 | + 448, 449, 446, 447, 275, 324, 325, 326, 327, 450, |
|
638 | + 451, 452, 453, 257, 257, 257, 257, 32767, 32767, 509, |
|
639 | + 509, 32767, 32767, 312, 313, 439, 440, 32767, 32767, 32767, |
|
640 | + 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 258, 32767, |
|
641 | + 214, 214, 214, 214, 214, 32767, 32767, 32767, 32767, 307, |
|
642 | + 308, 306, 434, 435, 433, 32767, 401, 32767, 32767, 32767, |
|
643 | + 32767, 32767, 403, 32767, 32767, 32767, 32767, 32767, 32767, 32767, |
|
644 | + 32767, 32767, 32767, 32767, 32767, 472, 402, 32767, 32767, 32767, |
|
645 | + 32767, 32767, 32767, 32767, 32767, 485, 390, 32767, 32767, 32767, |
|
646 | + 383, 198, 200, 148, 458, 32767, 32767, 32767, 32767, 490, |
|
647 | + 317, 32767, 32767, 32767, 32767, 32767, 32767, 522, 32767, 485, |
|
648 | + 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 330, 309, |
|
649 | + 310, 311, 32767, 32767, 32767, 32767, 489, 483, 442, 443, |
|
650 | + 444, 445, 32767, 32767, 436, 437, 438, 441, 32767, 32767, |
|
651 | + 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, |
|
652 | + 32767, 152, 32767, 398, 32767, 404, 404, 32767, 32767, 152, |
|
653 | + 32767, 32767, 32767, 32767, 152, 32767, 488, 487, 152, 32767, |
|
654 | + 384, 466, 152, 165, 32767, 163, 163, 32767, 184, 184, |
|
655 | + 32767, 32767, 167, 459, 478, 32767, 167, 32767, 152, 32767, |
|
656 | + 372, 154, 466, 32767, 32767, 216, 216, 372, 152, 216, |
|
657 | + 32767, 216, 32767, 72, 408, 32767, 32767, 32767, 32767, 32767, |
|
658 | + 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 385, |
|
659 | + 32767, 32767, 32767, 32767, 351, 352, 461, 474, 32767, 475, |
|
660 | + 32767, 383, 32767, 315, 316, 318, 295, 32767, 297, 341, |
|
661 | + 342, 343, 344, 345, 346, 347, 349, 32767, 32767, 388, |
|
662 | + 391, 32767, 32767, 32767, 74, 98, 233, 32767, 74, 386, |
|
663 | + 32767, 280, 32767, 32767, 32767, 32767, 517, 32767, 32767, 274, |
|
664 | + 32767, 32767, 74, 32767, 74, 229, 32767, 150, 32767, 507, |
|
665 | + 32767, 32767, 483, 387, 314, 32767, 32767, 32767, 32767, 32767, |
|
666 | + 32767, 32767, 32767, 32767, 484, 32767, 32767, 32767, 205, 32767, |
|
667 | + 421, 32767, 74, 32767, 166, 32767, 278, 224, 32767, 32767, |
|
668 | + 516, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, |
|
669 | + 151, 32767, 32767, 168, 32767, 32767, 483, 32767, 32767, 32767, |
|
670 | + 32767, 32767, 32767, 32767, 269, 32767, 32767, 32767, 32767, 32767, |
|
671 | + 483, 32767, 32767, 32767, 209, 32767, 32767, 32767, 32767, 32767, |
|
672 | + 32767, 72, 59, 32767, 251, 32767, 32767, 32767, 32767, 32767, |
|
673 | + 32767, 32767, 111, 111, 3, 111, 192, 111, 236, 3, |
|
674 | + 184, 184, 145, 236, 111, 236, 236, 111, 111, 111, |
|
675 | + 111, 111, 243, 111, 111, 111, 111, 111, 111, 111 |
|
676 | 676 | ); |
677 | 677 | |
678 | 678 | protected $goto = array( |
679 | - 178, 178, 152, 152, 157, 152, 153, 154, 155, 160, |
|
680 | - 162, 199, 180, 176, 176, 176, 176, 157, 157, 177, |
|
681 | - 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, |
|
682 | - 172, 173, 174, 175, 196, 151, 197, 513, 514, 380, |
|
683 | - 515, 519, 520, 521, 522, 523, 524, 525, 526, 951, |
|
684 | - 156, 158, 159, 161, 183, 188, 198, 214, 263, 266, |
|
685 | - 268, 270, 272, 273, 274, 275, 276, 277, 285, 286, |
|
686 | - 287, 288, 303, 304, 329, 330, 331, 399, 400, 401, |
|
687 | - 564, 200, 201, 202, 203, 204, 205, 206, 207, 208, |
|
688 | - 209, 210, 211, 212, 163, 164, 165, 179, 166, 181, |
|
689 | - 167, 215, 182, 168, 169, 170, 216, 171, 149, 633, |
|
690 | - 581, 807, 581, 581, 581, 581, 581, 581, 581, 581, |
|
691 | - 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, |
|
692 | - 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, |
|
693 | - 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, |
|
694 | - 581, 581, 581, 581, 581, 1089, 777, 1089, 1089, 1089, |
|
679 | + 178, 178, 152, 152, 157, 152, 153, 154, 155, 160, |
|
680 | + 162, 199, 180, 176, 176, 176, 176, 157, 157, 177, |
|
681 | + 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, |
|
682 | + 172, 173, 174, 175, 196, 151, 197, 513, 514, 380, |
|
683 | + 515, 519, 520, 521, 522, 523, 524, 525, 526, 951, |
|
684 | + 156, 158, 159, 161, 183, 188, 198, 214, 263, 266, |
|
685 | + 268, 270, 272, 273, 274, 275, 276, 277, 285, 286, |
|
686 | + 287, 288, 303, 304, 329, 330, 331, 399, 400, 401, |
|
687 | + 564, 200, 201, 202, 203, 204, 205, 206, 207, 208, |
|
688 | + 209, 210, 211, 212, 163, 164, 165, 179, 166, 181, |
|
689 | + 167, 215, 182, 168, 169, 170, 216, 171, 149, 633, |
|
690 | + 581, 807, 581, 581, 581, 581, 581, 581, 581, 581, |
|
691 | + 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, |
|
692 | + 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, |
|
693 | + 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, |
|
694 | + 581, 581, 581, 581, 581, 1089, 777, 1089, 1089, 1089, |
|
695 | 695 | 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, |
696 | 696 | 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, |
697 | 697 | 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, |
698 | 698 | 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, |
699 | - 874, 874, 1178, 1178, 640, 747, 747, 186, 747, 529, |
|
700 | - 541, 529, 189, 190, 191, 408, 409, 410, 411, 185, |
|
701 | - 213, 217, 219, 267, 269, 271, 278, 279, 280, 281, |
|
702 | - 282, 283, 289, 290, 291, 292, 305, 306, 332, 333, |
|
703 | - 334, 414, 415, 416, 417, 187, 192, 264, 265, 193, |
|
704 | - 194, 195, 517, 517, 517, 517, 517, 517, 892, 389, |
|
705 | - 389, 389, 517, 517, 517, 517, 517, 517, 517, 517, |
|
706 | - 517, 517, 528, 389, 528, 407, 620, 559, 559, 586, |
|
707 | - 555, 406, 596, 599, 637, 557, 557, 516, 518, 546, |
|
708 | - 562, 587, 590, 600, 606, 580, 33, 580, 580, 580, |
|
709 | - 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, |
|
710 | - 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, |
|
711 | - 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, |
|
712 | - 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, |
|
713 | - 623, 560, 361, 627, 1182, 378, 745, 745, 534, 745, |
|
714 | - 746, 746, 294, 746, 295, 296, 538, 538, 538, 603, |
|
715 | - 364, 424, 381, 538, 860, 845, 843, 841, 843, 646, |
|
716 | - 531, 869, 864, 610, 450, 450, 450, 450, 450, 450, |
|
717 | - 554, 538, 593, 618, 450, 450, 450, 450, 450, 450, |
|
718 | - 450, 450, 450, 450, 1054, 770, 1054, 881, 881, 881, |
|
719 | - 881, 881, 881, 1150, 566, 567, 568, 569, 570, 571, |
|
720 | - 572, 573, 575, 602, 4, 1157, 565, 1157, 1138, 6, |
|
721 | - 540, 619, 1047, 839, 839, 839, 839, 770, 770, 834, |
|
722 | - 840, 626, 1175, 540, 540, 1173, 1173, 1173, 538, 538, |
|
723 | - 552, 582, 538, 538, 1158, 538, 1158, 342, 9, 1156, |
|
724 | - 5, 328, 10, 530, 949, 530, 1065, 1064, 539, 11, |
|
725 | - 998, 878, 1, 12, 13, 2, 14, 563, 7, 15, |
|
726 | - 16, 17, 18, 19, 20, 463, 465, 922, 641, 395, |
|
727 | - 887, 1090, 628, 920, 367, 763, 763, 771, 771, 771, |
|
728 | - 773, 418, 762, 766, 1050, 1051, 1070, 393, 1047, 764, |
|
729 | - 1188, 1188, 896, 1008, 26, 21, 375, 388, 422, 1040, |
|
730 | - 657, 1048, 1149, 1048, 1191, 1188, 774, 1045, 382, 901, |
|
731 | - 576, 1049, 544, 466, 848, 591, 556, 1135, 479, 1191, |
|
732 | - 1191, 0, 29, 362, 363, 0, 0, 616, 0, 0, |
|
733 | - 0, 938, 471, 0, 0, 0, 0, 0, 0, 0, |
|
734 | - 0, 0, 37, 0, 0, 0, 0, 0, 0, 0, |
|
735 | - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
736 | - 0, 0, 0, 0, 0, 930, 0, 0, 0, 0, |
|
737 | - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
738 | - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
739 | - 0, 0, 545 |
|
699 | + 874, 874, 1178, 1178, 640, 747, 747, 186, 747, 529, |
|
700 | + 541, 529, 189, 190, 191, 408, 409, 410, 411, 185, |
|
701 | + 213, 217, 219, 267, 269, 271, 278, 279, 280, 281, |
|
702 | + 282, 283, 289, 290, 291, 292, 305, 306, 332, 333, |
|
703 | + 334, 414, 415, 416, 417, 187, 192, 264, 265, 193, |
|
704 | + 194, 195, 517, 517, 517, 517, 517, 517, 892, 389, |
|
705 | + 389, 389, 517, 517, 517, 517, 517, 517, 517, 517, |
|
706 | + 517, 517, 528, 389, 528, 407, 620, 559, 559, 586, |
|
707 | + 555, 406, 596, 599, 637, 557, 557, 516, 518, 546, |
|
708 | + 562, 587, 590, 600, 606, 580, 33, 580, 580, 580, |
|
709 | + 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, |
|
710 | + 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, |
|
711 | + 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, |
|
712 | + 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, |
|
713 | + 623, 560, 361, 627, 1182, 378, 745, 745, 534, 745, |
|
714 | + 746, 746, 294, 746, 295, 296, 538, 538, 538, 603, |
|
715 | + 364, 424, 381, 538, 860, 845, 843, 841, 843, 646, |
|
716 | + 531, 869, 864, 610, 450, 450, 450, 450, 450, 450, |
|
717 | + 554, 538, 593, 618, 450, 450, 450, 450, 450, 450, |
|
718 | + 450, 450, 450, 450, 1054, 770, 1054, 881, 881, 881, |
|
719 | + 881, 881, 881, 1150, 566, 567, 568, 569, 570, 571, |
|
720 | + 572, 573, 575, 602, 4, 1157, 565, 1157, 1138, 6, |
|
721 | + 540, 619, 1047, 839, 839, 839, 839, 770, 770, 834, |
|
722 | + 840, 626, 1175, 540, 540, 1173, 1173, 1173, 538, 538, |
|
723 | + 552, 582, 538, 538, 1158, 538, 1158, 342, 9, 1156, |
|
724 | + 5, 328, 10, 530, 949, 530, 1065, 1064, 539, 11, |
|
725 | + 998, 878, 1, 12, 13, 2, 14, 563, 7, 15, |
|
726 | + 16, 17, 18, 19, 20, 463, 465, 922, 641, 395, |
|
727 | + 887, 1090, 628, 920, 367, 763, 763, 771, 771, 771, |
|
728 | + 773, 418, 762, 766, 1050, 1051, 1070, 393, 1047, 764, |
|
729 | + 1188, 1188, 896, 1008, 26, 21, 375, 388, 422, 1040, |
|
730 | + 657, 1048, 1149, 1048, 1191, 1188, 774, 1045, 382, 901, |
|
731 | + 576, 1049, 544, 466, 848, 591, 556, 1135, 479, 1191, |
|
732 | + 1191, 0, 29, 362, 363, 0, 0, 616, 0, 0, |
|
733 | + 0, 938, 471, 0, 0, 0, 0, 0, 0, 0, |
|
734 | + 0, 0, 37, 0, 0, 0, 0, 0, 0, 0, |
|
735 | + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
736 | + 0, 0, 0, 0, 0, 930, 0, 0, 0, 0, |
|
737 | + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
738 | + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
739 | + 0, 0, 545 |
|
740 | 740 | ); |
741 | 741 | |
742 | 742 | protected $gotoCheck = array( |
743 | - 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, |
|
744 | - 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, |
|
745 | - 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, |
|
746 | - 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, |
|
747 | - 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, |
|
748 | - 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, |
|
749 | - 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, |
|
750 | - 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, |
|
751 | - 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, |
|
752 | - 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, |
|
753 | - 36, 36, 36, 36, 36, 36, 36, 36, 36, 50, |
|
754 | - 109, 43, 109, 109, 109, 109, 109, 109, 109, 109, |
|
755 | - 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, |
|
756 | - 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, |
|
757 | - 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, |
|
758 | - 109, 109, 109, 109, 109, 116, 24, 116, 116, 116, |
|
759 | - 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, |
|
760 | - 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, |
|
761 | - 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, |
|
762 | - 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, |
|
763 | - 67, 67, 67, 67, 4, 11, 11, 22, 11, 109, |
|
764 | - 90, 109, 22, 22, 22, 22, 22, 22, 22, 22, |
|
765 | - 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, |
|
766 | - 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, |
|
767 | - 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, |
|
768 | - 22, 22, 106, 106, 106, 106, 106, 106, 74, 113, |
|
769 | - 113, 113, 106, 106, 106, 106, 106, 106, 106, 106, |
|
770 | - 106, 106, 106, 113, 106, 44, 44, 44, 44, 44, |
|
771 | - 44, 113, 53, 53, 53, 44, 44, 44, 44, 44, |
|
772 | - 44, 44, 44, 44, 44, 50, 87, 50, 50, 50, |
|
773 | - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, |
|
774 | - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, |
|
775 | - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, |
|
776 | - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, |
|
777 | - 54, 98, 62, 54, 129, 54, 9, 9, 7, 9, |
|
778 | - 10, 10, 58, 10, 58, 58, 7, 7, 7, 60, |
|
779 | - 60, 60, 40, 7, 9, 9, 9, 9, 9, 9, |
|
780 | - 9, 9, 9, 117, 50, 50, 50, 50, 50, 50, |
|
781 | - 7, 7, 33, 33, 50, 50, 50, 50, 50, 50, |
|
782 | - 50, 50, 50, 50, 50, 18, 50, 50, 50, 50, |
|
783 | - 50, 50, 50, 72, 99, 99, 99, 99, 99, 99, |
|
784 | - 99, 99, 99, 99, 2, 108, 37, 108, 121, 2, |
|
785 | - 37, 42, 72, 50, 50, 50, 50, 18, 18, 50, |
|
786 | - 50, 50, 127, 37, 37, 108, 108, 108, 7, 7, |
|
787 | - 7, 7, 7, 7, 107, 7, 107, 115, 25, 108, |
|
788 | - 25, 115, 25, 112, 90, 112, 114, 114, 7, 25, |
|
789 | - 91, 69, 25, 25, 25, 25, 25, 7, 25, 25, |
|
790 | - 25, 25, 25, 25, 25, 6, 6, 6, 6, 41, |
|
791 | - 71, 6, 6, 6, 13, 18, 18, 18, 18, 18, |
|
792 | - 18, 17, 18, 20, 72, 72, 27, 12, 72, 19, |
|
793 | - 130, 130, 75, 27, 27, 27, 27, 8, 16, 102, |
|
794 | - 64, 72, 72, 72, 130, 130, 21, 104, 51, 76, |
|
795 | - 27, 72, 51, 56, 61, 57, 51, 120, 97, 130, |
|
796 | - 130, -1, 27, 62, 62, -1, -1, 27, -1, -1, |
|
797 | - -1, 89, 51, -1, -1, -1, -1, -1, -1, -1, |
|
798 | - -1, -1, 51, -1, -1, -1, -1, -1, -1, -1, |
|
799 | - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
800 | - -1, -1, -1, -1, -1, 87, -1, -1, -1, -1, |
|
801 | - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
802 | - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
803 | - -1, -1, 90 |
|
743 | + 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, |
|
744 | + 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, |
|
745 | + 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, |
|
746 | + 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, |
|
747 | + 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, |
|
748 | + 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, |
|
749 | + 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, |
|
750 | + 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, |
|
751 | + 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, |
|
752 | + 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, |
|
753 | + 36, 36, 36, 36, 36, 36, 36, 36, 36, 50, |
|
754 | + 109, 43, 109, 109, 109, 109, 109, 109, 109, 109, |
|
755 | + 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, |
|
756 | + 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, |
|
757 | + 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, |
|
758 | + 109, 109, 109, 109, 109, 116, 24, 116, 116, 116, |
|
759 | + 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, |
|
760 | + 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, |
|
761 | + 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, |
|
762 | + 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, |
|
763 | + 67, 67, 67, 67, 4, 11, 11, 22, 11, 109, |
|
764 | + 90, 109, 22, 22, 22, 22, 22, 22, 22, 22, |
|
765 | + 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, |
|
766 | + 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, |
|
767 | + 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, |
|
768 | + 22, 22, 106, 106, 106, 106, 106, 106, 74, 113, |
|
769 | + 113, 113, 106, 106, 106, 106, 106, 106, 106, 106, |
|
770 | + 106, 106, 106, 113, 106, 44, 44, 44, 44, 44, |
|
771 | + 44, 113, 53, 53, 53, 44, 44, 44, 44, 44, |
|
772 | + 44, 44, 44, 44, 44, 50, 87, 50, 50, 50, |
|
773 | + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, |
|
774 | + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, |
|
775 | + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, |
|
776 | + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, |
|
777 | + 54, 98, 62, 54, 129, 54, 9, 9, 7, 9, |
|
778 | + 10, 10, 58, 10, 58, 58, 7, 7, 7, 60, |
|
779 | + 60, 60, 40, 7, 9, 9, 9, 9, 9, 9, |
|
780 | + 9, 9, 9, 117, 50, 50, 50, 50, 50, 50, |
|
781 | + 7, 7, 33, 33, 50, 50, 50, 50, 50, 50, |
|
782 | + 50, 50, 50, 50, 50, 18, 50, 50, 50, 50, |
|
783 | + 50, 50, 50, 72, 99, 99, 99, 99, 99, 99, |
|
784 | + 99, 99, 99, 99, 2, 108, 37, 108, 121, 2, |
|
785 | + 37, 42, 72, 50, 50, 50, 50, 18, 18, 50, |
|
786 | + 50, 50, 127, 37, 37, 108, 108, 108, 7, 7, |
|
787 | + 7, 7, 7, 7, 107, 7, 107, 115, 25, 108, |
|
788 | + 25, 115, 25, 112, 90, 112, 114, 114, 7, 25, |
|
789 | + 91, 69, 25, 25, 25, 25, 25, 7, 25, 25, |
|
790 | + 25, 25, 25, 25, 25, 6, 6, 6, 6, 41, |
|
791 | + 71, 6, 6, 6, 13, 18, 18, 18, 18, 18, |
|
792 | + 18, 17, 18, 20, 72, 72, 27, 12, 72, 19, |
|
793 | + 130, 130, 75, 27, 27, 27, 27, 8, 16, 102, |
|
794 | + 64, 72, 72, 72, 130, 130, 21, 104, 51, 76, |
|
795 | + 27, 72, 51, 56, 61, 57, 51, 120, 97, 130, |
|
796 | + 130, -1, 27, 62, 62, -1, -1, 27, -1, -1, |
|
797 | + -1, 89, 51, -1, -1, -1, -1, -1, -1, -1, |
|
798 | + -1, -1, 51, -1, -1, -1, -1, -1, -1, -1, |
|
799 | + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
800 | + -1, -1, -1, -1, -1, 87, -1, -1, -1, -1, |
|
801 | + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
802 | + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
803 | + -1, -1, 90 |
|
804 | 804 | ); |
805 | 805 | |
806 | 806 | protected $gotoBase = array( |
807 | - 0, 0, -230, 0, 165, 0, 445, 13, 157, 343, |
|
808 | - 347, 202, 130, 149, 0, 0, 82, 147, 60, 131, |
|
809 | - 148, 56, -11, 0, 121, -195, 0, 63, 0, 0, |
|
810 | - 0, 0, 0, 328, 0, 0, -40, 376, 0, 0, |
|
811 | - 306, 171, 123, 86, -22, 0, 0, 0, 0, 0, |
|
812 | - 77, 74, 0, -39, -136, 0, 67, 59, -301, 0, |
|
813 | - 12, 57, -117, 0, 133, 0, 0, -97, 0, 137, |
|
814 | - 0, 155, 48, 0, 217, 126, 58, 0, 0, 0, |
|
815 | - 0, 0, 0, 0, 0, 0, 0, 257, 0, 61, |
|
816 | - 153, 141, 0, 0, 0, 0, 0, 51, 298, 344, |
|
817 | - 0, 0, 73, 0, 78, 0, -45, 127, 98, -108, |
|
818 | - 0, 0, 136, -78, 118, 111, -63, 152, 0, 0, |
|
819 | - 55, 196, 0, 0, 0, 0, 0, 132, 0, 299, |
|
820 | - 173, 0 |
|
807 | + 0, 0, -230, 0, 165, 0, 445, 13, 157, 343, |
|
808 | + 347, 202, 130, 149, 0, 0, 82, 147, 60, 131, |
|
809 | + 148, 56, -11, 0, 121, -195, 0, 63, 0, 0, |
|
810 | + 0, 0, 0, 328, 0, 0, -40, 376, 0, 0, |
|
811 | + 306, 171, 123, 86, -22, 0, 0, 0, 0, 0, |
|
812 | + 77, 74, 0, -39, -136, 0, 67, 59, -301, 0, |
|
813 | + 12, 57, -117, 0, 133, 0, 0, -97, 0, 137, |
|
814 | + 0, 155, 48, 0, 217, 126, 58, 0, 0, 0, |
|
815 | + 0, 0, 0, 0, 0, 0, 0, 257, 0, 61, |
|
816 | + 153, 141, 0, 0, 0, 0, 0, 51, 298, 344, |
|
817 | + 0, 0, 73, 0, 78, 0, -45, 127, 98, -108, |
|
818 | + 0, 0, 136, -78, 118, 111, -63, 152, 0, 0, |
|
819 | + 55, 196, 0, 0, 0, 0, 0, 132, 0, 299, |
|
820 | + 173, 0 |
|
821 | 821 | ); |
822 | 822 | |
823 | 823 | protected $gotoDefault = array( |
824 | - -32768, 482, 3, 672, 733, 741, 613, 499, 535, 782, |
|
825 | - 783, 784, 384, 430, 500, 383, 419, 412, 772, 765, |
|
826 | - 767, 775, 184, 420, 778, 8, 780, 999, 371, 787, |
|
827 | - 372, 605, 789, 548, 791, 792, 150, 501, 385, 386, |
|
828 | - 549, 394, 594, 806, 284, 391, 808, 373, 810, 816, |
|
829 | - 374, 625, 609, 577, 622, 502, 462, 588, 293, 558, |
|
830 | - 584, 847, 360, 855, 660, 863, 866, 503, 578, 877, |
|
831 | - 468, 885, 1075, 402, 891, 897, 902, 905, 438, 421, |
|
832 | - 601, 909, 910, 32, 914, 634, 635, 929, 318, 937, |
|
833 | - 950, 436, 1018, 1020, 504, 505, 542, 476, 527, 547, |
|
834 | - 506, 1041, 456, 423, 1044, 507, 508, 446, 447, 1062, |
|
835 | - 1059, 366, 1143, 365, 464, 327, 1130, 597, 1094, 472, |
|
836 | - 1181, 1139, 355, 509, 510, 379, 396, 1176, 451, 1183, |
|
837 | - 1190, 585 |
|
824 | + -32768, 482, 3, 672, 733, 741, 613, 499, 535, 782, |
|
825 | + 783, 784, 384, 430, 500, 383, 419, 412, 772, 765, |
|
826 | + 767, 775, 184, 420, 778, 8, 780, 999, 371, 787, |
|
827 | + 372, 605, 789, 548, 791, 792, 150, 501, 385, 386, |
|
828 | + 549, 394, 594, 806, 284, 391, 808, 373, 810, 816, |
|
829 | + 374, 625, 609, 577, 622, 502, 462, 588, 293, 558, |
|
830 | + 584, 847, 360, 855, 660, 863, 866, 503, 578, 877, |
|
831 | + 468, 885, 1075, 402, 891, 897, 902, 905, 438, 421, |
|
832 | + 601, 909, 910, 32, 914, 634, 635, 929, 318, 937, |
|
833 | + 950, 436, 1018, 1020, 504, 505, 542, 476, 527, 547, |
|
834 | + 506, 1041, 456, 423, 1044, 507, 508, 446, 447, 1062, |
|
835 | + 1059, 366, 1143, 365, 464, 327, 1130, 597, 1094, 472, |
|
836 | + 1181, 1139, 355, 509, 510, 379, 396, 1176, 451, 1183, |
|
837 | + 1190, 585 |
|
838 | 838 | ); |
839 | 839 | |
840 | 840 | protected $ruleToNonTerminal = array( |
841 | - 0, 1, 2, 2, 4, 4, 4, 4, 4, 4, |
|
842 | - 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, |
|
843 | - 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, |
|
844 | - 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, |
|
845 | - 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, |
|
846 | - 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, |
|
847 | - 4, 4, 4, 5, 5, 5, 5, 5, 5, 5, |
|
848 | - 6, 6, 7, 7, 8, 3, 3, 3, 3, 3, |
|
849 | - 3, 3, 3, 3, 3, 3, 13, 13, 14, 14, |
|
850 | - 14, 14, 16, 16, 12, 12, 17, 17, 18, 18, |
|
851 | - 19, 19, 20, 20, 15, 15, 21, 23, 23, 24, |
|
852 | - 25, 25, 26, 26, 26, 26, 9, 9, 9, 9, |
|
853 | - 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, |
|
854 | - 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, |
|
855 | - 9, 9, 9, 9, 9, 47, 47, 49, 48, 48, |
|
856 | - 41, 41, 51, 51, 52, 52, 10, 11, 11, 11, |
|
857 | - 55, 55, 55, 56, 56, 59, 59, 57, 57, 60, |
|
858 | - 60, 34, 34, 43, 43, 46, 46, 45, 45, 61, |
|
859 | - 35, 35, 35, 35, 62, 62, 63, 63, 64, 64, |
|
860 | - 32, 32, 28, 28, 65, 30, 30, 66, 29, 29, |
|
861 | - 31, 31, 42, 42, 42, 53, 53, 68, 68, 69, |
|
862 | - 69, 71, 71, 71, 70, 70, 54, 54, 72, 72, |
|
863 | - 72, 73, 73, 74, 74, 74, 38, 38, 75, 75, |
|
864 | - 75, 39, 39, 76, 76, 58, 58, 77, 77, 77, |
|
865 | - 77, 82, 82, 83, 83, 84, 84, 84, 84, 84, |
|
866 | - 85, 86, 86, 81, 81, 78, 78, 80, 80, 88, |
|
867 | - 88, 87, 87, 87, 87, 87, 87, 79, 79, 89, |
|
868 | - 89, 40, 40, 33, 33, 36, 36, 36, 36, 36, |
|
869 | - 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, |
|
870 | - 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, |
|
871 | - 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, |
|
872 | - 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, |
|
873 | - 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, |
|
874 | - 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, |
|
875 | - 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, |
|
876 | - 36, 36, 36, 36, 36, 36, 36, 36, 36, 27, |
|
877 | - 27, 37, 37, 94, 94, 95, 95, 95, 95, 101, |
|
878 | - 90, 90, 97, 97, 103, 103, 104, 105, 105, 105, |
|
879 | - 105, 105, 105, 109, 109, 50, 50, 50, 91, 91, |
|
880 | - 110, 110, 106, 106, 111, 111, 111, 111, 92, 92, |
|
881 | - 92, 96, 96, 96, 102, 102, 116, 116, 116, 116, |
|
882 | - 116, 116, 116, 116, 116, 116, 116, 116, 116, 22, |
|
883 | - 22, 22, 22, 22, 22, 118, 118, 118, 118, 118, |
|
884 | - 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, |
|
885 | - 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, |
|
886 | - 118, 118, 118, 118, 118, 118, 118, 118, 100, 100, |
|
887 | - 93, 93, 93, 93, 117, 117, 120, 120, 119, 119, |
|
888 | - 121, 121, 44, 44, 44, 44, 123, 123, 122, 122, |
|
889 | - 122, 122, 122, 124, 124, 108, 108, 112, 112, 107, |
|
890 | - 107, 125, 125, 125, 125, 113, 113, 113, 113, 99, |
|
891 | - 99, 114, 114, 114, 67, 126, 126, 127, 127, 127, |
|
892 | - 98, 98, 128, 128, 129, 129, 129, 129, 115, 115, |
|
893 | - 115, 115, 130, 130, 130, 130, 130, 130, 130, 131, |
|
894 | - 131, 131 |
|
841 | + 0, 1, 2, 2, 4, 4, 4, 4, 4, 4, |
|
842 | + 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, |
|
843 | + 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, |
|
844 | + 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, |
|
845 | + 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, |
|
846 | + 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, |
|
847 | + 4, 4, 4, 5, 5, 5, 5, 5, 5, 5, |
|
848 | + 6, 6, 7, 7, 8, 3, 3, 3, 3, 3, |
|
849 | + 3, 3, 3, 3, 3, 3, 13, 13, 14, 14, |
|
850 | + 14, 14, 16, 16, 12, 12, 17, 17, 18, 18, |
|
851 | + 19, 19, 20, 20, 15, 15, 21, 23, 23, 24, |
|
852 | + 25, 25, 26, 26, 26, 26, 9, 9, 9, 9, |
|
853 | + 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, |
|
854 | + 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, |
|
855 | + 9, 9, 9, 9, 9, 47, 47, 49, 48, 48, |
|
856 | + 41, 41, 51, 51, 52, 52, 10, 11, 11, 11, |
|
857 | + 55, 55, 55, 56, 56, 59, 59, 57, 57, 60, |
|
858 | + 60, 34, 34, 43, 43, 46, 46, 45, 45, 61, |
|
859 | + 35, 35, 35, 35, 62, 62, 63, 63, 64, 64, |
|
860 | + 32, 32, 28, 28, 65, 30, 30, 66, 29, 29, |
|
861 | + 31, 31, 42, 42, 42, 53, 53, 68, 68, 69, |
|
862 | + 69, 71, 71, 71, 70, 70, 54, 54, 72, 72, |
|
863 | + 72, 73, 73, 74, 74, 74, 38, 38, 75, 75, |
|
864 | + 75, 39, 39, 76, 76, 58, 58, 77, 77, 77, |
|
865 | + 77, 82, 82, 83, 83, 84, 84, 84, 84, 84, |
|
866 | + 85, 86, 86, 81, 81, 78, 78, 80, 80, 88, |
|
867 | + 88, 87, 87, 87, 87, 87, 87, 79, 79, 89, |
|
868 | + 89, 40, 40, 33, 33, 36, 36, 36, 36, 36, |
|
869 | + 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, |
|
870 | + 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, |
|
871 | + 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, |
|
872 | + 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, |
|
873 | + 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, |
|
874 | + 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, |
|
875 | + 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, |
|
876 | + 36, 36, 36, 36, 36, 36, 36, 36, 36, 27, |
|
877 | + 27, 37, 37, 94, 94, 95, 95, 95, 95, 101, |
|
878 | + 90, 90, 97, 97, 103, 103, 104, 105, 105, 105, |
|
879 | + 105, 105, 105, 109, 109, 50, 50, 50, 91, 91, |
|
880 | + 110, 110, 106, 106, 111, 111, 111, 111, 92, 92, |
|
881 | + 92, 96, 96, 96, 102, 102, 116, 116, 116, 116, |
|
882 | + 116, 116, 116, 116, 116, 116, 116, 116, 116, 22, |
|
883 | + 22, 22, 22, 22, 22, 118, 118, 118, 118, 118, |
|
884 | + 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, |
|
885 | + 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, |
|
886 | + 118, 118, 118, 118, 118, 118, 118, 118, 100, 100, |
|
887 | + 93, 93, 93, 93, 117, 117, 120, 120, 119, 119, |
|
888 | + 121, 121, 44, 44, 44, 44, 123, 123, 122, 122, |
|
889 | + 122, 122, 122, 124, 124, 108, 108, 112, 112, 107, |
|
890 | + 107, 125, 125, 125, 125, 113, 113, 113, 113, 99, |
|
891 | + 99, 114, 114, 114, 67, 126, 126, 127, 127, 127, |
|
892 | + 98, 98, 128, 128, 129, 129, 129, 129, 115, 115, |
|
893 | + 115, 115, 130, 130, 130, 130, 130, 130, 130, 131, |
|
894 | + 131, 131 |
|
895 | 895 | ); |
896 | 896 | |
897 | 897 | protected $ruleToLength = array( |
898 | - 1, 1, 2, 0, 1, 1, 1, 1, 1, 1, |
|
899 | - 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, |
|
900 | - 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, |
|
901 | - 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, |
|
902 | - 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, |
|
903 | - 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, |
|
904 | - 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, |
|
905 | - 1, 1, 1, 3, 1, 1, 1, 1, 1, 3, |
|
906 | - 5, 4, 3, 4, 2, 3, 1, 1, 7, 8, |
|
907 | - 6, 7, 3, 1, 3, 1, 3, 1, 1, 3, |
|
908 | - 1, 2, 1, 2, 3, 1, 3, 3, 1, 3, |
|
909 | - 2, 0, 1, 1, 1, 1, 3, 5, 8, 3, |
|
910 | - 5, 9, 3, 2, 3, 2, 3, 2, 3, 2, |
|
911 | - 3, 3, 3, 1, 2, 5, 7, 9, 5, 1, |
|
912 | - 6, 3, 3, 2, 1, 0, 2, 8, 0, 4, |
|
913 | - 1, 3, 0, 1, 0, 1, 10, 7, 6, 5, |
|
914 | - 1, 2, 2, 0, 2, 0, 2, 0, 2, 1, |
|
915 | - 3, 1, 4, 1, 4, 1, 4, 1, 3, 3, |
|
916 | - 3, 4, 4, 5, 0, 2, 4, 3, 1, 1, |
|
917 | - 1, 4, 0, 2, 3, 0, 2, 4, 0, 2, |
|
918 | - 0, 3, 1, 2, 1, 1, 0, 1, 3, 4, |
|
919 | - 6, 1, 1, 1, 0, 1, 0, 2, 2, 3, |
|
920 | - 3, 1, 3, 1, 2, 2, 3, 1, 1, 2, |
|
921 | - 4, 3, 1, 1, 3, 2, 0, 3, 3, 9, |
|
922 | - 3, 1, 3, 0, 2, 4, 5, 4, 4, 4, |
|
923 | - 3, 1, 1, 1, 3, 1, 1, 0, 1, 1, |
|
924 | - 2, 1, 1, 1, 1, 1, 1, 1, 3, 1, |
|
925 | - 3, 3, 1, 0, 1, 1, 3, 3, 4, 4, |
|
926 | - 1, 2, 3, 3, 3, 3, 3, 3, 3, 3, |
|
927 | - 3, 3, 3, 3, 2, 2, 2, 2, 3, 3, |
|
928 | - 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, |
|
929 | - 3, 3, 3, 3, 3, 2, 2, 2, 2, 3, |
|
930 | - 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, |
|
931 | - 3, 5, 4, 3, 4, 4, 2, 2, 2, 2, |
|
932 | - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, |
|
933 | - 1, 1, 1, 3, 2, 1, 2, 10, 11, 3, |
|
934 | - 3, 2, 4, 4, 3, 4, 4, 4, 4, 7, |
|
935 | - 3, 2, 0, 4, 1, 3, 2, 2, 4, 6, |
|
936 | - 2, 2, 4, 1, 1, 1, 2, 3, 1, 1, |
|
937 | - 1, 1, 1, 1, 3, 3, 4, 4, 0, 2, |
|
938 | - 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, |
|
939 | - 1, 1, 1, 1, 1, 1, 1, 3, 2, 1, |
|
940 | - 3, 1, 4, 3, 1, 3, 3, 3, 3, 3, |
|
941 | - 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, |
|
942 | - 3, 3, 2, 2, 2, 2, 3, 3, 3, 3, |
|
943 | - 3, 3, 3, 3, 5, 4, 4, 3, 1, 3, |
|
944 | - 1, 1, 3, 3, 0, 2, 0, 1, 3, 1, |
|
945 | - 3, 1, 1, 1, 1, 1, 6, 4, 3, 4, |
|
946 | - 2, 4, 4, 1, 3, 1, 2, 1, 1, 4, |
|
947 | - 1, 3, 6, 4, 4, 4, 4, 1, 4, 0, |
|
948 | - 1, 1, 3, 1, 4, 3, 1, 1, 1, 0, |
|
949 | - 0, 2, 3, 1, 3, 1, 4, 2, 2, 2, |
|
950 | - 1, 2, 1, 4, 3, 3, 3, 6, 3, 1, |
|
951 | - 1, 1 |
|
898 | + 1, 1, 2, 0, 1, 1, 1, 1, 1, 1, |
|
899 | + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, |
|
900 | + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, |
|
901 | + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, |
|
902 | + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, |
|
903 | + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, |
|
904 | + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, |
|
905 | + 1, 1, 1, 3, 1, 1, 1, 1, 1, 3, |
|
906 | + 5, 4, 3, 4, 2, 3, 1, 1, 7, 8, |
|
907 | + 6, 7, 3, 1, 3, 1, 3, 1, 1, 3, |
|
908 | + 1, 2, 1, 2, 3, 1, 3, 3, 1, 3, |
|
909 | + 2, 0, 1, 1, 1, 1, 3, 5, 8, 3, |
|
910 | + 5, 9, 3, 2, 3, 2, 3, 2, 3, 2, |
|
911 | + 3, 3, 3, 1, 2, 5, 7, 9, 5, 1, |
|
912 | + 6, 3, 3, 2, 1, 0, 2, 8, 0, 4, |
|
913 | + 1, 3, 0, 1, 0, 1, 10, 7, 6, 5, |
|
914 | + 1, 2, 2, 0, 2, 0, 2, 0, 2, 1, |
|
915 | + 3, 1, 4, 1, 4, 1, 4, 1, 3, 3, |
|
916 | + 3, 4, 4, 5, 0, 2, 4, 3, 1, 1, |
|
917 | + 1, 4, 0, 2, 3, 0, 2, 4, 0, 2, |
|
918 | + 0, 3, 1, 2, 1, 1, 0, 1, 3, 4, |
|
919 | + 6, 1, 1, 1, 0, 1, 0, 2, 2, 3, |
|
920 | + 3, 1, 3, 1, 2, 2, 3, 1, 1, 2, |
|
921 | + 4, 3, 1, 1, 3, 2, 0, 3, 3, 9, |
|
922 | + 3, 1, 3, 0, 2, 4, 5, 4, 4, 4, |
|
923 | + 3, 1, 1, 1, 3, 1, 1, 0, 1, 1, |
|
924 | + 2, 1, 1, 1, 1, 1, 1, 1, 3, 1, |
|
925 | + 3, 3, 1, 0, 1, 1, 3, 3, 4, 4, |
|
926 | + 1, 2, 3, 3, 3, 3, 3, 3, 3, 3, |
|
927 | + 3, 3, 3, 3, 2, 2, 2, 2, 3, 3, |
|
928 | + 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, |
|
929 | + 3, 3, 3, 3, 3, 2, 2, 2, 2, 3, |
|
930 | + 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, |
|
931 | + 3, 5, 4, 3, 4, 4, 2, 2, 2, 2, |
|
932 | + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, |
|
933 | + 1, 1, 1, 3, 2, 1, 2, 10, 11, 3, |
|
934 | + 3, 2, 4, 4, 3, 4, 4, 4, 4, 7, |
|
935 | + 3, 2, 0, 4, 1, 3, 2, 2, 4, 6, |
|
936 | + 2, 2, 4, 1, 1, 1, 2, 3, 1, 1, |
|
937 | + 1, 1, 1, 1, 3, 3, 4, 4, 0, 2, |
|
938 | + 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, |
|
939 | + 1, 1, 1, 1, 1, 1, 1, 3, 2, 1, |
|
940 | + 3, 1, 4, 3, 1, 3, 3, 3, 3, 3, |
|
941 | + 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, |
|
942 | + 3, 3, 2, 2, 2, 2, 3, 3, 3, 3, |
|
943 | + 3, 3, 3, 3, 5, 4, 4, 3, 1, 3, |
|
944 | + 1, 1, 3, 3, 0, 2, 0, 1, 3, 1, |
|
945 | + 3, 1, 1, 1, 1, 1, 6, 4, 3, 4, |
|
946 | + 2, 4, 4, 1, 3, 1, 2, 1, 1, 4, |
|
947 | + 1, 3, 6, 4, 4, 4, 4, 1, 4, 0, |
|
948 | + 1, 1, 3, 1, 4, 3, 1, 1, 1, 0, |
|
949 | + 0, 2, 3, 1, 3, 1, 4, 2, 2, 2, |
|
950 | + 1, 2, 1, 4, 3, 3, 3, 6, 3, 1, |
|
951 | + 1, 1 |
|
952 | 952 | ); |
953 | 953 | |
954 | 954 | protected function reduceRule0() { |
@@ -956,11 +956,11 @@ discard block |
||
956 | 956 | } |
957 | 957 | |
958 | 958 | protected function reduceRule1() { |
959 | - $this->semValue = $this->handleNamespaces($this->semStack[$this->stackPos-(1-1)]); |
|
959 | + $this->semValue = $this->handleNamespaces($this->semStack[$this->stackPos - (1 - 1)]); |
|
960 | 960 | } |
961 | 961 | |
962 | 962 | protected function reduceRule2() { |
963 | - if (is_array($this->semStack[$this->stackPos-(2-2)])) { $this->semValue = array_merge($this->semStack[$this->stackPos-(2-1)], $this->semStack[$this->stackPos-(2-2)]); } else { $this->semStack[$this->stackPos-(2-1)][] = $this->semStack[$this->stackPos-(2-2)]; $this->semValue = $this->semStack[$this->stackPos-(2-1)]; }; |
|
963 | + if (is_array($this->semStack[$this->stackPos - (2 - 2)])) { $this->semValue = array_merge($this->semStack[$this->stackPos - (2 - 1)], $this->semStack[$this->stackPos - (2 - 2)]); } else { $this->semStack[$this->stackPos - (2 - 1)][] = $this->semStack[$this->stackPos - (2 - 2)]; $this->semValue = $this->semStack[$this->stackPos - (2 - 1)]; }; |
|
964 | 964 | } |
965 | 965 | |
966 | 966 | protected function reduceRule3() { |
@@ -1232,67 +1232,67 @@ discard block |
||
1232 | 1232 | } |
1233 | 1233 | |
1234 | 1234 | protected function reduceRule70() { |
1235 | - $this->semValue = $this->semStack[$this->stackPos-(1-1)]; |
|
1235 | + $this->semValue = $this->semStack[$this->stackPos - (1 - 1)]; |
|
1236 | 1236 | } |
1237 | 1237 | |
1238 | 1238 | protected function reduceRule71() { |
1239 | - $this->semValue = $this->semStack[$this->stackPos-(1-1)]; |
|
1239 | + $this->semValue = $this->semStack[$this->stackPos - (1 - 1)]; |
|
1240 | 1240 | } |
1241 | 1241 | |
1242 | 1242 | protected function reduceRule72() { |
1243 | - $this->semValue = array($this->semStack[$this->stackPos-(1-1)]); |
|
1243 | + $this->semValue = array($this->semStack[$this->stackPos - (1 - 1)]); |
|
1244 | 1244 | } |
1245 | 1245 | |
1246 | 1246 | protected function reduceRule73() { |
1247 | - $this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)]; |
|
1247 | + $this->semStack[$this->stackPos - (3 - 1)][] = $this->semStack[$this->stackPos - (3 - 3)]; $this->semValue = $this->semStack[$this->stackPos - (3 - 1)]; |
|
1248 | 1248 | } |
1249 | 1249 | |
1250 | 1250 | protected function reduceRule74() { |
1251 | - $this->semValue = new Name($this->semStack[$this->stackPos-(1-1)], $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes); |
|
1251 | + $this->semValue = new Name($this->semStack[$this->stackPos - (1 - 1)], $this->startAttributeStack[$this->stackPos - (1 - 1)] + $this->endAttributes); |
|
1252 | 1252 | } |
1253 | 1253 | |
1254 | 1254 | protected function reduceRule75() { |
1255 | - $this->semValue = $this->semStack[$this->stackPos-(1-1)]; |
|
1255 | + $this->semValue = $this->semStack[$this->stackPos - (1 - 1)]; |
|
1256 | 1256 | } |
1257 | 1257 | |
1258 | 1258 | protected function reduceRule76() { |
1259 | - $this->semValue = $this->semStack[$this->stackPos-(1-1)]; |
|
1259 | + $this->semValue = $this->semStack[$this->stackPos - (1 - 1)]; |
|
1260 | 1260 | } |
1261 | 1261 | |
1262 | 1262 | protected function reduceRule77() { |
1263 | - $this->semValue = $this->semStack[$this->stackPos-(1-1)]; |
|
1263 | + $this->semValue = $this->semStack[$this->stackPos - (1 - 1)]; |
|
1264 | 1264 | } |
1265 | 1265 | |
1266 | 1266 | protected function reduceRule78() { |
1267 | - $this->semValue = new Stmt\HaltCompiler($this->lexer->handleHaltCompiler(), $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes); |
|
1267 | + $this->semValue = new Stmt\HaltCompiler($this->lexer->handleHaltCompiler(), $this->startAttributeStack[$this->stackPos - (1 - 1)] + $this->endAttributes); |
|
1268 | 1268 | } |
1269 | 1269 | |
1270 | 1270 | protected function reduceRule79() { |
1271 | - $this->semValue = new Stmt\Namespace_($this->semStack[$this->stackPos-(3-2)], null, $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
1271 | + $this->semValue = new Stmt\Namespace_($this->semStack[$this->stackPos - (3 - 2)], null, $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
1272 | 1272 | } |
1273 | 1273 | |
1274 | 1274 | protected function reduceRule80() { |
1275 | - $this->semValue = new Stmt\Namespace_($this->semStack[$this->stackPos-(5-2)], $this->semStack[$this->stackPos-(5-4)], $this->startAttributeStack[$this->stackPos-(5-1)] + $this->endAttributes); |
|
1275 | + $this->semValue = new Stmt\Namespace_($this->semStack[$this->stackPos - (5 - 2)], $this->semStack[$this->stackPos - (5 - 4)], $this->startAttributeStack[$this->stackPos - (5 - 1)] + $this->endAttributes); |
|
1276 | 1276 | } |
1277 | 1277 | |
1278 | 1278 | protected function reduceRule81() { |
1279 | - $this->semValue = new Stmt\Namespace_(null, $this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes); |
|
1279 | + $this->semValue = new Stmt\Namespace_(null, $this->semStack[$this->stackPos - (4 - 3)], $this->startAttributeStack[$this->stackPos - (4 - 1)] + $this->endAttributes); |
|
1280 | 1280 | } |
1281 | 1281 | |
1282 | 1282 | protected function reduceRule82() { |
1283 | - $this->semValue = new Stmt\Use_($this->semStack[$this->stackPos-(3-2)], Stmt\Use_::TYPE_NORMAL, $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
1283 | + $this->semValue = new Stmt\Use_($this->semStack[$this->stackPos - (3 - 2)], Stmt\Use_::TYPE_NORMAL, $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
1284 | 1284 | } |
1285 | 1285 | |
1286 | 1286 | protected function reduceRule83() { |
1287 | - $this->semValue = new Stmt\Use_($this->semStack[$this->stackPos-(4-3)], $this->semStack[$this->stackPos-(4-2)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes); |
|
1287 | + $this->semValue = new Stmt\Use_($this->semStack[$this->stackPos - (4 - 3)], $this->semStack[$this->stackPos - (4 - 2)], $this->startAttributeStack[$this->stackPos - (4 - 1)] + $this->endAttributes); |
|
1288 | 1288 | } |
1289 | 1289 | |
1290 | 1290 | protected function reduceRule84() { |
1291 | - $this->semValue = $this->semStack[$this->stackPos-(2-1)]; |
|
1291 | + $this->semValue = $this->semStack[$this->stackPos - (2 - 1)]; |
|
1292 | 1292 | } |
1293 | 1293 | |
1294 | 1294 | protected function reduceRule85() { |
1295 | - $this->semValue = new Stmt\Const_($this->semStack[$this->stackPos-(3-2)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
1295 | + $this->semValue = new Stmt\Const_($this->semStack[$this->stackPos - (3 - 2)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
1296 | 1296 | } |
1297 | 1297 | |
1298 | 1298 | protected function reduceRule86() { |
@@ -1304,95 +1304,95 @@ discard block |
||
1304 | 1304 | } |
1305 | 1305 | |
1306 | 1306 | protected function reduceRule88() { |
1307 | - $this->semValue = new Stmt\GroupUse(new Name($this->semStack[$this->stackPos-(7-3)], $this->startAttributeStack[$this->stackPos-(7-1)] + $this->endAttributes), $this->semStack[$this->stackPos-(7-6)], $this->semStack[$this->stackPos-(7-2)], $this->startAttributeStack[$this->stackPos-(7-1)] + $this->endAttributes); |
|
1307 | + $this->semValue = new Stmt\GroupUse(new Name($this->semStack[$this->stackPos - (7 - 3)], $this->startAttributeStack[$this->stackPos - (7 - 1)] + $this->endAttributes), $this->semStack[$this->stackPos - (7 - 6)], $this->semStack[$this->stackPos - (7 - 2)], $this->startAttributeStack[$this->stackPos - (7 - 1)] + $this->endAttributes); |
|
1308 | 1308 | } |
1309 | 1309 | |
1310 | 1310 | protected function reduceRule89() { |
1311 | - $this->semValue = new Stmt\GroupUse(new Name($this->semStack[$this->stackPos-(8-4)], $this->startAttributeStack[$this->stackPos-(8-1)] + $this->endAttributes), $this->semStack[$this->stackPos-(8-7)], $this->semStack[$this->stackPos-(8-2)], $this->startAttributeStack[$this->stackPos-(8-1)] + $this->endAttributes); |
|
1311 | + $this->semValue = new Stmt\GroupUse(new Name($this->semStack[$this->stackPos - (8 - 4)], $this->startAttributeStack[$this->stackPos - (8 - 1)] + $this->endAttributes), $this->semStack[$this->stackPos - (8 - 7)], $this->semStack[$this->stackPos - (8 - 2)], $this->startAttributeStack[$this->stackPos - (8 - 1)] + $this->endAttributes); |
|
1312 | 1312 | } |
1313 | 1313 | |
1314 | 1314 | protected function reduceRule90() { |
1315 | - $this->semValue = new Stmt\GroupUse(new Name($this->semStack[$this->stackPos-(6-2)], $this->startAttributeStack[$this->stackPos-(6-1)] + $this->endAttributes), $this->semStack[$this->stackPos-(6-5)], Stmt\Use_::TYPE_UNKNOWN, $this->startAttributeStack[$this->stackPos-(6-1)] + $this->endAttributes); |
|
1315 | + $this->semValue = new Stmt\GroupUse(new Name($this->semStack[$this->stackPos - (6 - 2)], $this->startAttributeStack[$this->stackPos - (6 - 1)] + $this->endAttributes), $this->semStack[$this->stackPos - (6 - 5)], Stmt\Use_::TYPE_UNKNOWN, $this->startAttributeStack[$this->stackPos - (6 - 1)] + $this->endAttributes); |
|
1316 | 1316 | } |
1317 | 1317 | |
1318 | 1318 | protected function reduceRule91() { |
1319 | - $this->semValue = new Stmt\GroupUse(new Name($this->semStack[$this->stackPos-(7-3)], $this->startAttributeStack[$this->stackPos-(7-1)] + $this->endAttributes), $this->semStack[$this->stackPos-(7-6)], Stmt\Use_::TYPE_UNKNOWN, $this->startAttributeStack[$this->stackPos-(7-1)] + $this->endAttributes); |
|
1319 | + $this->semValue = new Stmt\GroupUse(new Name($this->semStack[$this->stackPos - (7 - 3)], $this->startAttributeStack[$this->stackPos - (7 - 1)] + $this->endAttributes), $this->semStack[$this->stackPos - (7 - 6)], Stmt\Use_::TYPE_UNKNOWN, $this->startAttributeStack[$this->stackPos - (7 - 1)] + $this->endAttributes); |
|
1320 | 1320 | } |
1321 | 1321 | |
1322 | 1322 | protected function reduceRule92() { |
1323 | - $this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)]; |
|
1323 | + $this->semStack[$this->stackPos - (3 - 1)][] = $this->semStack[$this->stackPos - (3 - 3)]; $this->semValue = $this->semStack[$this->stackPos - (3 - 1)]; |
|
1324 | 1324 | } |
1325 | 1325 | |
1326 | 1326 | protected function reduceRule93() { |
1327 | - $this->semValue = array($this->semStack[$this->stackPos-(1-1)]); |
|
1327 | + $this->semValue = array($this->semStack[$this->stackPos - (1 - 1)]); |
|
1328 | 1328 | } |
1329 | 1329 | |
1330 | 1330 | protected function reduceRule94() { |
1331 | - $this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)]; |
|
1331 | + $this->semStack[$this->stackPos - (3 - 1)][] = $this->semStack[$this->stackPos - (3 - 3)]; $this->semValue = $this->semStack[$this->stackPos - (3 - 1)]; |
|
1332 | 1332 | } |
1333 | 1333 | |
1334 | 1334 | protected function reduceRule95() { |
1335 | - $this->semValue = array($this->semStack[$this->stackPos-(1-1)]); |
|
1335 | + $this->semValue = array($this->semStack[$this->stackPos - (1 - 1)]); |
|
1336 | 1336 | } |
1337 | 1337 | |
1338 | 1338 | protected function reduceRule96() { |
1339 | - $this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)]; |
|
1339 | + $this->semStack[$this->stackPos - (3 - 1)][] = $this->semStack[$this->stackPos - (3 - 3)]; $this->semValue = $this->semStack[$this->stackPos - (3 - 1)]; |
|
1340 | 1340 | } |
1341 | 1341 | |
1342 | 1342 | protected function reduceRule97() { |
1343 | - $this->semValue = array($this->semStack[$this->stackPos-(1-1)]); |
|
1343 | + $this->semValue = array($this->semStack[$this->stackPos - (1 - 1)]); |
|
1344 | 1344 | } |
1345 | 1345 | |
1346 | 1346 | protected function reduceRule98() { |
1347 | - $this->semValue = new Stmt\UseUse($this->semStack[$this->stackPos-(1-1)], null, Stmt\Use_::TYPE_UNKNOWN, $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes); |
|
1347 | + $this->semValue = new Stmt\UseUse($this->semStack[$this->stackPos - (1 - 1)], null, Stmt\Use_::TYPE_UNKNOWN, $this->startAttributeStack[$this->stackPos - (1 - 1)] + $this->endAttributes); |
|
1348 | 1348 | } |
1349 | 1349 | |
1350 | 1350 | protected function reduceRule99() { |
1351 | - $this->semValue = new Stmt\UseUse($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], Stmt\Use_::TYPE_UNKNOWN, $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
1351 | + $this->semValue = new Stmt\UseUse($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], Stmt\Use_::TYPE_UNKNOWN, $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
1352 | 1352 | } |
1353 | 1353 | |
1354 | 1354 | protected function reduceRule100() { |
1355 | - $this->semValue = $this->semStack[$this->stackPos-(1-1)]; |
|
1355 | + $this->semValue = $this->semStack[$this->stackPos - (1 - 1)]; |
|
1356 | 1356 | } |
1357 | 1357 | |
1358 | 1358 | protected function reduceRule101() { |
1359 | - $this->semValue = $this->semStack[$this->stackPos-(2-2)]; |
|
1359 | + $this->semValue = $this->semStack[$this->stackPos - (2 - 2)]; |
|
1360 | 1360 | } |
1361 | 1361 | |
1362 | 1362 | protected function reduceRule102() { |
1363 | - $this->semValue = $this->semStack[$this->stackPos-(1-1)]; $this->semValue->type = Stmt\Use_::TYPE_NORMAL; |
|
1363 | + $this->semValue = $this->semStack[$this->stackPos - (1 - 1)]; $this->semValue->type = Stmt\Use_::TYPE_NORMAL; |
|
1364 | 1364 | } |
1365 | 1365 | |
1366 | 1366 | protected function reduceRule103() { |
1367 | - $this->semValue = $this->semStack[$this->stackPos-(2-2)]; $this->semValue->type = $this->semStack[$this->stackPos-(2-1)]; |
|
1367 | + $this->semValue = $this->semStack[$this->stackPos - (2 - 2)]; $this->semValue->type = $this->semStack[$this->stackPos - (2 - 1)]; |
|
1368 | 1368 | } |
1369 | 1369 | |
1370 | 1370 | protected function reduceRule104() { |
1371 | - $this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)]; |
|
1371 | + $this->semStack[$this->stackPos - (3 - 1)][] = $this->semStack[$this->stackPos - (3 - 3)]; $this->semValue = $this->semStack[$this->stackPos - (3 - 1)]; |
|
1372 | 1372 | } |
1373 | 1373 | |
1374 | 1374 | protected function reduceRule105() { |
1375 | - $this->semValue = array($this->semStack[$this->stackPos-(1-1)]); |
|
1375 | + $this->semValue = array($this->semStack[$this->stackPos - (1 - 1)]); |
|
1376 | 1376 | } |
1377 | 1377 | |
1378 | 1378 | protected function reduceRule106() { |
1379 | - $this->semValue = new Node\Const_($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
1379 | + $this->semValue = new Node\Const_($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
1380 | 1380 | } |
1381 | 1381 | |
1382 | 1382 | protected function reduceRule107() { |
1383 | - $this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)]; |
|
1383 | + $this->semStack[$this->stackPos - (3 - 1)][] = $this->semStack[$this->stackPos - (3 - 3)]; $this->semValue = $this->semStack[$this->stackPos - (3 - 1)]; |
|
1384 | 1384 | } |
1385 | 1385 | |
1386 | 1386 | protected function reduceRule108() { |
1387 | - $this->semValue = array($this->semStack[$this->stackPos-(1-1)]); |
|
1387 | + $this->semValue = array($this->semStack[$this->stackPos - (1 - 1)]); |
|
1388 | 1388 | } |
1389 | 1389 | |
1390 | 1390 | protected function reduceRule109() { |
1391 | - $this->semValue = new Node\Const_($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
1391 | + $this->semValue = new Node\Const_($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
1392 | 1392 | } |
1393 | 1393 | |
1394 | 1394 | protected function reduceRule110() { |
1395 | - if (is_array($this->semStack[$this->stackPos-(2-2)])) { $this->semValue = array_merge($this->semStack[$this->stackPos-(2-1)], $this->semStack[$this->stackPos-(2-2)]); } else { $this->semStack[$this->stackPos-(2-1)][] = $this->semStack[$this->stackPos-(2-2)]; $this->semValue = $this->semStack[$this->stackPos-(2-1)]; }; |
|
1395 | + if (is_array($this->semStack[$this->stackPos - (2 - 2)])) { $this->semValue = array_merge($this->semStack[$this->stackPos - (2 - 1)], $this->semStack[$this->stackPos - (2 - 2)]); } else { $this->semStack[$this->stackPos - (2 - 1)][] = $this->semStack[$this->stackPos - (2 - 2)]; $this->semValue = $this->semStack[$this->stackPos - (2 - 1)]; }; |
|
1396 | 1396 | } |
1397 | 1397 | |
1398 | 1398 | protected function reduceRule111() { |
@@ -1400,111 +1400,111 @@ discard block |
||
1400 | 1400 | } |
1401 | 1401 | |
1402 | 1402 | protected function reduceRule112() { |
1403 | - $this->semValue = $this->semStack[$this->stackPos-(1-1)]; |
|
1403 | + $this->semValue = $this->semStack[$this->stackPos - (1 - 1)]; |
|
1404 | 1404 | } |
1405 | 1405 | |
1406 | 1406 | protected function reduceRule113() { |
1407 | - $this->semValue = $this->semStack[$this->stackPos-(1-1)]; |
|
1407 | + $this->semValue = $this->semStack[$this->stackPos - (1 - 1)]; |
|
1408 | 1408 | } |
1409 | 1409 | |
1410 | 1410 | protected function reduceRule114() { |
1411 | - $this->semValue = $this->semStack[$this->stackPos-(1-1)]; |
|
1411 | + $this->semValue = $this->semStack[$this->stackPos - (1 - 1)]; |
|
1412 | 1412 | } |
1413 | 1413 | |
1414 | 1414 | protected function reduceRule115() { |
1415 | - throw new Error('__HALT_COMPILER() can only be used from the outermost scope', $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes); |
|
1415 | + throw new Error('__HALT_COMPILER() can only be used from the outermost scope', $this->startAttributeStack[$this->stackPos - (1 - 1)] + $this->endAttributes); |
|
1416 | 1416 | } |
1417 | 1417 | |
1418 | 1418 | protected function reduceRule116() { |
1419 | - $this->semValue = $this->semStack[$this->stackPos-(3-2)]; |
|
1419 | + $this->semValue = $this->semStack[$this->stackPos - (3 - 2)]; |
|
1420 | 1420 | } |
1421 | 1421 | |
1422 | 1422 | protected function reduceRule117() { |
1423 | - $this->semValue = new Stmt\If_($this->semStack[$this->stackPos-(5-2)], ['stmts' => is_array($this->semStack[$this->stackPos-(5-3)]) ? $this->semStack[$this->stackPos-(5-3)] : array($this->semStack[$this->stackPos-(5-3)]), 'elseifs' => $this->semStack[$this->stackPos-(5-4)], 'else' => $this->semStack[$this->stackPos-(5-5)]], $this->startAttributeStack[$this->stackPos-(5-1)] + $this->endAttributes); |
|
1423 | + $this->semValue = new Stmt\If_($this->semStack[$this->stackPos - (5 - 2)], ['stmts' => is_array($this->semStack[$this->stackPos - (5 - 3)]) ? $this->semStack[$this->stackPos - (5 - 3)] : array($this->semStack[$this->stackPos - (5 - 3)]), 'elseifs' => $this->semStack[$this->stackPos - (5 - 4)], 'else' => $this->semStack[$this->stackPos - (5 - 5)]], $this->startAttributeStack[$this->stackPos - (5 - 1)] + $this->endAttributes); |
|
1424 | 1424 | } |
1425 | 1425 | |
1426 | 1426 | protected function reduceRule118() { |
1427 | - $this->semValue = new Stmt\If_($this->semStack[$this->stackPos-(8-2)], ['stmts' => $this->semStack[$this->stackPos-(8-4)], 'elseifs' => $this->semStack[$this->stackPos-(8-5)], 'else' => $this->semStack[$this->stackPos-(8-6)]], $this->startAttributeStack[$this->stackPos-(8-1)] + $this->endAttributes); |
|
1427 | + $this->semValue = new Stmt\If_($this->semStack[$this->stackPos - (8 - 2)], ['stmts' => $this->semStack[$this->stackPos - (8 - 4)], 'elseifs' => $this->semStack[$this->stackPos - (8 - 5)], 'else' => $this->semStack[$this->stackPos - (8 - 6)]], $this->startAttributeStack[$this->stackPos - (8 - 1)] + $this->endAttributes); |
|
1428 | 1428 | } |
1429 | 1429 | |
1430 | 1430 | protected function reduceRule119() { |
1431 | - $this->semValue = new Stmt\While_($this->semStack[$this->stackPos-(3-2)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
1431 | + $this->semValue = new Stmt\While_($this->semStack[$this->stackPos - (3 - 2)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
1432 | 1432 | } |
1433 | 1433 | |
1434 | 1434 | protected function reduceRule120() { |
1435 | - $this->semValue = new Stmt\Do_($this->semStack[$this->stackPos-(5-4)], is_array($this->semStack[$this->stackPos-(5-2)]) ? $this->semStack[$this->stackPos-(5-2)] : array($this->semStack[$this->stackPos-(5-2)]), $this->startAttributeStack[$this->stackPos-(5-1)] + $this->endAttributes); |
|
1435 | + $this->semValue = new Stmt\Do_($this->semStack[$this->stackPos - (5 - 4)], is_array($this->semStack[$this->stackPos - (5 - 2)]) ? $this->semStack[$this->stackPos - (5 - 2)] : array($this->semStack[$this->stackPos - (5 - 2)]), $this->startAttributeStack[$this->stackPos - (5 - 1)] + $this->endAttributes); |
|
1436 | 1436 | } |
1437 | 1437 | |
1438 | 1438 | protected function reduceRule121() { |
1439 | - $this->semValue = new Stmt\For_(['init' => $this->semStack[$this->stackPos-(9-3)], 'cond' => $this->semStack[$this->stackPos-(9-5)], 'loop' => $this->semStack[$this->stackPos-(9-7)], 'stmts' => $this->semStack[$this->stackPos-(9-9)]], $this->startAttributeStack[$this->stackPos-(9-1)] + $this->endAttributes); |
|
1439 | + $this->semValue = new Stmt\For_(['init' => $this->semStack[$this->stackPos - (9 - 3)], 'cond' => $this->semStack[$this->stackPos - (9 - 5)], 'loop' => $this->semStack[$this->stackPos - (9 - 7)], 'stmts' => $this->semStack[$this->stackPos - (9 - 9)]], $this->startAttributeStack[$this->stackPos - (9 - 1)] + $this->endAttributes); |
|
1440 | 1440 | } |
1441 | 1441 | |
1442 | 1442 | protected function reduceRule122() { |
1443 | - $this->semValue = new Stmt\Switch_($this->semStack[$this->stackPos-(3-2)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
1443 | + $this->semValue = new Stmt\Switch_($this->semStack[$this->stackPos - (3 - 2)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
1444 | 1444 | } |
1445 | 1445 | |
1446 | 1446 | protected function reduceRule123() { |
1447 | - $this->semValue = new Stmt\Break_(null, $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes); |
|
1447 | + $this->semValue = new Stmt\Break_(null, $this->startAttributeStack[$this->stackPos - (2 - 1)] + $this->endAttributes); |
|
1448 | 1448 | } |
1449 | 1449 | |
1450 | 1450 | protected function reduceRule124() { |
1451 | - $this->semValue = new Stmt\Break_($this->semStack[$this->stackPos-(3-2)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
1451 | + $this->semValue = new Stmt\Break_($this->semStack[$this->stackPos - (3 - 2)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
1452 | 1452 | } |
1453 | 1453 | |
1454 | 1454 | protected function reduceRule125() { |
1455 | - $this->semValue = new Stmt\Continue_(null, $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes); |
|
1455 | + $this->semValue = new Stmt\Continue_(null, $this->startAttributeStack[$this->stackPos - (2 - 1)] + $this->endAttributes); |
|
1456 | 1456 | } |
1457 | 1457 | |
1458 | 1458 | protected function reduceRule126() { |
1459 | - $this->semValue = new Stmt\Continue_($this->semStack[$this->stackPos-(3-2)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
1459 | + $this->semValue = new Stmt\Continue_($this->semStack[$this->stackPos - (3 - 2)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
1460 | 1460 | } |
1461 | 1461 | |
1462 | 1462 | protected function reduceRule127() { |
1463 | - $this->semValue = new Stmt\Return_(null, $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes); |
|
1463 | + $this->semValue = new Stmt\Return_(null, $this->startAttributeStack[$this->stackPos - (2 - 1)] + $this->endAttributes); |
|
1464 | 1464 | } |
1465 | 1465 | |
1466 | 1466 | protected function reduceRule128() { |
1467 | - $this->semValue = new Stmt\Return_($this->semStack[$this->stackPos-(3-2)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
1467 | + $this->semValue = new Stmt\Return_($this->semStack[$this->stackPos - (3 - 2)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
1468 | 1468 | } |
1469 | 1469 | |
1470 | 1470 | protected function reduceRule129() { |
1471 | - $this->semValue = $this->semStack[$this->stackPos-(2-1)]; |
|
1471 | + $this->semValue = $this->semStack[$this->stackPos - (2 - 1)]; |
|
1472 | 1472 | } |
1473 | 1473 | |
1474 | 1474 | protected function reduceRule130() { |
1475 | - $this->semValue = new Stmt\Global_($this->semStack[$this->stackPos-(3-2)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
1475 | + $this->semValue = new Stmt\Global_($this->semStack[$this->stackPos - (3 - 2)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
1476 | 1476 | } |
1477 | 1477 | |
1478 | 1478 | protected function reduceRule131() { |
1479 | - $this->semValue = new Stmt\Static_($this->semStack[$this->stackPos-(3-2)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
1479 | + $this->semValue = new Stmt\Static_($this->semStack[$this->stackPos - (3 - 2)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
1480 | 1480 | } |
1481 | 1481 | |
1482 | 1482 | protected function reduceRule132() { |
1483 | - $this->semValue = new Stmt\Echo_($this->semStack[$this->stackPos-(3-2)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
1483 | + $this->semValue = new Stmt\Echo_($this->semStack[$this->stackPos - (3 - 2)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
1484 | 1484 | } |
1485 | 1485 | |
1486 | 1486 | protected function reduceRule133() { |
1487 | - $this->semValue = new Stmt\InlineHTML($this->semStack[$this->stackPos-(1-1)], $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes); |
|
1487 | + $this->semValue = new Stmt\InlineHTML($this->semStack[$this->stackPos - (1 - 1)], $this->startAttributeStack[$this->stackPos - (1 - 1)] + $this->endAttributes); |
|
1488 | 1488 | } |
1489 | 1489 | |
1490 | 1490 | protected function reduceRule134() { |
1491 | - $this->semValue = $this->semStack[$this->stackPos-(2-1)]; |
|
1491 | + $this->semValue = $this->semStack[$this->stackPos - (2 - 1)]; |
|
1492 | 1492 | } |
1493 | 1493 | |
1494 | 1494 | protected function reduceRule135() { |
1495 | - $this->semValue = new Stmt\Unset_($this->semStack[$this->stackPos-(5-3)], $this->startAttributeStack[$this->stackPos-(5-1)] + $this->endAttributes); |
|
1495 | + $this->semValue = new Stmt\Unset_($this->semStack[$this->stackPos - (5 - 3)], $this->startAttributeStack[$this->stackPos - (5 - 1)] + $this->endAttributes); |
|
1496 | 1496 | } |
1497 | 1497 | |
1498 | 1498 | protected function reduceRule136() { |
1499 | - $this->semValue = new Stmt\Foreach_($this->semStack[$this->stackPos-(7-3)], $this->semStack[$this->stackPos-(7-5)][0], ['keyVar' => null, 'byRef' => $this->semStack[$this->stackPos-(7-5)][1], 'stmts' => $this->semStack[$this->stackPos-(7-7)]], $this->startAttributeStack[$this->stackPos-(7-1)] + $this->endAttributes); |
|
1499 | + $this->semValue = new Stmt\Foreach_($this->semStack[$this->stackPos - (7 - 3)], $this->semStack[$this->stackPos - (7 - 5)][0], ['keyVar' => null, 'byRef' => $this->semStack[$this->stackPos - (7 - 5)][1], 'stmts' => $this->semStack[$this->stackPos - (7 - 7)]], $this->startAttributeStack[$this->stackPos - (7 - 1)] + $this->endAttributes); |
|
1500 | 1500 | } |
1501 | 1501 | |
1502 | 1502 | protected function reduceRule137() { |
1503 | - $this->semValue = new Stmt\Foreach_($this->semStack[$this->stackPos-(9-3)], $this->semStack[$this->stackPos-(9-7)][0], ['keyVar' => $this->semStack[$this->stackPos-(9-5)], 'byRef' => $this->semStack[$this->stackPos-(9-7)][1], 'stmts' => $this->semStack[$this->stackPos-(9-9)]], $this->startAttributeStack[$this->stackPos-(9-1)] + $this->endAttributes); |
|
1503 | + $this->semValue = new Stmt\Foreach_($this->semStack[$this->stackPos - (9 - 3)], $this->semStack[$this->stackPos - (9 - 7)][0], ['keyVar' => $this->semStack[$this->stackPos - (9 - 5)], 'byRef' => $this->semStack[$this->stackPos - (9 - 7)][1], 'stmts' => $this->semStack[$this->stackPos - (9 - 9)]], $this->startAttributeStack[$this->stackPos - (9 - 1)] + $this->endAttributes); |
|
1504 | 1504 | } |
1505 | 1505 | |
1506 | 1506 | protected function reduceRule138() { |
1507 | - $this->semValue = new Stmt\Declare_($this->semStack[$this->stackPos-(5-3)], $this->semStack[$this->stackPos-(5-5)], $this->startAttributeStack[$this->stackPos-(5-1)] + $this->endAttributes); |
|
1507 | + $this->semValue = new Stmt\Declare_($this->semStack[$this->stackPos - (5 - 3)], $this->semStack[$this->stackPos - (5 - 5)], $this->startAttributeStack[$this->stackPos - (5 - 1)] + $this->endAttributes); |
|
1508 | 1508 | } |
1509 | 1509 | |
1510 | 1510 | protected function reduceRule139() { |
@@ -1512,19 +1512,19 @@ discard block |
||
1512 | 1512 | } |
1513 | 1513 | |
1514 | 1514 | protected function reduceRule140() { |
1515 | - $this->semValue = new Stmt\TryCatch($this->semStack[$this->stackPos-(6-3)], $this->semStack[$this->stackPos-(6-5)], $this->semStack[$this->stackPos-(6-6)], $this->startAttributeStack[$this->stackPos-(6-1)] + $this->endAttributes); |
|
1515 | + $this->semValue = new Stmt\TryCatch($this->semStack[$this->stackPos - (6 - 3)], $this->semStack[$this->stackPos - (6 - 5)], $this->semStack[$this->stackPos - (6 - 6)], $this->startAttributeStack[$this->stackPos - (6 - 1)] + $this->endAttributes); |
|
1516 | 1516 | } |
1517 | 1517 | |
1518 | 1518 | protected function reduceRule141() { |
1519 | - $this->semValue = new Stmt\Throw_($this->semStack[$this->stackPos-(3-2)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
1519 | + $this->semValue = new Stmt\Throw_($this->semStack[$this->stackPos - (3 - 2)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
1520 | 1520 | } |
1521 | 1521 | |
1522 | 1522 | protected function reduceRule142() { |
1523 | - $this->semValue = new Stmt\Goto_($this->semStack[$this->stackPos-(3-2)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
1523 | + $this->semValue = new Stmt\Goto_($this->semStack[$this->stackPos - (3 - 2)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
1524 | 1524 | } |
1525 | 1525 | |
1526 | 1526 | protected function reduceRule143() { |
1527 | - $this->semValue = new Stmt\Label($this->semStack[$this->stackPos-(2-1)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes); |
|
1527 | + $this->semValue = new Stmt\Label($this->semStack[$this->stackPos - (2 - 1)], $this->startAttributeStack[$this->stackPos - (2 - 1)] + $this->endAttributes); |
|
1528 | 1528 | } |
1529 | 1529 | |
1530 | 1530 | protected function reduceRule144() { |
@@ -1536,11 +1536,11 @@ discard block |
||
1536 | 1536 | } |
1537 | 1537 | |
1538 | 1538 | protected function reduceRule146() { |
1539 | - $this->semStack[$this->stackPos-(2-1)][] = $this->semStack[$this->stackPos-(2-2)]; $this->semValue = $this->semStack[$this->stackPos-(2-1)]; |
|
1539 | + $this->semStack[$this->stackPos - (2 - 1)][] = $this->semStack[$this->stackPos - (2 - 2)]; $this->semValue = $this->semStack[$this->stackPos - (2 - 1)]; |
|
1540 | 1540 | } |
1541 | 1541 | |
1542 | 1542 | protected function reduceRule147() { |
1543 | - $this->semValue = new Stmt\Catch_($this->semStack[$this->stackPos-(8-3)], substr($this->semStack[$this->stackPos-(8-4)], 1), $this->semStack[$this->stackPos-(8-7)], $this->startAttributeStack[$this->stackPos-(8-1)] + $this->endAttributes); |
|
1543 | + $this->semValue = new Stmt\Catch_($this->semStack[$this->stackPos - (8 - 3)], substr($this->semStack[$this->stackPos - (8 - 4)], 1), $this->semStack[$this->stackPos - (8 - 7)], $this->startAttributeStack[$this->stackPos - (8 - 1)] + $this->endAttributes); |
|
1544 | 1544 | } |
1545 | 1545 | |
1546 | 1546 | protected function reduceRule148() { |
@@ -1548,15 +1548,15 @@ discard block |
||
1548 | 1548 | } |
1549 | 1549 | |
1550 | 1550 | protected function reduceRule149() { |
1551 | - $this->semValue = $this->semStack[$this->stackPos-(4-3)]; |
|
1551 | + $this->semValue = $this->semStack[$this->stackPos - (4 - 3)]; |
|
1552 | 1552 | } |
1553 | 1553 | |
1554 | 1554 | protected function reduceRule150() { |
1555 | - $this->semValue = array($this->semStack[$this->stackPos-(1-1)]); |
|
1555 | + $this->semValue = array($this->semStack[$this->stackPos - (1 - 1)]); |
|
1556 | 1556 | } |
1557 | 1557 | |
1558 | 1558 | protected function reduceRule151() { |
1559 | - $this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)]; |
|
1559 | + $this->semStack[$this->stackPos - (3 - 1)][] = $this->semStack[$this->stackPos - (3 - 3)]; $this->semValue = $this->semStack[$this->stackPos - (3 - 1)]; |
|
1560 | 1560 | } |
1561 | 1561 | |
1562 | 1562 | protected function reduceRule152() { |
@@ -1576,19 +1576,19 @@ discard block |
||
1576 | 1576 | } |
1577 | 1577 | |
1578 | 1578 | protected function reduceRule156() { |
1579 | - $this->semValue = new Stmt\Function_($this->semStack[$this->stackPos-(10-3)], ['byRef' => $this->semStack[$this->stackPos-(10-2)], 'params' => $this->semStack[$this->stackPos-(10-5)], 'returnType' => $this->semStack[$this->stackPos-(10-7)], 'stmts' => $this->semStack[$this->stackPos-(10-9)]], $this->startAttributeStack[$this->stackPos-(10-1)] + $this->endAttributes); |
|
1579 | + $this->semValue = new Stmt\Function_($this->semStack[$this->stackPos - (10 - 3)], ['byRef' => $this->semStack[$this->stackPos - (10 - 2)], 'params' => $this->semStack[$this->stackPos - (10 - 5)], 'returnType' => $this->semStack[$this->stackPos - (10 - 7)], 'stmts' => $this->semStack[$this->stackPos - (10 - 9)]], $this->startAttributeStack[$this->stackPos - (10 - 1)] + $this->endAttributes); |
|
1580 | 1580 | } |
1581 | 1581 | |
1582 | 1582 | protected function reduceRule157() { |
1583 | - $this->semValue = new Stmt\Class_($this->semStack[$this->stackPos-(7-2)], ['type' => $this->semStack[$this->stackPos-(7-1)], 'extends' => $this->semStack[$this->stackPos-(7-3)], 'implements' => $this->semStack[$this->stackPos-(7-4)], 'stmts' => $this->semStack[$this->stackPos-(7-6)]], $this->startAttributeStack[$this->stackPos-(7-1)] + $this->endAttributes); |
|
1583 | + $this->semValue = new Stmt\Class_($this->semStack[$this->stackPos - (7 - 2)], ['type' => $this->semStack[$this->stackPos - (7 - 1)], 'extends' => $this->semStack[$this->stackPos - (7 - 3)], 'implements' => $this->semStack[$this->stackPos - (7 - 4)], 'stmts' => $this->semStack[$this->stackPos - (7 - 6)]], $this->startAttributeStack[$this->stackPos - (7 - 1)] + $this->endAttributes); |
|
1584 | 1584 | } |
1585 | 1585 | |
1586 | 1586 | protected function reduceRule158() { |
1587 | - $this->semValue = new Stmt\Interface_($this->semStack[$this->stackPos-(6-2)], ['extends' => $this->semStack[$this->stackPos-(6-3)], 'stmts' => $this->semStack[$this->stackPos-(6-5)]], $this->startAttributeStack[$this->stackPos-(6-1)] + $this->endAttributes); |
|
1587 | + $this->semValue = new Stmt\Interface_($this->semStack[$this->stackPos - (6 - 2)], ['extends' => $this->semStack[$this->stackPos - (6 - 3)], 'stmts' => $this->semStack[$this->stackPos - (6 - 5)]], $this->startAttributeStack[$this->stackPos - (6 - 1)] + $this->endAttributes); |
|
1588 | 1588 | } |
1589 | 1589 | |
1590 | 1590 | protected function reduceRule159() { |
1591 | - $this->semValue = new Stmt\Trait_($this->semStack[$this->stackPos-(5-2)], $this->semStack[$this->stackPos-(5-4)], $this->startAttributeStack[$this->stackPos-(5-1)] + $this->endAttributes); |
|
1591 | + $this->semValue = new Stmt\Trait_($this->semStack[$this->stackPos - (5 - 2)], $this->semStack[$this->stackPos - (5 - 4)], $this->startAttributeStack[$this->stackPos - (5 - 1)] + $this->endAttributes); |
|
1592 | 1592 | } |
1593 | 1593 | |
1594 | 1594 | protected function reduceRule160() { |
@@ -1608,7 +1608,7 @@ discard block |
||
1608 | 1608 | } |
1609 | 1609 | |
1610 | 1610 | protected function reduceRule164() { |
1611 | - $this->semValue = $this->semStack[$this->stackPos-(2-2)]; |
|
1611 | + $this->semValue = $this->semStack[$this->stackPos - (2 - 2)]; |
|
1612 | 1612 | } |
1613 | 1613 | |
1614 | 1614 | protected function reduceRule165() { |
@@ -1616,7 +1616,7 @@ discard block |
||
1616 | 1616 | } |
1617 | 1617 | |
1618 | 1618 | protected function reduceRule166() { |
1619 | - $this->semValue = $this->semStack[$this->stackPos-(2-2)]; |
|
1619 | + $this->semValue = $this->semStack[$this->stackPos - (2 - 2)]; |
|
1620 | 1620 | } |
1621 | 1621 | |
1622 | 1622 | protected function reduceRule167() { |
@@ -1624,67 +1624,67 @@ discard block |
||
1624 | 1624 | } |
1625 | 1625 | |
1626 | 1626 | protected function reduceRule168() { |
1627 | - $this->semValue = $this->semStack[$this->stackPos-(2-2)]; |
|
1627 | + $this->semValue = $this->semStack[$this->stackPos - (2 - 2)]; |
|
1628 | 1628 | } |
1629 | 1629 | |
1630 | 1630 | protected function reduceRule169() { |
1631 | - $this->semValue = array($this->semStack[$this->stackPos-(1-1)]); |
|
1631 | + $this->semValue = array($this->semStack[$this->stackPos - (1 - 1)]); |
|
1632 | 1632 | } |
1633 | 1633 | |
1634 | 1634 | protected function reduceRule170() { |
1635 | - $this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)]; |
|
1635 | + $this->semStack[$this->stackPos - (3 - 1)][] = $this->semStack[$this->stackPos - (3 - 3)]; $this->semValue = $this->semStack[$this->stackPos - (3 - 1)]; |
|
1636 | 1636 | } |
1637 | 1637 | |
1638 | 1638 | protected function reduceRule171() { |
1639 | - $this->semValue = is_array($this->semStack[$this->stackPos-(1-1)]) ? $this->semStack[$this->stackPos-(1-1)] : array($this->semStack[$this->stackPos-(1-1)]); |
|
1639 | + $this->semValue = is_array($this->semStack[$this->stackPos - (1 - 1)]) ? $this->semStack[$this->stackPos - (1 - 1)] : array($this->semStack[$this->stackPos - (1 - 1)]); |
|
1640 | 1640 | } |
1641 | 1641 | |
1642 | 1642 | protected function reduceRule172() { |
1643 | - $this->semValue = $this->semStack[$this->stackPos-(4-2)]; |
|
1643 | + $this->semValue = $this->semStack[$this->stackPos - (4 - 2)]; |
|
1644 | 1644 | } |
1645 | 1645 | |
1646 | 1646 | protected function reduceRule173() { |
1647 | - $this->semValue = is_array($this->semStack[$this->stackPos-(1-1)]) ? $this->semStack[$this->stackPos-(1-1)] : array($this->semStack[$this->stackPos-(1-1)]); |
|
1647 | + $this->semValue = is_array($this->semStack[$this->stackPos - (1 - 1)]) ? $this->semStack[$this->stackPos - (1 - 1)] : array($this->semStack[$this->stackPos - (1 - 1)]); |
|
1648 | 1648 | } |
1649 | 1649 | |
1650 | 1650 | protected function reduceRule174() { |
1651 | - $this->semValue = $this->semStack[$this->stackPos-(4-2)]; |
|
1651 | + $this->semValue = $this->semStack[$this->stackPos - (4 - 2)]; |
|
1652 | 1652 | } |
1653 | 1653 | |
1654 | 1654 | protected function reduceRule175() { |
1655 | - $this->semValue = is_array($this->semStack[$this->stackPos-(1-1)]) ? $this->semStack[$this->stackPos-(1-1)] : array($this->semStack[$this->stackPos-(1-1)]); |
|
1655 | + $this->semValue = is_array($this->semStack[$this->stackPos - (1 - 1)]) ? $this->semStack[$this->stackPos - (1 - 1)] : array($this->semStack[$this->stackPos - (1 - 1)]); |
|
1656 | 1656 | } |
1657 | 1657 | |
1658 | 1658 | protected function reduceRule176() { |
1659 | - $this->semValue = $this->semStack[$this->stackPos-(4-2)]; |
|
1659 | + $this->semValue = $this->semStack[$this->stackPos - (4 - 2)]; |
|
1660 | 1660 | } |
1661 | 1661 | |
1662 | 1662 | protected function reduceRule177() { |
1663 | - $this->semValue = array($this->semStack[$this->stackPos-(1-1)]); |
|
1663 | + $this->semValue = array($this->semStack[$this->stackPos - (1 - 1)]); |
|
1664 | 1664 | } |
1665 | 1665 | |
1666 | 1666 | protected function reduceRule178() { |
1667 | - $this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)]; |
|
1667 | + $this->semStack[$this->stackPos - (3 - 1)][] = $this->semStack[$this->stackPos - (3 - 3)]; $this->semValue = $this->semStack[$this->stackPos - (3 - 1)]; |
|
1668 | 1668 | } |
1669 | 1669 | |
1670 | 1670 | protected function reduceRule179() { |
1671 | - $this->semValue = new Stmt\DeclareDeclare($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
1671 | + $this->semValue = new Stmt\DeclareDeclare($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
1672 | 1672 | } |
1673 | 1673 | |
1674 | 1674 | protected function reduceRule180() { |
1675 | - $this->semValue = $this->semStack[$this->stackPos-(3-2)]; |
|
1675 | + $this->semValue = $this->semStack[$this->stackPos - (3 - 2)]; |
|
1676 | 1676 | } |
1677 | 1677 | |
1678 | 1678 | protected function reduceRule181() { |
1679 | - $this->semValue = $this->semStack[$this->stackPos-(4-3)]; |
|
1679 | + $this->semValue = $this->semStack[$this->stackPos - (4 - 3)]; |
|
1680 | 1680 | } |
1681 | 1681 | |
1682 | 1682 | protected function reduceRule182() { |
1683 | - $this->semValue = $this->semStack[$this->stackPos-(4-2)]; |
|
1683 | + $this->semValue = $this->semStack[$this->stackPos - (4 - 2)]; |
|
1684 | 1684 | } |
1685 | 1685 | |
1686 | 1686 | protected function reduceRule183() { |
1687 | - $this->semValue = $this->semStack[$this->stackPos-(5-3)]; |
|
1687 | + $this->semValue = $this->semStack[$this->stackPos - (5 - 3)]; |
|
1688 | 1688 | } |
1689 | 1689 | |
1690 | 1690 | protected function reduceRule184() { |
@@ -1692,15 +1692,15 @@ discard block |
||
1692 | 1692 | } |
1693 | 1693 | |
1694 | 1694 | protected function reduceRule185() { |
1695 | - $this->semStack[$this->stackPos-(2-1)][] = $this->semStack[$this->stackPos-(2-2)]; $this->semValue = $this->semStack[$this->stackPos-(2-1)]; |
|
1695 | + $this->semStack[$this->stackPos - (2 - 1)][] = $this->semStack[$this->stackPos - (2 - 2)]; $this->semValue = $this->semStack[$this->stackPos - (2 - 1)]; |
|
1696 | 1696 | } |
1697 | 1697 | |
1698 | 1698 | protected function reduceRule186() { |
1699 | - $this->semValue = new Stmt\Case_($this->semStack[$this->stackPos-(4-2)], $this->semStack[$this->stackPos-(4-4)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes); |
|
1699 | + $this->semValue = new Stmt\Case_($this->semStack[$this->stackPos - (4 - 2)], $this->semStack[$this->stackPos - (4 - 4)], $this->startAttributeStack[$this->stackPos - (4 - 1)] + $this->endAttributes); |
|
1700 | 1700 | } |
1701 | 1701 | |
1702 | 1702 | protected function reduceRule187() { |
1703 | - $this->semValue = new Stmt\Case_(null, $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
1703 | + $this->semValue = new Stmt\Case_(null, $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
1704 | 1704 | } |
1705 | 1705 | |
1706 | 1706 | protected function reduceRule188() { |
@@ -1712,11 +1712,11 @@ discard block |
||
1712 | 1712 | } |
1713 | 1713 | |
1714 | 1714 | protected function reduceRule190() { |
1715 | - $this->semValue = is_array($this->semStack[$this->stackPos-(1-1)]) ? $this->semStack[$this->stackPos-(1-1)] : array($this->semStack[$this->stackPos-(1-1)]); |
|
1715 | + $this->semValue = is_array($this->semStack[$this->stackPos - (1 - 1)]) ? $this->semStack[$this->stackPos - (1 - 1)] : array($this->semStack[$this->stackPos - (1 - 1)]); |
|
1716 | 1716 | } |
1717 | 1717 | |
1718 | 1718 | protected function reduceRule191() { |
1719 | - $this->semValue = $this->semStack[$this->stackPos-(4-2)]; |
|
1719 | + $this->semValue = $this->semStack[$this->stackPos - (4 - 2)]; |
|
1720 | 1720 | } |
1721 | 1721 | |
1722 | 1722 | protected function reduceRule192() { |
@@ -1724,11 +1724,11 @@ discard block |
||
1724 | 1724 | } |
1725 | 1725 | |
1726 | 1726 | protected function reduceRule193() { |
1727 | - $this->semStack[$this->stackPos-(2-1)][] = $this->semStack[$this->stackPos-(2-2)]; $this->semValue = $this->semStack[$this->stackPos-(2-1)]; |
|
1727 | + $this->semStack[$this->stackPos - (2 - 1)][] = $this->semStack[$this->stackPos - (2 - 2)]; $this->semValue = $this->semStack[$this->stackPos - (2 - 1)]; |
|
1728 | 1728 | } |
1729 | 1729 | |
1730 | 1730 | protected function reduceRule194() { |
1731 | - $this->semValue = new Stmt\ElseIf_($this->semStack[$this->stackPos-(3-2)], is_array($this->semStack[$this->stackPos-(3-3)]) ? $this->semStack[$this->stackPos-(3-3)] : array($this->semStack[$this->stackPos-(3-3)]), $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
1731 | + $this->semValue = new Stmt\ElseIf_($this->semStack[$this->stackPos - (3 - 2)], is_array($this->semStack[$this->stackPos - (3 - 3)]) ? $this->semStack[$this->stackPos - (3 - 3)] : array($this->semStack[$this->stackPos - (3 - 3)]), $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
1732 | 1732 | } |
1733 | 1733 | |
1734 | 1734 | protected function reduceRule195() { |
@@ -1736,11 +1736,11 @@ discard block |
||
1736 | 1736 | } |
1737 | 1737 | |
1738 | 1738 | protected function reduceRule196() { |
1739 | - $this->semStack[$this->stackPos-(2-1)][] = $this->semStack[$this->stackPos-(2-2)]; $this->semValue = $this->semStack[$this->stackPos-(2-1)]; |
|
1739 | + $this->semStack[$this->stackPos - (2 - 1)][] = $this->semStack[$this->stackPos - (2 - 2)]; $this->semValue = $this->semStack[$this->stackPos - (2 - 1)]; |
|
1740 | 1740 | } |
1741 | 1741 | |
1742 | 1742 | protected function reduceRule197() { |
1743 | - $this->semValue = new Stmt\ElseIf_($this->semStack[$this->stackPos-(4-2)], $this->semStack[$this->stackPos-(4-4)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes); |
|
1743 | + $this->semValue = new Stmt\ElseIf_($this->semStack[$this->stackPos - (4 - 2)], $this->semStack[$this->stackPos - (4 - 4)], $this->startAttributeStack[$this->stackPos - (4 - 1)] + $this->endAttributes); |
|
1744 | 1744 | } |
1745 | 1745 | |
1746 | 1746 | protected function reduceRule198() { |
@@ -1748,7 +1748,7 @@ discard block |
||
1748 | 1748 | } |
1749 | 1749 | |
1750 | 1750 | protected function reduceRule199() { |
1751 | - $this->semValue = new Stmt\Else_(is_array($this->semStack[$this->stackPos-(2-2)]) ? $this->semStack[$this->stackPos-(2-2)] : array($this->semStack[$this->stackPos-(2-2)]), $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes); |
|
1751 | + $this->semValue = new Stmt\Else_(is_array($this->semStack[$this->stackPos - (2 - 2)]) ? $this->semStack[$this->stackPos - (2 - 2)] : array($this->semStack[$this->stackPos - (2 - 2)]), $this->startAttributeStack[$this->stackPos - (2 - 1)] + $this->endAttributes); |
|
1752 | 1752 | } |
1753 | 1753 | |
1754 | 1754 | protected function reduceRule200() { |
@@ -1756,23 +1756,23 @@ discard block |
||
1756 | 1756 | } |
1757 | 1757 | |
1758 | 1758 | protected function reduceRule201() { |
1759 | - $this->semValue = new Stmt\Else_($this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
1759 | + $this->semValue = new Stmt\Else_($this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
1760 | 1760 | } |
1761 | 1761 | |
1762 | 1762 | protected function reduceRule202() { |
1763 | - $this->semValue = array($this->semStack[$this->stackPos-(1-1)], false); |
|
1763 | + $this->semValue = array($this->semStack[$this->stackPos - (1 - 1)], false); |
|
1764 | 1764 | } |
1765 | 1765 | |
1766 | 1766 | protected function reduceRule203() { |
1767 | - $this->semValue = array($this->semStack[$this->stackPos-(2-2)], true); |
|
1767 | + $this->semValue = array($this->semStack[$this->stackPos - (2 - 2)], true); |
|
1768 | 1768 | } |
1769 | 1769 | |
1770 | 1770 | protected function reduceRule204() { |
1771 | - $this->semValue = array($this->semStack[$this->stackPos-(1-1)], false); |
|
1771 | + $this->semValue = array($this->semStack[$this->stackPos - (1 - 1)], false); |
|
1772 | 1772 | } |
1773 | 1773 | |
1774 | 1774 | protected function reduceRule205() { |
1775 | - $this->semValue = $this->semStack[$this->stackPos-(1-1)]; |
|
1775 | + $this->semValue = $this->semStack[$this->stackPos - (1 - 1)]; |
|
1776 | 1776 | } |
1777 | 1777 | |
1778 | 1778 | protected function reduceRule206() { |
@@ -1780,23 +1780,23 @@ discard block |
||
1780 | 1780 | } |
1781 | 1781 | |
1782 | 1782 | protected function reduceRule207() { |
1783 | - $this->semValue = array($this->semStack[$this->stackPos-(1-1)]); |
|
1783 | + $this->semValue = array($this->semStack[$this->stackPos - (1 - 1)]); |
|
1784 | 1784 | } |
1785 | 1785 | |
1786 | 1786 | protected function reduceRule208() { |
1787 | - $this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)]; |
|
1787 | + $this->semStack[$this->stackPos - (3 - 1)][] = $this->semStack[$this->stackPos - (3 - 3)]; $this->semValue = $this->semStack[$this->stackPos - (3 - 1)]; |
|
1788 | 1788 | } |
1789 | 1789 | |
1790 | 1790 | protected function reduceRule209() { |
1791 | - $this->semValue = new Node\Param(substr($this->semStack[$this->stackPos-(4-4)], 1), null, $this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-2)], $this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes); |
|
1791 | + $this->semValue = new Node\Param(substr($this->semStack[$this->stackPos - (4 - 4)], 1), null, $this->semStack[$this->stackPos - (4 - 1)], $this->semStack[$this->stackPos - (4 - 2)], $this->semStack[$this->stackPos - (4 - 3)], $this->startAttributeStack[$this->stackPos - (4 - 1)] + $this->endAttributes); |
|
1792 | 1792 | } |
1793 | 1793 | |
1794 | 1794 | protected function reduceRule210() { |
1795 | - $this->semValue = new Node\Param(substr($this->semStack[$this->stackPos-(6-4)], 1), $this->semStack[$this->stackPos-(6-6)], $this->semStack[$this->stackPos-(6-1)], $this->semStack[$this->stackPos-(6-2)], $this->semStack[$this->stackPos-(6-3)], $this->startAttributeStack[$this->stackPos-(6-1)] + $this->endAttributes); |
|
1795 | + $this->semValue = new Node\Param(substr($this->semStack[$this->stackPos - (6 - 4)], 1), $this->semStack[$this->stackPos - (6 - 6)], $this->semStack[$this->stackPos - (6 - 1)], $this->semStack[$this->stackPos - (6 - 2)], $this->semStack[$this->stackPos - (6 - 3)], $this->startAttributeStack[$this->stackPos - (6 - 1)] + $this->endAttributes); |
|
1796 | 1796 | } |
1797 | 1797 | |
1798 | 1798 | protected function reduceRule211() { |
1799 | - $this->semValue = $this->semStack[$this->stackPos-(1-1)]; |
|
1799 | + $this->semValue = $this->semStack[$this->stackPos - (1 - 1)]; |
|
1800 | 1800 | } |
1801 | 1801 | |
1802 | 1802 | protected function reduceRule212() { |
@@ -1812,7 +1812,7 @@ discard block |
||
1812 | 1812 | } |
1813 | 1813 | |
1814 | 1814 | protected function reduceRule215() { |
1815 | - $this->semValue = $this->semStack[$this->stackPos-(1-1)]; |
|
1815 | + $this->semValue = $this->semStack[$this->stackPos - (1 - 1)]; |
|
1816 | 1816 | } |
1817 | 1817 | |
1818 | 1818 | protected function reduceRule216() { |
@@ -1820,7 +1820,7 @@ discard block |
||
1820 | 1820 | } |
1821 | 1821 | |
1822 | 1822 | protected function reduceRule217() { |
1823 | - $this->semValue = $this->semStack[$this->stackPos-(2-2)]; |
|
1823 | + $this->semValue = $this->semStack[$this->stackPos - (2 - 2)]; |
|
1824 | 1824 | } |
1825 | 1825 | |
1826 | 1826 | protected function reduceRule218() { |
@@ -1828,71 +1828,71 @@ discard block |
||
1828 | 1828 | } |
1829 | 1829 | |
1830 | 1830 | protected function reduceRule219() { |
1831 | - $this->semValue = $this->semStack[$this->stackPos-(3-2)]; |
|
1831 | + $this->semValue = $this->semStack[$this->stackPos - (3 - 2)]; |
|
1832 | 1832 | } |
1833 | 1833 | |
1834 | 1834 | protected function reduceRule220() { |
1835 | - $this->semValue = array(new Node\Arg($this->semStack[$this->stackPos-(3-2)], false, false, $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes)); |
|
1835 | + $this->semValue = array(new Node\Arg($this->semStack[$this->stackPos - (3 - 2)], false, false, $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes)); |
|
1836 | 1836 | } |
1837 | 1837 | |
1838 | 1838 | protected function reduceRule221() { |
1839 | - $this->semValue = array($this->semStack[$this->stackPos-(1-1)]); |
|
1839 | + $this->semValue = array($this->semStack[$this->stackPos - (1 - 1)]); |
|
1840 | 1840 | } |
1841 | 1841 | |
1842 | 1842 | protected function reduceRule222() { |
1843 | - $this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)]; |
|
1843 | + $this->semStack[$this->stackPos - (3 - 1)][] = $this->semStack[$this->stackPos - (3 - 3)]; $this->semValue = $this->semStack[$this->stackPos - (3 - 1)]; |
|
1844 | 1844 | } |
1845 | 1845 | |
1846 | 1846 | protected function reduceRule223() { |
1847 | - $this->semValue = new Node\Arg($this->semStack[$this->stackPos-(1-1)], false, false, $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes); |
|
1847 | + $this->semValue = new Node\Arg($this->semStack[$this->stackPos - (1 - 1)], false, false, $this->startAttributeStack[$this->stackPos - (1 - 1)] + $this->endAttributes); |
|
1848 | 1848 | } |
1849 | 1849 | |
1850 | 1850 | protected function reduceRule224() { |
1851 | - $this->semValue = new Node\Arg($this->semStack[$this->stackPos-(2-2)], true, false, $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes); |
|
1851 | + $this->semValue = new Node\Arg($this->semStack[$this->stackPos - (2 - 2)], true, false, $this->startAttributeStack[$this->stackPos - (2 - 1)] + $this->endAttributes); |
|
1852 | 1852 | } |
1853 | 1853 | |
1854 | 1854 | protected function reduceRule225() { |
1855 | - $this->semValue = new Node\Arg($this->semStack[$this->stackPos-(2-2)], false, true, $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes); |
|
1855 | + $this->semValue = new Node\Arg($this->semStack[$this->stackPos - (2 - 2)], false, true, $this->startAttributeStack[$this->stackPos - (2 - 1)] + $this->endAttributes); |
|
1856 | 1856 | } |
1857 | 1857 | |
1858 | 1858 | protected function reduceRule226() { |
1859 | - $this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)]; |
|
1859 | + $this->semStack[$this->stackPos - (3 - 1)][] = $this->semStack[$this->stackPos - (3 - 3)]; $this->semValue = $this->semStack[$this->stackPos - (3 - 1)]; |
|
1860 | 1860 | } |
1861 | 1861 | |
1862 | 1862 | protected function reduceRule227() { |
1863 | - $this->semValue = array($this->semStack[$this->stackPos-(1-1)]); |
|
1863 | + $this->semValue = array($this->semStack[$this->stackPos - (1 - 1)]); |
|
1864 | 1864 | } |
1865 | 1865 | |
1866 | 1866 | protected function reduceRule228() { |
1867 | - $this->semValue = new Expr\Variable(substr($this->semStack[$this->stackPos-(1-1)], 1), $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes); |
|
1867 | + $this->semValue = new Expr\Variable(substr($this->semStack[$this->stackPos - (1 - 1)], 1), $this->startAttributeStack[$this->stackPos - (1 - 1)] + $this->endAttributes); |
|
1868 | 1868 | } |
1869 | 1869 | |
1870 | 1870 | protected function reduceRule229() { |
1871 | - $this->semValue = new Expr\Variable($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes); |
|
1871 | + $this->semValue = new Expr\Variable($this->semStack[$this->stackPos - (2 - 2)], $this->startAttributeStack[$this->stackPos - (2 - 1)] + $this->endAttributes); |
|
1872 | 1872 | } |
1873 | 1873 | |
1874 | 1874 | protected function reduceRule230() { |
1875 | - $this->semValue = new Expr\Variable($this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes); |
|
1875 | + $this->semValue = new Expr\Variable($this->semStack[$this->stackPos - (4 - 3)], $this->startAttributeStack[$this->stackPos - (4 - 1)] + $this->endAttributes); |
|
1876 | 1876 | } |
1877 | 1877 | |
1878 | 1878 | protected function reduceRule231() { |
1879 | - $this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)]; |
|
1879 | + $this->semStack[$this->stackPos - (3 - 1)][] = $this->semStack[$this->stackPos - (3 - 3)]; $this->semValue = $this->semStack[$this->stackPos - (3 - 1)]; |
|
1880 | 1880 | } |
1881 | 1881 | |
1882 | 1882 | protected function reduceRule232() { |
1883 | - $this->semValue = array($this->semStack[$this->stackPos-(1-1)]); |
|
1883 | + $this->semValue = array($this->semStack[$this->stackPos - (1 - 1)]); |
|
1884 | 1884 | } |
1885 | 1885 | |
1886 | 1886 | protected function reduceRule233() { |
1887 | - $this->semValue = new Stmt\StaticVar(substr($this->semStack[$this->stackPos-(1-1)], 1), null, $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes); |
|
1887 | + $this->semValue = new Stmt\StaticVar(substr($this->semStack[$this->stackPos - (1 - 1)], 1), null, $this->startAttributeStack[$this->stackPos - (1 - 1)] + $this->endAttributes); |
|
1888 | 1888 | } |
1889 | 1889 | |
1890 | 1890 | protected function reduceRule234() { |
1891 | - $this->semValue = new Stmt\StaticVar(substr($this->semStack[$this->stackPos-(3-1)], 1), $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
1891 | + $this->semValue = new Stmt\StaticVar(substr($this->semStack[$this->stackPos - (3 - 1)], 1), $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
1892 | 1892 | } |
1893 | 1893 | |
1894 | 1894 | protected function reduceRule235() { |
1895 | - $this->semStack[$this->stackPos-(2-1)][] = $this->semStack[$this->stackPos-(2-2)]; $this->semValue = $this->semStack[$this->stackPos-(2-1)]; |
|
1895 | + $this->semStack[$this->stackPos - (2 - 1)][] = $this->semStack[$this->stackPos - (2 - 2)]; $this->semValue = $this->semStack[$this->stackPos - (2 - 1)]; |
|
1896 | 1896 | } |
1897 | 1897 | |
1898 | 1898 | protected function reduceRule236() { |
@@ -1900,19 +1900,19 @@ discard block |
||
1900 | 1900 | } |
1901 | 1901 | |
1902 | 1902 | protected function reduceRule237() { |
1903 | - $this->semValue = new Stmt\Property($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-2)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
1903 | + $this->semValue = new Stmt\Property($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 2)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
1904 | 1904 | } |
1905 | 1905 | |
1906 | 1906 | protected function reduceRule238() { |
1907 | - $this->semValue = new Stmt\ClassConst($this->semStack[$this->stackPos-(3-2)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
1907 | + $this->semValue = new Stmt\ClassConst($this->semStack[$this->stackPos - (3 - 2)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
1908 | 1908 | } |
1909 | 1909 | |
1910 | 1910 | protected function reduceRule239() { |
1911 | - $this->semValue = new Stmt\ClassMethod($this->semStack[$this->stackPos-(9-4)], ['type' => $this->semStack[$this->stackPos-(9-1)], 'byRef' => $this->semStack[$this->stackPos-(9-3)], 'params' => $this->semStack[$this->stackPos-(9-6)], 'returnType' => $this->semStack[$this->stackPos-(9-8)], 'stmts' => $this->semStack[$this->stackPos-(9-9)]], $this->startAttributeStack[$this->stackPos-(9-1)] + $this->endAttributes); |
|
1911 | + $this->semValue = new Stmt\ClassMethod($this->semStack[$this->stackPos - (9 - 4)], ['type' => $this->semStack[$this->stackPos - (9 - 1)], 'byRef' => $this->semStack[$this->stackPos - (9 - 3)], 'params' => $this->semStack[$this->stackPos - (9 - 6)], 'returnType' => $this->semStack[$this->stackPos - (9 - 8)], 'stmts' => $this->semStack[$this->stackPos - (9 - 9)]], $this->startAttributeStack[$this->stackPos - (9 - 1)] + $this->endAttributes); |
|
1912 | 1912 | } |
1913 | 1913 | |
1914 | 1914 | protected function reduceRule240() { |
1915 | - $this->semValue = new Stmt\TraitUse($this->semStack[$this->stackPos-(3-2)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
1915 | + $this->semValue = new Stmt\TraitUse($this->semStack[$this->stackPos - (3 - 2)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
1916 | 1916 | } |
1917 | 1917 | |
1918 | 1918 | protected function reduceRule241() { |
@@ -1920,7 +1920,7 @@ discard block |
||
1920 | 1920 | } |
1921 | 1921 | |
1922 | 1922 | protected function reduceRule242() { |
1923 | - $this->semValue = $this->semStack[$this->stackPos-(3-2)]; |
|
1923 | + $this->semValue = $this->semStack[$this->stackPos - (3 - 2)]; |
|
1924 | 1924 | } |
1925 | 1925 | |
1926 | 1926 | protected function reduceRule243() { |
@@ -1928,39 +1928,39 @@ discard block |
||
1928 | 1928 | } |
1929 | 1929 | |
1930 | 1930 | protected function reduceRule244() { |
1931 | - $this->semStack[$this->stackPos-(2-1)][] = $this->semStack[$this->stackPos-(2-2)]; $this->semValue = $this->semStack[$this->stackPos-(2-1)]; |
|
1931 | + $this->semStack[$this->stackPos - (2 - 1)][] = $this->semStack[$this->stackPos - (2 - 2)]; $this->semValue = $this->semStack[$this->stackPos - (2 - 1)]; |
|
1932 | 1932 | } |
1933 | 1933 | |
1934 | 1934 | protected function reduceRule245() { |
1935 | - $this->semValue = new Stmt\TraitUseAdaptation\Precedence($this->semStack[$this->stackPos-(4-1)][0], $this->semStack[$this->stackPos-(4-1)][1], $this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes); |
|
1935 | + $this->semValue = new Stmt\TraitUseAdaptation\Precedence($this->semStack[$this->stackPos - (4 - 1)][0], $this->semStack[$this->stackPos - (4 - 1)][1], $this->semStack[$this->stackPos - (4 - 3)], $this->startAttributeStack[$this->stackPos - (4 - 1)] + $this->endAttributes); |
|
1936 | 1936 | } |
1937 | 1937 | |
1938 | 1938 | protected function reduceRule246() { |
1939 | - $this->semValue = new Stmt\TraitUseAdaptation\Alias($this->semStack[$this->stackPos-(5-1)][0], $this->semStack[$this->stackPos-(5-1)][1], $this->semStack[$this->stackPos-(5-3)], $this->semStack[$this->stackPos-(5-4)], $this->startAttributeStack[$this->stackPos-(5-1)] + $this->endAttributes); |
|
1939 | + $this->semValue = new Stmt\TraitUseAdaptation\Alias($this->semStack[$this->stackPos - (5 - 1)][0], $this->semStack[$this->stackPos - (5 - 1)][1], $this->semStack[$this->stackPos - (5 - 3)], $this->semStack[$this->stackPos - (5 - 4)], $this->startAttributeStack[$this->stackPos - (5 - 1)] + $this->endAttributes); |
|
1940 | 1940 | } |
1941 | 1941 | |
1942 | 1942 | protected function reduceRule247() { |
1943 | - $this->semValue = new Stmt\TraitUseAdaptation\Alias($this->semStack[$this->stackPos-(4-1)][0], $this->semStack[$this->stackPos-(4-1)][1], $this->semStack[$this->stackPos-(4-3)], null, $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes); |
|
1943 | + $this->semValue = new Stmt\TraitUseAdaptation\Alias($this->semStack[$this->stackPos - (4 - 1)][0], $this->semStack[$this->stackPos - (4 - 1)][1], $this->semStack[$this->stackPos - (4 - 3)], null, $this->startAttributeStack[$this->stackPos - (4 - 1)] + $this->endAttributes); |
|
1944 | 1944 | } |
1945 | 1945 | |
1946 | 1946 | protected function reduceRule248() { |
1947 | - $this->semValue = new Stmt\TraitUseAdaptation\Alias($this->semStack[$this->stackPos-(4-1)][0], $this->semStack[$this->stackPos-(4-1)][1], null, $this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes); |
|
1947 | + $this->semValue = new Stmt\TraitUseAdaptation\Alias($this->semStack[$this->stackPos - (4 - 1)][0], $this->semStack[$this->stackPos - (4 - 1)][1], null, $this->semStack[$this->stackPos - (4 - 3)], $this->startAttributeStack[$this->stackPos - (4 - 1)] + $this->endAttributes); |
|
1948 | 1948 | } |
1949 | 1949 | |
1950 | 1950 | protected function reduceRule249() { |
1951 | - $this->semValue = new Stmt\TraitUseAdaptation\Alias($this->semStack[$this->stackPos-(4-1)][0], $this->semStack[$this->stackPos-(4-1)][1], null, $this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes); |
|
1951 | + $this->semValue = new Stmt\TraitUseAdaptation\Alias($this->semStack[$this->stackPos - (4 - 1)][0], $this->semStack[$this->stackPos - (4 - 1)][1], null, $this->semStack[$this->stackPos - (4 - 3)], $this->startAttributeStack[$this->stackPos - (4 - 1)] + $this->endAttributes); |
|
1952 | 1952 | } |
1953 | 1953 | |
1954 | 1954 | protected function reduceRule250() { |
1955 | - $this->semValue = array($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)]); |
|
1955 | + $this->semValue = array($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)]); |
|
1956 | 1956 | } |
1957 | 1957 | |
1958 | 1958 | protected function reduceRule251() { |
1959 | - $this->semValue = $this->semStack[$this->stackPos-(1-1)]; |
|
1959 | + $this->semValue = $this->semStack[$this->stackPos - (1 - 1)]; |
|
1960 | 1960 | } |
1961 | 1961 | |
1962 | 1962 | protected function reduceRule252() { |
1963 | - $this->semValue = array(null, $this->semStack[$this->stackPos-(1-1)]); |
|
1963 | + $this->semValue = array(null, $this->semStack[$this->stackPos - (1 - 1)]); |
|
1964 | 1964 | } |
1965 | 1965 | |
1966 | 1966 | protected function reduceRule253() { |
@@ -1968,11 +1968,11 @@ discard block |
||
1968 | 1968 | } |
1969 | 1969 | |
1970 | 1970 | protected function reduceRule254() { |
1971 | - $this->semValue = $this->semStack[$this->stackPos-(3-2)]; |
|
1971 | + $this->semValue = $this->semStack[$this->stackPos - (3 - 2)]; |
|
1972 | 1972 | } |
1973 | 1973 | |
1974 | 1974 | protected function reduceRule255() { |
1975 | - $this->semValue = $this->semStack[$this->stackPos-(1-1)]; |
|
1975 | + $this->semValue = $this->semStack[$this->stackPos - (1 - 1)]; |
|
1976 | 1976 | } |
1977 | 1977 | |
1978 | 1978 | protected function reduceRule256() { |
@@ -1984,15 +1984,15 @@ discard block |
||
1984 | 1984 | } |
1985 | 1985 | |
1986 | 1986 | protected function reduceRule258() { |
1987 | - $this->semValue = $this->semStack[$this->stackPos-(1-1)]; |
|
1987 | + $this->semValue = $this->semStack[$this->stackPos - (1 - 1)]; |
|
1988 | 1988 | } |
1989 | 1989 | |
1990 | 1990 | protected function reduceRule259() { |
1991 | - $this->semValue = $this->semStack[$this->stackPos-(1-1)]; |
|
1991 | + $this->semValue = $this->semStack[$this->stackPos - (1 - 1)]; |
|
1992 | 1992 | } |
1993 | 1993 | |
1994 | 1994 | protected function reduceRule260() { |
1995 | - Stmt\Class_::verifyModifier($this->semStack[$this->stackPos-(2-1)], $this->semStack[$this->stackPos-(2-2)]); $this->semValue = $this->semStack[$this->stackPos-(2-1)] | $this->semStack[$this->stackPos-(2-2)]; |
|
1995 | + Stmt\Class_::verifyModifier($this->semStack[$this->stackPos - (2 - 1)], $this->semStack[$this->stackPos - (2 - 2)]); $this->semValue = $this->semStack[$this->stackPos - (2 - 1)] | $this->semStack[$this->stackPos - (2 - 2)]; |
|
1996 | 1996 | } |
1997 | 1997 | |
1998 | 1998 | protected function reduceRule261() { |
@@ -2020,27 +2020,27 @@ discard block |
||
2020 | 2020 | } |
2021 | 2021 | |
2022 | 2022 | protected function reduceRule267() { |
2023 | - $this->semValue = array($this->semStack[$this->stackPos-(1-1)]); |
|
2023 | + $this->semValue = array($this->semStack[$this->stackPos - (1 - 1)]); |
|
2024 | 2024 | } |
2025 | 2025 | |
2026 | 2026 | protected function reduceRule268() { |
2027 | - $this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)]; |
|
2027 | + $this->semStack[$this->stackPos - (3 - 1)][] = $this->semStack[$this->stackPos - (3 - 3)]; $this->semValue = $this->semStack[$this->stackPos - (3 - 1)]; |
|
2028 | 2028 | } |
2029 | 2029 | |
2030 | 2030 | protected function reduceRule269() { |
2031 | - $this->semValue = new Stmt\PropertyProperty(substr($this->semStack[$this->stackPos-(1-1)], 1), null, $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes); |
|
2031 | + $this->semValue = new Stmt\PropertyProperty(substr($this->semStack[$this->stackPos - (1 - 1)], 1), null, $this->startAttributeStack[$this->stackPos - (1 - 1)] + $this->endAttributes); |
|
2032 | 2032 | } |
2033 | 2033 | |
2034 | 2034 | protected function reduceRule270() { |
2035 | - $this->semValue = new Stmt\PropertyProperty(substr($this->semStack[$this->stackPos-(3-1)], 1), $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2035 | + $this->semValue = new Stmt\PropertyProperty(substr($this->semStack[$this->stackPos - (3 - 1)], 1), $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2036 | 2036 | } |
2037 | 2037 | |
2038 | 2038 | protected function reduceRule271() { |
2039 | - $this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)]; |
|
2039 | + $this->semStack[$this->stackPos - (3 - 1)][] = $this->semStack[$this->stackPos - (3 - 3)]; $this->semValue = $this->semStack[$this->stackPos - (3 - 1)]; |
|
2040 | 2040 | } |
2041 | 2041 | |
2042 | 2042 | protected function reduceRule272() { |
2043 | - $this->semValue = array($this->semStack[$this->stackPos-(1-1)]); |
|
2043 | + $this->semValue = array($this->semStack[$this->stackPos - (1 - 1)]); |
|
2044 | 2044 | } |
2045 | 2045 | |
2046 | 2046 | protected function reduceRule273() { |
@@ -2048,395 +2048,395 @@ discard block |
||
2048 | 2048 | } |
2049 | 2049 | |
2050 | 2050 | protected function reduceRule274() { |
2051 | - $this->semValue = $this->semStack[$this->stackPos-(1-1)]; |
|
2051 | + $this->semValue = $this->semStack[$this->stackPos - (1 - 1)]; |
|
2052 | 2052 | } |
2053 | 2053 | |
2054 | 2054 | protected function reduceRule275() { |
2055 | - $this->semValue = $this->semStack[$this->stackPos-(1-1)]; |
|
2055 | + $this->semValue = $this->semStack[$this->stackPos - (1 - 1)]; |
|
2056 | 2056 | } |
2057 | 2057 | |
2058 | 2058 | protected function reduceRule276() { |
2059 | - $this->semValue = new Expr\Assign($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2059 | + $this->semValue = new Expr\Assign($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2060 | 2060 | } |
2061 | 2061 | |
2062 | 2062 | protected function reduceRule277() { |
2063 | - $this->semValue = new Expr\Assign($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2063 | + $this->semValue = new Expr\Assign($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2064 | 2064 | } |
2065 | 2065 | |
2066 | 2066 | protected function reduceRule278() { |
2067 | - $this->semValue = new Expr\AssignRef($this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-4)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes); |
|
2067 | + $this->semValue = new Expr\AssignRef($this->semStack[$this->stackPos - (4 - 1)], $this->semStack[$this->stackPos - (4 - 4)], $this->startAttributeStack[$this->stackPos - (4 - 1)] + $this->endAttributes); |
|
2068 | 2068 | } |
2069 | 2069 | |
2070 | 2070 | protected function reduceRule279() { |
2071 | - $this->semValue = new Expr\AssignRef($this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-4)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes); |
|
2071 | + $this->semValue = new Expr\AssignRef($this->semStack[$this->stackPos - (4 - 1)], $this->semStack[$this->stackPos - (4 - 4)], $this->startAttributeStack[$this->stackPos - (4 - 1)] + $this->endAttributes); |
|
2072 | 2072 | } |
2073 | 2073 | |
2074 | 2074 | protected function reduceRule280() { |
2075 | - $this->semValue = $this->semStack[$this->stackPos-(1-1)]; |
|
2075 | + $this->semValue = $this->semStack[$this->stackPos - (1 - 1)]; |
|
2076 | 2076 | } |
2077 | 2077 | |
2078 | 2078 | protected function reduceRule281() { |
2079 | - $this->semValue = new Expr\Clone_($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes); |
|
2079 | + $this->semValue = new Expr\Clone_($this->semStack[$this->stackPos - (2 - 2)], $this->startAttributeStack[$this->stackPos - (2 - 1)] + $this->endAttributes); |
|
2080 | 2080 | } |
2081 | 2081 | |
2082 | 2082 | protected function reduceRule282() { |
2083 | - $this->semValue = new Expr\AssignOp\Plus($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2083 | + $this->semValue = new Expr\AssignOp\Plus($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2084 | 2084 | } |
2085 | 2085 | |
2086 | 2086 | protected function reduceRule283() { |
2087 | - $this->semValue = new Expr\AssignOp\Minus($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2087 | + $this->semValue = new Expr\AssignOp\Minus($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2088 | 2088 | } |
2089 | 2089 | |
2090 | 2090 | protected function reduceRule284() { |
2091 | - $this->semValue = new Expr\AssignOp\Mul($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2091 | + $this->semValue = new Expr\AssignOp\Mul($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2092 | 2092 | } |
2093 | 2093 | |
2094 | 2094 | protected function reduceRule285() { |
2095 | - $this->semValue = new Expr\AssignOp\Div($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2095 | + $this->semValue = new Expr\AssignOp\Div($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2096 | 2096 | } |
2097 | 2097 | |
2098 | 2098 | protected function reduceRule286() { |
2099 | - $this->semValue = new Expr\AssignOp\Concat($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2099 | + $this->semValue = new Expr\AssignOp\Concat($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2100 | 2100 | } |
2101 | 2101 | |
2102 | 2102 | protected function reduceRule287() { |
2103 | - $this->semValue = new Expr\AssignOp\Mod($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2103 | + $this->semValue = new Expr\AssignOp\Mod($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2104 | 2104 | } |
2105 | 2105 | |
2106 | 2106 | protected function reduceRule288() { |
2107 | - $this->semValue = new Expr\AssignOp\BitwiseAnd($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2107 | + $this->semValue = new Expr\AssignOp\BitwiseAnd($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2108 | 2108 | } |
2109 | 2109 | |
2110 | 2110 | protected function reduceRule289() { |
2111 | - $this->semValue = new Expr\AssignOp\BitwiseOr($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2111 | + $this->semValue = new Expr\AssignOp\BitwiseOr($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2112 | 2112 | } |
2113 | 2113 | |
2114 | 2114 | protected function reduceRule290() { |
2115 | - $this->semValue = new Expr\AssignOp\BitwiseXor($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2115 | + $this->semValue = new Expr\AssignOp\BitwiseXor($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2116 | 2116 | } |
2117 | 2117 | |
2118 | 2118 | protected function reduceRule291() { |
2119 | - $this->semValue = new Expr\AssignOp\ShiftLeft($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2119 | + $this->semValue = new Expr\AssignOp\ShiftLeft($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2120 | 2120 | } |
2121 | 2121 | |
2122 | 2122 | protected function reduceRule292() { |
2123 | - $this->semValue = new Expr\AssignOp\ShiftRight($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2123 | + $this->semValue = new Expr\AssignOp\ShiftRight($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2124 | 2124 | } |
2125 | 2125 | |
2126 | 2126 | protected function reduceRule293() { |
2127 | - $this->semValue = new Expr\AssignOp\Pow($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2127 | + $this->semValue = new Expr\AssignOp\Pow($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2128 | 2128 | } |
2129 | 2129 | |
2130 | 2130 | protected function reduceRule294() { |
2131 | - $this->semValue = new Expr\PostInc($this->semStack[$this->stackPos-(2-1)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes); |
|
2131 | + $this->semValue = new Expr\PostInc($this->semStack[$this->stackPos - (2 - 1)], $this->startAttributeStack[$this->stackPos - (2 - 1)] + $this->endAttributes); |
|
2132 | 2132 | } |
2133 | 2133 | |
2134 | 2134 | protected function reduceRule295() { |
2135 | - $this->semValue = new Expr\PreInc($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes); |
|
2135 | + $this->semValue = new Expr\PreInc($this->semStack[$this->stackPos - (2 - 2)], $this->startAttributeStack[$this->stackPos - (2 - 1)] + $this->endAttributes); |
|
2136 | 2136 | } |
2137 | 2137 | |
2138 | 2138 | protected function reduceRule296() { |
2139 | - $this->semValue = new Expr\PostDec($this->semStack[$this->stackPos-(2-1)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes); |
|
2139 | + $this->semValue = new Expr\PostDec($this->semStack[$this->stackPos - (2 - 1)], $this->startAttributeStack[$this->stackPos - (2 - 1)] + $this->endAttributes); |
|
2140 | 2140 | } |
2141 | 2141 | |
2142 | 2142 | protected function reduceRule297() { |
2143 | - $this->semValue = new Expr\PreDec($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes); |
|
2143 | + $this->semValue = new Expr\PreDec($this->semStack[$this->stackPos - (2 - 2)], $this->startAttributeStack[$this->stackPos - (2 - 1)] + $this->endAttributes); |
|
2144 | 2144 | } |
2145 | 2145 | |
2146 | 2146 | protected function reduceRule298() { |
2147 | - $this->semValue = new Expr\BinaryOp\BooleanOr($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2147 | + $this->semValue = new Expr\BinaryOp\BooleanOr($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2148 | 2148 | } |
2149 | 2149 | |
2150 | 2150 | protected function reduceRule299() { |
2151 | - $this->semValue = new Expr\BinaryOp\BooleanAnd($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2151 | + $this->semValue = new Expr\BinaryOp\BooleanAnd($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2152 | 2152 | } |
2153 | 2153 | |
2154 | 2154 | protected function reduceRule300() { |
2155 | - $this->semValue = new Expr\BinaryOp\LogicalOr($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2155 | + $this->semValue = new Expr\BinaryOp\LogicalOr($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2156 | 2156 | } |
2157 | 2157 | |
2158 | 2158 | protected function reduceRule301() { |
2159 | - $this->semValue = new Expr\BinaryOp\LogicalAnd($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2159 | + $this->semValue = new Expr\BinaryOp\LogicalAnd($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2160 | 2160 | } |
2161 | 2161 | |
2162 | 2162 | protected function reduceRule302() { |
2163 | - $this->semValue = new Expr\BinaryOp\LogicalXor($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2163 | + $this->semValue = new Expr\BinaryOp\LogicalXor($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2164 | 2164 | } |
2165 | 2165 | |
2166 | 2166 | protected function reduceRule303() { |
2167 | - $this->semValue = new Expr\BinaryOp\BitwiseOr($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2167 | + $this->semValue = new Expr\BinaryOp\BitwiseOr($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2168 | 2168 | } |
2169 | 2169 | |
2170 | 2170 | protected function reduceRule304() { |
2171 | - $this->semValue = new Expr\BinaryOp\BitwiseAnd($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2171 | + $this->semValue = new Expr\BinaryOp\BitwiseAnd($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2172 | 2172 | } |
2173 | 2173 | |
2174 | 2174 | protected function reduceRule305() { |
2175 | - $this->semValue = new Expr\BinaryOp\BitwiseXor($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2175 | + $this->semValue = new Expr\BinaryOp\BitwiseXor($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2176 | 2176 | } |
2177 | 2177 | |
2178 | 2178 | protected function reduceRule306() { |
2179 | - $this->semValue = new Expr\BinaryOp\Concat($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2179 | + $this->semValue = new Expr\BinaryOp\Concat($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2180 | 2180 | } |
2181 | 2181 | |
2182 | 2182 | protected function reduceRule307() { |
2183 | - $this->semValue = new Expr\BinaryOp\Plus($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2183 | + $this->semValue = new Expr\BinaryOp\Plus($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2184 | 2184 | } |
2185 | 2185 | |
2186 | 2186 | protected function reduceRule308() { |
2187 | - $this->semValue = new Expr\BinaryOp\Minus($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2187 | + $this->semValue = new Expr\BinaryOp\Minus($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2188 | 2188 | } |
2189 | 2189 | |
2190 | 2190 | protected function reduceRule309() { |
2191 | - $this->semValue = new Expr\BinaryOp\Mul($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2191 | + $this->semValue = new Expr\BinaryOp\Mul($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2192 | 2192 | } |
2193 | 2193 | |
2194 | 2194 | protected function reduceRule310() { |
2195 | - $this->semValue = new Expr\BinaryOp\Div($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2195 | + $this->semValue = new Expr\BinaryOp\Div($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2196 | 2196 | } |
2197 | 2197 | |
2198 | 2198 | protected function reduceRule311() { |
2199 | - $this->semValue = new Expr\BinaryOp\Mod($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2199 | + $this->semValue = new Expr\BinaryOp\Mod($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2200 | 2200 | } |
2201 | 2201 | |
2202 | 2202 | protected function reduceRule312() { |
2203 | - $this->semValue = new Expr\BinaryOp\ShiftLeft($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2203 | + $this->semValue = new Expr\BinaryOp\ShiftLeft($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2204 | 2204 | } |
2205 | 2205 | |
2206 | 2206 | protected function reduceRule313() { |
2207 | - $this->semValue = new Expr\BinaryOp\ShiftRight($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2207 | + $this->semValue = new Expr\BinaryOp\ShiftRight($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2208 | 2208 | } |
2209 | 2209 | |
2210 | 2210 | protected function reduceRule314() { |
2211 | - $this->semValue = new Expr\BinaryOp\Pow($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2211 | + $this->semValue = new Expr\BinaryOp\Pow($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2212 | 2212 | } |
2213 | 2213 | |
2214 | 2214 | protected function reduceRule315() { |
2215 | - $this->semValue = new Expr\UnaryPlus($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes); |
|
2215 | + $this->semValue = new Expr\UnaryPlus($this->semStack[$this->stackPos - (2 - 2)], $this->startAttributeStack[$this->stackPos - (2 - 1)] + $this->endAttributes); |
|
2216 | 2216 | } |
2217 | 2217 | |
2218 | 2218 | protected function reduceRule316() { |
2219 | - $this->semValue = new Expr\UnaryMinus($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes); |
|
2219 | + $this->semValue = new Expr\UnaryMinus($this->semStack[$this->stackPos - (2 - 2)], $this->startAttributeStack[$this->stackPos - (2 - 1)] + $this->endAttributes); |
|
2220 | 2220 | } |
2221 | 2221 | |
2222 | 2222 | protected function reduceRule317() { |
2223 | - $this->semValue = new Expr\BooleanNot($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes); |
|
2223 | + $this->semValue = new Expr\BooleanNot($this->semStack[$this->stackPos - (2 - 2)], $this->startAttributeStack[$this->stackPos - (2 - 1)] + $this->endAttributes); |
|
2224 | 2224 | } |
2225 | 2225 | |
2226 | 2226 | protected function reduceRule318() { |
2227 | - $this->semValue = new Expr\BitwiseNot($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes); |
|
2227 | + $this->semValue = new Expr\BitwiseNot($this->semStack[$this->stackPos - (2 - 2)], $this->startAttributeStack[$this->stackPos - (2 - 1)] + $this->endAttributes); |
|
2228 | 2228 | } |
2229 | 2229 | |
2230 | 2230 | protected function reduceRule319() { |
2231 | - $this->semValue = new Expr\BinaryOp\Identical($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2231 | + $this->semValue = new Expr\BinaryOp\Identical($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2232 | 2232 | } |
2233 | 2233 | |
2234 | 2234 | protected function reduceRule320() { |
2235 | - $this->semValue = new Expr\BinaryOp\NotIdentical($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2235 | + $this->semValue = new Expr\BinaryOp\NotIdentical($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2236 | 2236 | } |
2237 | 2237 | |
2238 | 2238 | protected function reduceRule321() { |
2239 | - $this->semValue = new Expr\BinaryOp\Equal($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2239 | + $this->semValue = new Expr\BinaryOp\Equal($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2240 | 2240 | } |
2241 | 2241 | |
2242 | 2242 | protected function reduceRule322() { |
2243 | - $this->semValue = new Expr\BinaryOp\NotEqual($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2243 | + $this->semValue = new Expr\BinaryOp\NotEqual($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2244 | 2244 | } |
2245 | 2245 | |
2246 | 2246 | protected function reduceRule323() { |
2247 | - $this->semValue = new Expr\BinaryOp\Spaceship($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2247 | + $this->semValue = new Expr\BinaryOp\Spaceship($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2248 | 2248 | } |
2249 | 2249 | |
2250 | 2250 | protected function reduceRule324() { |
2251 | - $this->semValue = new Expr\BinaryOp\Smaller($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2251 | + $this->semValue = new Expr\BinaryOp\Smaller($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2252 | 2252 | } |
2253 | 2253 | |
2254 | 2254 | protected function reduceRule325() { |
2255 | - $this->semValue = new Expr\BinaryOp\SmallerOrEqual($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2255 | + $this->semValue = new Expr\BinaryOp\SmallerOrEqual($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2256 | 2256 | } |
2257 | 2257 | |
2258 | 2258 | protected function reduceRule326() { |
2259 | - $this->semValue = new Expr\BinaryOp\Greater($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2259 | + $this->semValue = new Expr\BinaryOp\Greater($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2260 | 2260 | } |
2261 | 2261 | |
2262 | 2262 | protected function reduceRule327() { |
2263 | - $this->semValue = new Expr\BinaryOp\GreaterOrEqual($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2263 | + $this->semValue = new Expr\BinaryOp\GreaterOrEqual($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2264 | 2264 | } |
2265 | 2265 | |
2266 | 2266 | protected function reduceRule328() { |
2267 | - $this->semValue = new Expr\Instanceof_($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2267 | + $this->semValue = new Expr\Instanceof_($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2268 | 2268 | } |
2269 | 2269 | |
2270 | 2270 | protected function reduceRule329() { |
2271 | - $this->semValue = $this->semStack[$this->stackPos-(1-1)]; |
|
2271 | + $this->semValue = $this->semStack[$this->stackPos - (1 - 1)]; |
|
2272 | 2272 | } |
2273 | 2273 | |
2274 | 2274 | protected function reduceRule330() { |
2275 | - $this->semValue = $this->semStack[$this->stackPos-(3-2)]; |
|
2275 | + $this->semValue = $this->semStack[$this->stackPos - (3 - 2)]; |
|
2276 | 2276 | } |
2277 | 2277 | |
2278 | 2278 | protected function reduceRule331() { |
2279 | - $this->semValue = new Expr\Ternary($this->semStack[$this->stackPos-(5-1)], $this->semStack[$this->stackPos-(5-3)], $this->semStack[$this->stackPos-(5-5)], $this->startAttributeStack[$this->stackPos-(5-1)] + $this->endAttributes); |
|
2279 | + $this->semValue = new Expr\Ternary($this->semStack[$this->stackPos - (5 - 1)], $this->semStack[$this->stackPos - (5 - 3)], $this->semStack[$this->stackPos - (5 - 5)], $this->startAttributeStack[$this->stackPos - (5 - 1)] + $this->endAttributes); |
|
2280 | 2280 | } |
2281 | 2281 | |
2282 | 2282 | protected function reduceRule332() { |
2283 | - $this->semValue = new Expr\Ternary($this->semStack[$this->stackPos-(4-1)], null, $this->semStack[$this->stackPos-(4-4)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes); |
|
2283 | + $this->semValue = new Expr\Ternary($this->semStack[$this->stackPos - (4 - 1)], null, $this->semStack[$this->stackPos - (4 - 4)], $this->startAttributeStack[$this->stackPos - (4 - 1)] + $this->endAttributes); |
|
2284 | 2284 | } |
2285 | 2285 | |
2286 | 2286 | protected function reduceRule333() { |
2287 | - $this->semValue = new Expr\BinaryOp\Coalesce($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2287 | + $this->semValue = new Expr\BinaryOp\Coalesce($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2288 | 2288 | } |
2289 | 2289 | |
2290 | 2290 | protected function reduceRule334() { |
2291 | - $this->semValue = new Expr\Isset_($this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes); |
|
2291 | + $this->semValue = new Expr\Isset_($this->semStack[$this->stackPos - (4 - 3)], $this->startAttributeStack[$this->stackPos - (4 - 1)] + $this->endAttributes); |
|
2292 | 2292 | } |
2293 | 2293 | |
2294 | 2294 | protected function reduceRule335() { |
2295 | - $this->semValue = new Expr\Empty_($this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes); |
|
2295 | + $this->semValue = new Expr\Empty_($this->semStack[$this->stackPos - (4 - 3)], $this->startAttributeStack[$this->stackPos - (4 - 1)] + $this->endAttributes); |
|
2296 | 2296 | } |
2297 | 2297 | |
2298 | 2298 | protected function reduceRule336() { |
2299 | - $this->semValue = new Expr\Include_($this->semStack[$this->stackPos-(2-2)], Expr\Include_::TYPE_INCLUDE, $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes); |
|
2299 | + $this->semValue = new Expr\Include_($this->semStack[$this->stackPos - (2 - 2)], Expr\Include_::TYPE_INCLUDE, $this->startAttributeStack[$this->stackPos - (2 - 1)] + $this->endAttributes); |
|
2300 | 2300 | } |
2301 | 2301 | |
2302 | 2302 | protected function reduceRule337() { |
2303 | - $this->semValue = new Expr\Include_($this->semStack[$this->stackPos-(2-2)], Expr\Include_::TYPE_INCLUDE_ONCE, $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes); |
|
2303 | + $this->semValue = new Expr\Include_($this->semStack[$this->stackPos - (2 - 2)], Expr\Include_::TYPE_INCLUDE_ONCE, $this->startAttributeStack[$this->stackPos - (2 - 1)] + $this->endAttributes); |
|
2304 | 2304 | } |
2305 | 2305 | |
2306 | 2306 | protected function reduceRule338() { |
2307 | - $this->semValue = new Expr\Eval_($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes); |
|
2307 | + $this->semValue = new Expr\Eval_($this->semStack[$this->stackPos - (2 - 2)], $this->startAttributeStack[$this->stackPos - (2 - 1)] + $this->endAttributes); |
|
2308 | 2308 | } |
2309 | 2309 | |
2310 | 2310 | protected function reduceRule339() { |
2311 | - $this->semValue = new Expr\Include_($this->semStack[$this->stackPos-(2-2)], Expr\Include_::TYPE_REQUIRE, $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes); |
|
2311 | + $this->semValue = new Expr\Include_($this->semStack[$this->stackPos - (2 - 2)], Expr\Include_::TYPE_REQUIRE, $this->startAttributeStack[$this->stackPos - (2 - 1)] + $this->endAttributes); |
|
2312 | 2312 | } |
2313 | 2313 | |
2314 | 2314 | protected function reduceRule340() { |
2315 | - $this->semValue = new Expr\Include_($this->semStack[$this->stackPos-(2-2)], Expr\Include_::TYPE_REQUIRE_ONCE, $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes); |
|
2315 | + $this->semValue = new Expr\Include_($this->semStack[$this->stackPos - (2 - 2)], Expr\Include_::TYPE_REQUIRE_ONCE, $this->startAttributeStack[$this->stackPos - (2 - 1)] + $this->endAttributes); |
|
2316 | 2316 | } |
2317 | 2317 | |
2318 | 2318 | protected function reduceRule341() { |
2319 | - $this->semValue = new Expr\Cast\Int_($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes); |
|
2319 | + $this->semValue = new Expr\Cast\Int_($this->semStack[$this->stackPos - (2 - 2)], $this->startAttributeStack[$this->stackPos - (2 - 1)] + $this->endAttributes); |
|
2320 | 2320 | } |
2321 | 2321 | |
2322 | 2322 | protected function reduceRule342() { |
2323 | - $this->semValue = new Expr\Cast\Double($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes); |
|
2323 | + $this->semValue = new Expr\Cast\Double($this->semStack[$this->stackPos - (2 - 2)], $this->startAttributeStack[$this->stackPos - (2 - 1)] + $this->endAttributes); |
|
2324 | 2324 | } |
2325 | 2325 | |
2326 | 2326 | protected function reduceRule343() { |
2327 | - $this->semValue = new Expr\Cast\String_($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes); |
|
2327 | + $this->semValue = new Expr\Cast\String_($this->semStack[$this->stackPos - (2 - 2)], $this->startAttributeStack[$this->stackPos - (2 - 1)] + $this->endAttributes); |
|
2328 | 2328 | } |
2329 | 2329 | |
2330 | 2330 | protected function reduceRule344() { |
2331 | - $this->semValue = new Expr\Cast\Array_($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes); |
|
2331 | + $this->semValue = new Expr\Cast\Array_($this->semStack[$this->stackPos - (2 - 2)], $this->startAttributeStack[$this->stackPos - (2 - 1)] + $this->endAttributes); |
|
2332 | 2332 | } |
2333 | 2333 | |
2334 | 2334 | protected function reduceRule345() { |
2335 | - $this->semValue = new Expr\Cast\Object_($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes); |
|
2335 | + $this->semValue = new Expr\Cast\Object_($this->semStack[$this->stackPos - (2 - 2)], $this->startAttributeStack[$this->stackPos - (2 - 1)] + $this->endAttributes); |
|
2336 | 2336 | } |
2337 | 2337 | |
2338 | 2338 | protected function reduceRule346() { |
2339 | - $this->semValue = new Expr\Cast\Bool_($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes); |
|
2339 | + $this->semValue = new Expr\Cast\Bool_($this->semStack[$this->stackPos - (2 - 2)], $this->startAttributeStack[$this->stackPos - (2 - 1)] + $this->endAttributes); |
|
2340 | 2340 | } |
2341 | 2341 | |
2342 | 2342 | protected function reduceRule347() { |
2343 | - $this->semValue = new Expr\Cast\Unset_($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes); |
|
2343 | + $this->semValue = new Expr\Cast\Unset_($this->semStack[$this->stackPos - (2 - 2)], $this->startAttributeStack[$this->stackPos - (2 - 1)] + $this->endAttributes); |
|
2344 | 2344 | } |
2345 | 2345 | |
2346 | 2346 | protected function reduceRule348() { |
2347 | - $this->semValue = new Expr\Exit_($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes); |
|
2347 | + $this->semValue = new Expr\Exit_($this->semStack[$this->stackPos - (2 - 2)], $this->startAttributeStack[$this->stackPos - (2 - 1)] + $this->endAttributes); |
|
2348 | 2348 | } |
2349 | 2349 | |
2350 | 2350 | protected function reduceRule349() { |
2351 | - $this->semValue = new Expr\ErrorSuppress($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes); |
|
2351 | + $this->semValue = new Expr\ErrorSuppress($this->semStack[$this->stackPos - (2 - 2)], $this->startAttributeStack[$this->stackPos - (2 - 1)] + $this->endAttributes); |
|
2352 | 2352 | } |
2353 | 2353 | |
2354 | 2354 | protected function reduceRule350() { |
2355 | - $this->semValue = $this->semStack[$this->stackPos-(1-1)]; |
|
2355 | + $this->semValue = $this->semStack[$this->stackPos - (1 - 1)]; |
|
2356 | 2356 | } |
2357 | 2357 | |
2358 | 2358 | protected function reduceRule351() { |
2359 | - $this->semValue = $this->semStack[$this->stackPos-(1-1)]; |
|
2359 | + $this->semValue = $this->semStack[$this->stackPos - (1 - 1)]; |
|
2360 | 2360 | } |
2361 | 2361 | |
2362 | 2362 | protected function reduceRule352() { |
2363 | - $this->semValue = $this->semStack[$this->stackPos-(1-1)]; |
|
2363 | + $this->semValue = $this->semStack[$this->stackPos - (1 - 1)]; |
|
2364 | 2364 | } |
2365 | 2365 | |
2366 | 2366 | protected function reduceRule353() { |
2367 | - $this->semValue = new Expr\ShellExec($this->semStack[$this->stackPos-(3-2)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2367 | + $this->semValue = new Expr\ShellExec($this->semStack[$this->stackPos - (3 - 2)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2368 | 2368 | } |
2369 | 2369 | |
2370 | 2370 | protected function reduceRule354() { |
2371 | - $this->semValue = new Expr\Print_($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes); |
|
2371 | + $this->semValue = new Expr\Print_($this->semStack[$this->stackPos - (2 - 2)], $this->startAttributeStack[$this->stackPos - (2 - 1)] + $this->endAttributes); |
|
2372 | 2372 | } |
2373 | 2373 | |
2374 | 2374 | protected function reduceRule355() { |
2375 | - $this->semValue = new Expr\Yield_(null, null, $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes); |
|
2375 | + $this->semValue = new Expr\Yield_(null, null, $this->startAttributeStack[$this->stackPos - (1 - 1)] + $this->endAttributes); |
|
2376 | 2376 | } |
2377 | 2377 | |
2378 | 2378 | protected function reduceRule356() { |
2379 | - $this->semValue = new Expr\YieldFrom($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes); |
|
2379 | + $this->semValue = new Expr\YieldFrom($this->semStack[$this->stackPos - (2 - 2)], $this->startAttributeStack[$this->stackPos - (2 - 1)] + $this->endAttributes); |
|
2380 | 2380 | } |
2381 | 2381 | |
2382 | 2382 | protected function reduceRule357() { |
2383 | - $this->semValue = new Expr\Closure(['static' => false, 'byRef' => $this->semStack[$this->stackPos-(10-2)], 'params' => $this->semStack[$this->stackPos-(10-4)], 'uses' => $this->semStack[$this->stackPos-(10-6)], 'returnType' => $this->semStack[$this->stackPos-(10-7)], 'stmts' => $this->semStack[$this->stackPos-(10-9)]], $this->startAttributeStack[$this->stackPos-(10-1)] + $this->endAttributes); |
|
2383 | + $this->semValue = new Expr\Closure(['static' => false, 'byRef' => $this->semStack[$this->stackPos - (10 - 2)], 'params' => $this->semStack[$this->stackPos - (10 - 4)], 'uses' => $this->semStack[$this->stackPos - (10 - 6)], 'returnType' => $this->semStack[$this->stackPos - (10 - 7)], 'stmts' => $this->semStack[$this->stackPos - (10 - 9)]], $this->startAttributeStack[$this->stackPos - (10 - 1)] + $this->endAttributes); |
|
2384 | 2384 | } |
2385 | 2385 | |
2386 | 2386 | protected function reduceRule358() { |
2387 | - $this->semValue = new Expr\Closure(['static' => true, 'byRef' => $this->semStack[$this->stackPos-(11-3)], 'params' => $this->semStack[$this->stackPos-(11-5)], 'uses' => $this->semStack[$this->stackPos-(11-7)], 'returnType' => $this->semStack[$this->stackPos-(11-8)], 'stmts' => $this->semStack[$this->stackPos-(11-10)]], $this->startAttributeStack[$this->stackPos-(11-1)] + $this->endAttributes); |
|
2387 | + $this->semValue = new Expr\Closure(['static' => true, 'byRef' => $this->semStack[$this->stackPos - (11 - 3)], 'params' => $this->semStack[$this->stackPos - (11 - 5)], 'uses' => $this->semStack[$this->stackPos - (11 - 7)], 'returnType' => $this->semStack[$this->stackPos - (11 - 8)], 'stmts' => $this->semStack[$this->stackPos - (11 - 10)]], $this->startAttributeStack[$this->stackPos - (11 - 1)] + $this->endAttributes); |
|
2388 | 2388 | } |
2389 | 2389 | |
2390 | 2390 | protected function reduceRule359() { |
2391 | - $this->semValue = $this->semStack[$this->stackPos-(3-2)]; |
|
2391 | + $this->semValue = $this->semStack[$this->stackPos - (3 - 2)]; |
|
2392 | 2392 | } |
2393 | 2393 | |
2394 | 2394 | protected function reduceRule360() { |
2395 | - $this->semValue = $this->semStack[$this->stackPos-(3-2)]; |
|
2395 | + $this->semValue = $this->semStack[$this->stackPos - (3 - 2)]; |
|
2396 | 2396 | } |
2397 | 2397 | |
2398 | 2398 | protected function reduceRule361() { |
2399 | - $this->semValue = new Expr\Yield_($this->semStack[$this->stackPos-(2-2)], null, $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes); |
|
2399 | + $this->semValue = new Expr\Yield_($this->semStack[$this->stackPos - (2 - 2)], null, $this->startAttributeStack[$this->stackPos - (2 - 1)] + $this->endAttributes); |
|
2400 | 2400 | } |
2401 | 2401 | |
2402 | 2402 | protected function reduceRule362() { |
2403 | - $this->semValue = new Expr\Yield_($this->semStack[$this->stackPos-(4-4)], $this->semStack[$this->stackPos-(4-2)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes); |
|
2403 | + $this->semValue = new Expr\Yield_($this->semStack[$this->stackPos - (4 - 4)], $this->semStack[$this->stackPos - (4 - 2)], $this->startAttributeStack[$this->stackPos - (4 - 1)] + $this->endAttributes); |
|
2404 | 2404 | } |
2405 | 2405 | |
2406 | 2406 | protected function reduceRule363() { |
2407 | - $this->semValue = new Expr\Array_($this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes); |
|
2407 | + $this->semValue = new Expr\Array_($this->semStack[$this->stackPos - (4 - 3)], $this->startAttributeStack[$this->stackPos - (4 - 1)] + $this->endAttributes); |
|
2408 | 2408 | } |
2409 | 2409 | |
2410 | 2410 | protected function reduceRule364() { |
2411 | - $this->semValue = new Expr\Array_($this->semStack[$this->stackPos-(3-2)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2411 | + $this->semValue = new Expr\Array_($this->semStack[$this->stackPos - (3 - 2)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2412 | 2412 | } |
2413 | 2413 | |
2414 | 2414 | protected function reduceRule365() { |
2415 | - $this->semValue = new Expr\ArrayDimFetch($this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes); |
|
2415 | + $this->semValue = new Expr\ArrayDimFetch($this->semStack[$this->stackPos - (4 - 1)], $this->semStack[$this->stackPos - (4 - 3)], $this->startAttributeStack[$this->stackPos - (4 - 1)] + $this->endAttributes); |
|
2416 | 2416 | } |
2417 | 2417 | |
2418 | 2418 | protected function reduceRule366() { |
2419 | - $this->semValue = new Expr\ArrayDimFetch(new Scalar\String_(Scalar\String_::parse($this->semStack[$this->stackPos-(4-1)], false), $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes), $this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes); |
|
2419 | + $this->semValue = new Expr\ArrayDimFetch(new Scalar\String_(Scalar\String_::parse($this->semStack[$this->stackPos - (4 - 1)], false), $this->startAttributeStack[$this->stackPos - (4 - 1)] + $this->endAttributes), $this->semStack[$this->stackPos - (4 - 3)], $this->startAttributeStack[$this->stackPos - (4 - 1)] + $this->endAttributes); |
|
2420 | 2420 | } |
2421 | 2421 | |
2422 | 2422 | protected function reduceRule367() { |
2423 | - $this->semValue = new Expr\ArrayDimFetch($this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes); |
|
2423 | + $this->semValue = new Expr\ArrayDimFetch($this->semStack[$this->stackPos - (4 - 1)], $this->semStack[$this->stackPos - (4 - 3)], $this->startAttributeStack[$this->stackPos - (4 - 1)] + $this->endAttributes); |
|
2424 | 2424 | } |
2425 | 2425 | |
2426 | 2426 | protected function reduceRule368() { |
2427 | - $this->semValue = new Expr\ArrayDimFetch($this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes); |
|
2427 | + $this->semValue = new Expr\ArrayDimFetch($this->semStack[$this->stackPos - (4 - 1)], $this->semStack[$this->stackPos - (4 - 3)], $this->startAttributeStack[$this->stackPos - (4 - 1)] + $this->endAttributes); |
|
2428 | 2428 | } |
2429 | 2429 | |
2430 | 2430 | protected function reduceRule369() { |
2431 | - $this->semValue = array(new Stmt\Class_(null, ['type' => 0, 'extends' => $this->semStack[$this->stackPos-(7-3)], 'implements' => $this->semStack[$this->stackPos-(7-4)], 'stmts' => $this->semStack[$this->stackPos-(7-6)]], $this->startAttributeStack[$this->stackPos-(7-1)] + $this->endAttributes), $this->semStack[$this->stackPos-(7-2)]); |
|
2431 | + $this->semValue = array(new Stmt\Class_(null, ['type' => 0, 'extends' => $this->semStack[$this->stackPos - (7 - 3)], 'implements' => $this->semStack[$this->stackPos - (7 - 4)], 'stmts' => $this->semStack[$this->stackPos - (7 - 6)]], $this->startAttributeStack[$this->stackPos - (7 - 1)] + $this->endAttributes), $this->semStack[$this->stackPos - (7 - 2)]); |
|
2432 | 2432 | } |
2433 | 2433 | |
2434 | 2434 | protected function reduceRule370() { |
2435 | - $this->semValue = new Expr\New_($this->semStack[$this->stackPos-(3-2)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2435 | + $this->semValue = new Expr\New_($this->semStack[$this->stackPos - (3 - 2)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2436 | 2436 | } |
2437 | 2437 | |
2438 | 2438 | protected function reduceRule371() { |
2439 | - list($class, $ctorArgs) = $this->semStack[$this->stackPos-(2-2)]; $this->semValue = new Expr\New_($class, $ctorArgs, $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes); |
|
2439 | + list($class, $ctorArgs) = $this->semStack[$this->stackPos - (2 - 2)]; $this->semValue = new Expr\New_($class, $ctorArgs, $this->startAttributeStack[$this->stackPos - (2 - 1)] + $this->endAttributes); |
|
2440 | 2440 | } |
2441 | 2441 | |
2442 | 2442 | protected function reduceRule372() { |
@@ -2444,45 +2444,45 @@ discard block |
||
2444 | 2444 | } |
2445 | 2445 | |
2446 | 2446 | protected function reduceRule373() { |
2447 | - $this->semValue = $this->semStack[$this->stackPos-(4-3)]; |
|
2447 | + $this->semValue = $this->semStack[$this->stackPos - (4 - 3)]; |
|
2448 | 2448 | } |
2449 | 2449 | |
2450 | 2450 | protected function reduceRule374() { |
2451 | - $this->semValue = array($this->semStack[$this->stackPos-(1-1)]); |
|
2451 | + $this->semValue = array($this->semStack[$this->stackPos - (1 - 1)]); |
|
2452 | 2452 | } |
2453 | 2453 | |
2454 | 2454 | protected function reduceRule375() { |
2455 | - $this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)]; |
|
2455 | + $this->semStack[$this->stackPos - (3 - 1)][] = $this->semStack[$this->stackPos - (3 - 3)]; $this->semValue = $this->semStack[$this->stackPos - (3 - 1)]; |
|
2456 | 2456 | } |
2457 | 2457 | |
2458 | 2458 | protected function reduceRule376() { |
2459 | - $this->semValue = new Expr\ClosureUse(substr($this->semStack[$this->stackPos-(2-2)], 1), $this->semStack[$this->stackPos-(2-1)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes); |
|
2459 | + $this->semValue = new Expr\ClosureUse(substr($this->semStack[$this->stackPos - (2 - 2)], 1), $this->semStack[$this->stackPos - (2 - 1)], $this->startAttributeStack[$this->stackPos - (2 - 1)] + $this->endAttributes); |
|
2460 | 2460 | } |
2461 | 2461 | |
2462 | 2462 | protected function reduceRule377() { |
2463 | - $this->semValue = new Expr\FuncCall($this->semStack[$this->stackPos-(2-1)], $this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes); |
|
2463 | + $this->semValue = new Expr\FuncCall($this->semStack[$this->stackPos - (2 - 1)], $this->semStack[$this->stackPos - (2 - 2)], $this->startAttributeStack[$this->stackPos - (2 - 1)] + $this->endAttributes); |
|
2464 | 2464 | } |
2465 | 2465 | |
2466 | 2466 | protected function reduceRule378() { |
2467 | - $this->semValue = new Expr\StaticCall($this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-3)], $this->semStack[$this->stackPos-(4-4)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes); |
|
2467 | + $this->semValue = new Expr\StaticCall($this->semStack[$this->stackPos - (4 - 1)], $this->semStack[$this->stackPos - (4 - 3)], $this->semStack[$this->stackPos - (4 - 4)], $this->startAttributeStack[$this->stackPos - (4 - 1)] + $this->endAttributes); |
|
2468 | 2468 | } |
2469 | 2469 | |
2470 | 2470 | protected function reduceRule379() { |
2471 | - $this->semValue = new Expr\StaticCall($this->semStack[$this->stackPos-(6-1)], $this->semStack[$this->stackPos-(6-4)], $this->semStack[$this->stackPos-(6-6)], $this->startAttributeStack[$this->stackPos-(6-1)] + $this->endAttributes); |
|
2471 | + $this->semValue = new Expr\StaticCall($this->semStack[$this->stackPos - (6 - 1)], $this->semStack[$this->stackPos - (6 - 4)], $this->semStack[$this->stackPos - (6 - 6)], $this->startAttributeStack[$this->stackPos - (6 - 1)] + $this->endAttributes); |
|
2472 | 2472 | } |
2473 | 2473 | |
2474 | 2474 | protected function reduceRule380() { |
2475 | 2475 | |
2476 | - if ($this->semStack[$this->stackPos-(2-1)] instanceof Node\Expr\StaticPropertyFetch) { |
|
2477 | - $this->semValue = new Expr\StaticCall($this->semStack[$this->stackPos-(2-1)]->class, new Expr\Variable($this->semStack[$this->stackPos-(2-1)]->name, $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes), $this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes); |
|
2478 | - } elseif ($this->semStack[$this->stackPos-(2-1)] instanceof Node\Expr\ArrayDimFetch) { |
|
2479 | - $tmp = $this->semStack[$this->stackPos-(2-1)]; |
|
2476 | + if ($this->semStack[$this->stackPos - (2 - 1)] instanceof Node\Expr\StaticPropertyFetch) { |
|
2477 | + $this->semValue = new Expr\StaticCall($this->semStack[$this->stackPos - (2 - 1)]->class, new Expr\Variable($this->semStack[$this->stackPos - (2 - 1)]->name, $this->startAttributeStack[$this->stackPos - (2 - 1)] + $this->endAttributes), $this->semStack[$this->stackPos - (2 - 2)], $this->startAttributeStack[$this->stackPos - (2 - 1)] + $this->endAttributes); |
|
2478 | + } elseif ($this->semStack[$this->stackPos - (2 - 1)] instanceof Node\Expr\ArrayDimFetch) { |
|
2479 | + $tmp = $this->semStack[$this->stackPos - (2 - 1)]; |
|
2480 | 2480 | while ($tmp->var instanceof Node\Expr\ArrayDimFetch) { |
2481 | 2481 | $tmp = $tmp->var; |
2482 | 2482 | } |
2483 | 2483 | |
2484 | - $this->semValue = new Expr\StaticCall($tmp->var->class, $this->semStack[$this->stackPos-(2-1)], $this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes); |
|
2485 | - $tmp->var = new Expr\Variable($tmp->var->name, $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes); |
|
2484 | + $this->semValue = new Expr\StaticCall($tmp->var->class, $this->semStack[$this->stackPos - (2 - 1)], $this->semStack[$this->stackPos - (2 - 2)], $this->startAttributeStack[$this->stackPos - (2 - 1)] + $this->endAttributes); |
|
2485 | + $tmp->var = new Expr\Variable($tmp->var->name, $this->startAttributeStack[$this->stackPos - (2 - 1)] + $this->endAttributes); |
|
2486 | 2486 | } else { |
2487 | 2487 | throw new \Exception; |
2488 | 2488 | } |
@@ -2490,71 +2490,71 @@ discard block |
||
2490 | 2490 | } |
2491 | 2491 | |
2492 | 2492 | protected function reduceRule381() { |
2493 | - $this->semValue = new Expr\FuncCall($this->semStack[$this->stackPos-(2-1)], $this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes); |
|
2493 | + $this->semValue = new Expr\FuncCall($this->semStack[$this->stackPos - (2 - 1)], $this->semStack[$this->stackPos - (2 - 2)], $this->startAttributeStack[$this->stackPos - (2 - 1)] + $this->endAttributes); |
|
2494 | 2494 | } |
2495 | 2495 | |
2496 | 2496 | protected function reduceRule382() { |
2497 | - $this->semValue = new Expr\ArrayDimFetch($this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes); |
|
2497 | + $this->semValue = new Expr\ArrayDimFetch($this->semStack[$this->stackPos - (4 - 1)], $this->semStack[$this->stackPos - (4 - 3)], $this->startAttributeStack[$this->stackPos - (4 - 1)] + $this->endAttributes); |
|
2498 | 2498 | } |
2499 | 2499 | |
2500 | 2500 | protected function reduceRule383() { |
2501 | - $this->semValue = new Name($this->semStack[$this->stackPos-(1-1)], $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes); |
|
2501 | + $this->semValue = new Name($this->semStack[$this->stackPos - (1 - 1)], $this->startAttributeStack[$this->stackPos - (1 - 1)] + $this->endAttributes); |
|
2502 | 2502 | } |
2503 | 2503 | |
2504 | 2504 | protected function reduceRule384() { |
2505 | - $this->semValue = $this->semStack[$this->stackPos-(1-1)]; |
|
2505 | + $this->semValue = $this->semStack[$this->stackPos - (1 - 1)]; |
|
2506 | 2506 | } |
2507 | 2507 | |
2508 | 2508 | protected function reduceRule385() { |
2509 | - $this->semValue = new Name($this->semStack[$this->stackPos-(1-1)], $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes); |
|
2509 | + $this->semValue = new Name($this->semStack[$this->stackPos - (1 - 1)], $this->startAttributeStack[$this->stackPos - (1 - 1)] + $this->endAttributes); |
|
2510 | 2510 | } |
2511 | 2511 | |
2512 | 2512 | protected function reduceRule386() { |
2513 | - $this->semValue = new Name\FullyQualified($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes); |
|
2513 | + $this->semValue = new Name\FullyQualified($this->semStack[$this->stackPos - (2 - 2)], $this->startAttributeStack[$this->stackPos - (2 - 1)] + $this->endAttributes); |
|
2514 | 2514 | } |
2515 | 2515 | |
2516 | 2516 | protected function reduceRule387() { |
2517 | - $this->semValue = new Name\Relative($this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2517 | + $this->semValue = new Name\Relative($this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2518 | 2518 | } |
2519 | 2519 | |
2520 | 2520 | protected function reduceRule388() { |
2521 | - $this->semValue = $this->semStack[$this->stackPos-(1-1)]; |
|
2521 | + $this->semValue = $this->semStack[$this->stackPos - (1 - 1)]; |
|
2522 | 2522 | } |
2523 | 2523 | |
2524 | 2524 | protected function reduceRule389() { |
2525 | - $this->semValue = $this->semStack[$this->stackPos-(1-1)]; |
|
2525 | + $this->semValue = $this->semStack[$this->stackPos - (1 - 1)]; |
|
2526 | 2526 | } |
2527 | 2527 | |
2528 | 2528 | protected function reduceRule390() { |
2529 | - $this->semValue = $this->semStack[$this->stackPos-(1-1)]; |
|
2529 | + $this->semValue = $this->semStack[$this->stackPos - (1 - 1)]; |
|
2530 | 2530 | } |
2531 | 2531 | |
2532 | 2532 | protected function reduceRule391() { |
2533 | - $this->semValue = $this->semStack[$this->stackPos-(1-1)]; |
|
2533 | + $this->semValue = $this->semStack[$this->stackPos - (1 - 1)]; |
|
2534 | 2534 | } |
2535 | 2535 | |
2536 | 2536 | protected function reduceRule392() { |
2537 | - $this->semValue = $this->semStack[$this->stackPos-(1-1)]; |
|
2537 | + $this->semValue = $this->semStack[$this->stackPos - (1 - 1)]; |
|
2538 | 2538 | } |
2539 | 2539 | |
2540 | 2540 | protected function reduceRule393() { |
2541 | - $this->semValue = $this->semStack[$this->stackPos-(1-1)]; |
|
2541 | + $this->semValue = $this->semStack[$this->stackPos - (1 - 1)]; |
|
2542 | 2542 | } |
2543 | 2543 | |
2544 | 2544 | protected function reduceRule394() { |
2545 | - $this->semValue = new Expr\PropertyFetch($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2545 | + $this->semValue = new Expr\PropertyFetch($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2546 | 2546 | } |
2547 | 2547 | |
2548 | 2548 | protected function reduceRule395() { |
2549 | - $this->semValue = new Expr\PropertyFetch($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2549 | + $this->semValue = new Expr\PropertyFetch($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2550 | 2550 | } |
2551 | 2551 | |
2552 | 2552 | protected function reduceRule396() { |
2553 | - $this->semValue = new Expr\ArrayDimFetch($this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes); |
|
2553 | + $this->semValue = new Expr\ArrayDimFetch($this->semStack[$this->stackPos - (4 - 1)], $this->semStack[$this->stackPos - (4 - 3)], $this->startAttributeStack[$this->stackPos - (4 - 1)] + $this->endAttributes); |
|
2554 | 2554 | } |
2555 | 2555 | |
2556 | 2556 | protected function reduceRule397() { |
2557 | - $this->semValue = new Expr\ArrayDimFetch($this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes); |
|
2557 | + $this->semValue = new Expr\ArrayDimFetch($this->semStack[$this->stackPos - (4 - 1)], $this->semStack[$this->stackPos - (4 - 3)], $this->startAttributeStack[$this->stackPos - (4 - 1)] + $this->endAttributes); |
|
2558 | 2558 | } |
2559 | 2559 | |
2560 | 2560 | protected function reduceRule398() { |
@@ -2566,7 +2566,7 @@ discard block |
||
2566 | 2566 | } |
2567 | 2567 | |
2568 | 2568 | protected function reduceRule400() { |
2569 | - $this->semValue = $this->semStack[$this->stackPos-(1-1)]; |
|
2569 | + $this->semValue = $this->semStack[$this->stackPos - (1 - 1)]; |
|
2570 | 2570 | } |
2571 | 2571 | |
2572 | 2572 | protected function reduceRule401() { |
@@ -2574,11 +2574,11 @@ discard block |
||
2574 | 2574 | } |
2575 | 2575 | |
2576 | 2576 | protected function reduceRule402() { |
2577 | - $this->semValue = array(Scalar\String_::parseEscapeSequences($this->semStack[$this->stackPos-(1-1)], '`', false)); |
|
2577 | + $this->semValue = array(Scalar\String_::parseEscapeSequences($this->semStack[$this->stackPos - (1 - 1)], '`', false)); |
|
2578 | 2578 | } |
2579 | 2579 | |
2580 | 2580 | protected function reduceRule403() { |
2581 | - foreach ($this->semStack[$this->stackPos-(1-1)] as &$s) { if (is_string($s)) { $s = Node\Scalar\String_::parseEscapeSequences($s, '`', false); } }; $this->semValue = $this->semStack[$this->stackPos-(1-1)]; |
|
2581 | + foreach ($this->semStack[$this->stackPos - (1 - 1)] as &$s) { if (is_string($s)) { $s = Node\Scalar\String_::parseEscapeSequences($s, '`', false); } }; $this->semValue = $this->semStack[$this->stackPos - (1 - 1)]; |
|
2582 | 2582 | } |
2583 | 2583 | |
2584 | 2584 | protected function reduceRule404() { |
@@ -2586,239 +2586,239 @@ discard block |
||
2586 | 2586 | } |
2587 | 2587 | |
2588 | 2588 | protected function reduceRule405() { |
2589 | - $this->semValue = $this->semStack[$this->stackPos-(1-1)]; |
|
2589 | + $this->semValue = $this->semStack[$this->stackPos - (1 - 1)]; |
|
2590 | 2590 | } |
2591 | 2591 | |
2592 | 2592 | protected function reduceRule406() { |
2593 | - $this->semValue = new Scalar\LNumber(Scalar\LNumber::parse($this->semStack[$this->stackPos-(1-1)]), $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes); |
|
2593 | + $this->semValue = new Scalar\LNumber(Scalar\LNumber::parse($this->semStack[$this->stackPos - (1 - 1)]), $this->startAttributeStack[$this->stackPos - (1 - 1)] + $this->endAttributes); |
|
2594 | 2594 | } |
2595 | 2595 | |
2596 | 2596 | protected function reduceRule407() { |
2597 | - $this->semValue = new Scalar\DNumber(Scalar\DNumber::parse($this->semStack[$this->stackPos-(1-1)]), $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes); |
|
2597 | + $this->semValue = new Scalar\DNumber(Scalar\DNumber::parse($this->semStack[$this->stackPos - (1 - 1)]), $this->startAttributeStack[$this->stackPos - (1 - 1)] + $this->endAttributes); |
|
2598 | 2598 | } |
2599 | 2599 | |
2600 | 2600 | protected function reduceRule408() { |
2601 | - $this->semValue = new Scalar\String_(Scalar\String_::parse($this->semStack[$this->stackPos-(1-1)], false), $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes); |
|
2601 | + $this->semValue = new Scalar\String_(Scalar\String_::parse($this->semStack[$this->stackPos - (1 - 1)], false), $this->startAttributeStack[$this->stackPos - (1 - 1)] + $this->endAttributes); |
|
2602 | 2602 | } |
2603 | 2603 | |
2604 | 2604 | protected function reduceRule409() { |
2605 | - $this->semValue = new Scalar\MagicConst\Line($this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes); |
|
2605 | + $this->semValue = new Scalar\MagicConst\Line($this->startAttributeStack[$this->stackPos - (1 - 1)] + $this->endAttributes); |
|
2606 | 2606 | } |
2607 | 2607 | |
2608 | 2608 | protected function reduceRule410() { |
2609 | - $this->semValue = new Scalar\MagicConst\File($this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes); |
|
2609 | + $this->semValue = new Scalar\MagicConst\File($this->startAttributeStack[$this->stackPos - (1 - 1)] + $this->endAttributes); |
|
2610 | 2610 | } |
2611 | 2611 | |
2612 | 2612 | protected function reduceRule411() { |
2613 | - $this->semValue = new Scalar\MagicConst\Dir($this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes); |
|
2613 | + $this->semValue = new Scalar\MagicConst\Dir($this->startAttributeStack[$this->stackPos - (1 - 1)] + $this->endAttributes); |
|
2614 | 2614 | } |
2615 | 2615 | |
2616 | 2616 | protected function reduceRule412() { |
2617 | - $this->semValue = new Scalar\MagicConst\Class_($this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes); |
|
2617 | + $this->semValue = new Scalar\MagicConst\Class_($this->startAttributeStack[$this->stackPos - (1 - 1)] + $this->endAttributes); |
|
2618 | 2618 | } |
2619 | 2619 | |
2620 | 2620 | protected function reduceRule413() { |
2621 | - $this->semValue = new Scalar\MagicConst\Trait_($this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes); |
|
2621 | + $this->semValue = new Scalar\MagicConst\Trait_($this->startAttributeStack[$this->stackPos - (1 - 1)] + $this->endAttributes); |
|
2622 | 2622 | } |
2623 | 2623 | |
2624 | 2624 | protected function reduceRule414() { |
2625 | - $this->semValue = new Scalar\MagicConst\Method($this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes); |
|
2625 | + $this->semValue = new Scalar\MagicConst\Method($this->startAttributeStack[$this->stackPos - (1 - 1)] + $this->endAttributes); |
|
2626 | 2626 | } |
2627 | 2627 | |
2628 | 2628 | protected function reduceRule415() { |
2629 | - $this->semValue = new Scalar\MagicConst\Function_($this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes); |
|
2629 | + $this->semValue = new Scalar\MagicConst\Function_($this->startAttributeStack[$this->stackPos - (1 - 1)] + $this->endAttributes); |
|
2630 | 2630 | } |
2631 | 2631 | |
2632 | 2632 | protected function reduceRule416() { |
2633 | - $this->semValue = new Scalar\MagicConst\Namespace_($this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes); |
|
2633 | + $this->semValue = new Scalar\MagicConst\Namespace_($this->startAttributeStack[$this->stackPos - (1 - 1)] + $this->endAttributes); |
|
2634 | 2634 | } |
2635 | 2635 | |
2636 | 2636 | protected function reduceRule417() { |
2637 | - $this->semValue = new Scalar\String_(Scalar\String_::parseDocString($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-2)], false), $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2637 | + $this->semValue = new Scalar\String_(Scalar\String_::parseDocString($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 2)], false), $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2638 | 2638 | } |
2639 | 2639 | |
2640 | 2640 | protected function reduceRule418() { |
2641 | - $this->semValue = new Scalar\String_('', $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes); |
|
2641 | + $this->semValue = new Scalar\String_('', $this->startAttributeStack[$this->stackPos - (2 - 1)] + $this->endAttributes); |
|
2642 | 2642 | } |
2643 | 2643 | |
2644 | 2644 | protected function reduceRule419() { |
2645 | - $this->semValue = $this->semStack[$this->stackPos-(1-1)]; |
|
2645 | + $this->semValue = $this->semStack[$this->stackPos - (1 - 1)]; |
|
2646 | 2646 | } |
2647 | 2647 | |
2648 | 2648 | protected function reduceRule420() { |
2649 | - $this->semValue = new Expr\ClassConstFetch($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2649 | + $this->semValue = new Expr\ClassConstFetch($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2650 | 2650 | } |
2651 | 2651 | |
2652 | 2652 | protected function reduceRule421() { |
2653 | - $this->semValue = new Expr\ConstFetch($this->semStack[$this->stackPos-(1-1)], $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes); |
|
2653 | + $this->semValue = new Expr\ConstFetch($this->semStack[$this->stackPos - (1 - 1)], $this->startAttributeStack[$this->stackPos - (1 - 1)] + $this->endAttributes); |
|
2654 | 2654 | } |
2655 | 2655 | |
2656 | 2656 | protected function reduceRule422() { |
2657 | - $this->semValue = new Expr\Array_($this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes); |
|
2657 | + $this->semValue = new Expr\Array_($this->semStack[$this->stackPos - (4 - 3)], $this->startAttributeStack[$this->stackPos - (4 - 1)] + $this->endAttributes); |
|
2658 | 2658 | } |
2659 | 2659 | |
2660 | 2660 | protected function reduceRule423() { |
2661 | - $this->semValue = new Expr\Array_($this->semStack[$this->stackPos-(3-2)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2661 | + $this->semValue = new Expr\Array_($this->semStack[$this->stackPos - (3 - 2)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2662 | 2662 | } |
2663 | 2663 | |
2664 | 2664 | protected function reduceRule424() { |
2665 | - $this->semValue = $this->semStack[$this->stackPos-(1-1)]; |
|
2665 | + $this->semValue = $this->semStack[$this->stackPos - (1 - 1)]; |
|
2666 | 2666 | } |
2667 | 2667 | |
2668 | 2668 | protected function reduceRule425() { |
2669 | - $this->semValue = new Expr\BinaryOp\BooleanOr($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2669 | + $this->semValue = new Expr\BinaryOp\BooleanOr($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2670 | 2670 | } |
2671 | 2671 | |
2672 | 2672 | protected function reduceRule426() { |
2673 | - $this->semValue = new Expr\BinaryOp\BooleanAnd($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2673 | + $this->semValue = new Expr\BinaryOp\BooleanAnd($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2674 | 2674 | } |
2675 | 2675 | |
2676 | 2676 | protected function reduceRule427() { |
2677 | - $this->semValue = new Expr\BinaryOp\LogicalOr($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2677 | + $this->semValue = new Expr\BinaryOp\LogicalOr($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2678 | 2678 | } |
2679 | 2679 | |
2680 | 2680 | protected function reduceRule428() { |
2681 | - $this->semValue = new Expr\BinaryOp\LogicalAnd($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2681 | + $this->semValue = new Expr\BinaryOp\LogicalAnd($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2682 | 2682 | } |
2683 | 2683 | |
2684 | 2684 | protected function reduceRule429() { |
2685 | - $this->semValue = new Expr\BinaryOp\LogicalXor($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2685 | + $this->semValue = new Expr\BinaryOp\LogicalXor($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2686 | 2686 | } |
2687 | 2687 | |
2688 | 2688 | protected function reduceRule430() { |
2689 | - $this->semValue = new Expr\BinaryOp\BitwiseOr($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2689 | + $this->semValue = new Expr\BinaryOp\BitwiseOr($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2690 | 2690 | } |
2691 | 2691 | |
2692 | 2692 | protected function reduceRule431() { |
2693 | - $this->semValue = new Expr\BinaryOp\BitwiseAnd($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2693 | + $this->semValue = new Expr\BinaryOp\BitwiseAnd($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2694 | 2694 | } |
2695 | 2695 | |
2696 | 2696 | protected function reduceRule432() { |
2697 | - $this->semValue = new Expr\BinaryOp\BitwiseXor($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2697 | + $this->semValue = new Expr\BinaryOp\BitwiseXor($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2698 | 2698 | } |
2699 | 2699 | |
2700 | 2700 | protected function reduceRule433() { |
2701 | - $this->semValue = new Expr\BinaryOp\Concat($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2701 | + $this->semValue = new Expr\BinaryOp\Concat($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2702 | 2702 | } |
2703 | 2703 | |
2704 | 2704 | protected function reduceRule434() { |
2705 | - $this->semValue = new Expr\BinaryOp\Plus($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2705 | + $this->semValue = new Expr\BinaryOp\Plus($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2706 | 2706 | } |
2707 | 2707 | |
2708 | 2708 | protected function reduceRule435() { |
2709 | - $this->semValue = new Expr\BinaryOp\Minus($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2709 | + $this->semValue = new Expr\BinaryOp\Minus($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2710 | 2710 | } |
2711 | 2711 | |
2712 | 2712 | protected function reduceRule436() { |
2713 | - $this->semValue = new Expr\BinaryOp\Mul($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2713 | + $this->semValue = new Expr\BinaryOp\Mul($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2714 | 2714 | } |
2715 | 2715 | |
2716 | 2716 | protected function reduceRule437() { |
2717 | - $this->semValue = new Expr\BinaryOp\Div($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2717 | + $this->semValue = new Expr\BinaryOp\Div($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2718 | 2718 | } |
2719 | 2719 | |
2720 | 2720 | protected function reduceRule438() { |
2721 | - $this->semValue = new Expr\BinaryOp\Mod($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2721 | + $this->semValue = new Expr\BinaryOp\Mod($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2722 | 2722 | } |
2723 | 2723 | |
2724 | 2724 | protected function reduceRule439() { |
2725 | - $this->semValue = new Expr\BinaryOp\ShiftLeft($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2725 | + $this->semValue = new Expr\BinaryOp\ShiftLeft($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2726 | 2726 | } |
2727 | 2727 | |
2728 | 2728 | protected function reduceRule440() { |
2729 | - $this->semValue = new Expr\BinaryOp\ShiftRight($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2729 | + $this->semValue = new Expr\BinaryOp\ShiftRight($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2730 | 2730 | } |
2731 | 2731 | |
2732 | 2732 | protected function reduceRule441() { |
2733 | - $this->semValue = new Expr\BinaryOp\Pow($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2733 | + $this->semValue = new Expr\BinaryOp\Pow($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2734 | 2734 | } |
2735 | 2735 | |
2736 | 2736 | protected function reduceRule442() { |
2737 | - $this->semValue = new Expr\UnaryPlus($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes); |
|
2737 | + $this->semValue = new Expr\UnaryPlus($this->semStack[$this->stackPos - (2 - 2)], $this->startAttributeStack[$this->stackPos - (2 - 1)] + $this->endAttributes); |
|
2738 | 2738 | } |
2739 | 2739 | |
2740 | 2740 | protected function reduceRule443() { |
2741 | - $this->semValue = new Expr\UnaryMinus($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes); |
|
2741 | + $this->semValue = new Expr\UnaryMinus($this->semStack[$this->stackPos - (2 - 2)], $this->startAttributeStack[$this->stackPos - (2 - 1)] + $this->endAttributes); |
|
2742 | 2742 | } |
2743 | 2743 | |
2744 | 2744 | protected function reduceRule444() { |
2745 | - $this->semValue = new Expr\BooleanNot($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes); |
|
2745 | + $this->semValue = new Expr\BooleanNot($this->semStack[$this->stackPos - (2 - 2)], $this->startAttributeStack[$this->stackPos - (2 - 1)] + $this->endAttributes); |
|
2746 | 2746 | } |
2747 | 2747 | |
2748 | 2748 | protected function reduceRule445() { |
2749 | - $this->semValue = new Expr\BitwiseNot($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes); |
|
2749 | + $this->semValue = new Expr\BitwiseNot($this->semStack[$this->stackPos - (2 - 2)], $this->startAttributeStack[$this->stackPos - (2 - 1)] + $this->endAttributes); |
|
2750 | 2750 | } |
2751 | 2751 | |
2752 | 2752 | protected function reduceRule446() { |
2753 | - $this->semValue = new Expr\BinaryOp\Identical($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2753 | + $this->semValue = new Expr\BinaryOp\Identical($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2754 | 2754 | } |
2755 | 2755 | |
2756 | 2756 | protected function reduceRule447() { |
2757 | - $this->semValue = new Expr\BinaryOp\NotIdentical($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2757 | + $this->semValue = new Expr\BinaryOp\NotIdentical($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2758 | 2758 | } |
2759 | 2759 | |
2760 | 2760 | protected function reduceRule448() { |
2761 | - $this->semValue = new Expr\BinaryOp\Equal($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2761 | + $this->semValue = new Expr\BinaryOp\Equal($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2762 | 2762 | } |
2763 | 2763 | |
2764 | 2764 | protected function reduceRule449() { |
2765 | - $this->semValue = new Expr\BinaryOp\NotEqual($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2765 | + $this->semValue = new Expr\BinaryOp\NotEqual($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2766 | 2766 | } |
2767 | 2767 | |
2768 | 2768 | protected function reduceRule450() { |
2769 | - $this->semValue = new Expr\BinaryOp\Smaller($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2769 | + $this->semValue = new Expr\BinaryOp\Smaller($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2770 | 2770 | } |
2771 | 2771 | |
2772 | 2772 | protected function reduceRule451() { |
2773 | - $this->semValue = new Expr\BinaryOp\SmallerOrEqual($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2773 | + $this->semValue = new Expr\BinaryOp\SmallerOrEqual($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2774 | 2774 | } |
2775 | 2775 | |
2776 | 2776 | protected function reduceRule452() { |
2777 | - $this->semValue = new Expr\BinaryOp\Greater($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2777 | + $this->semValue = new Expr\BinaryOp\Greater($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2778 | 2778 | } |
2779 | 2779 | |
2780 | 2780 | protected function reduceRule453() { |
2781 | - $this->semValue = new Expr\BinaryOp\GreaterOrEqual($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2781 | + $this->semValue = new Expr\BinaryOp\GreaterOrEqual($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2782 | 2782 | } |
2783 | 2783 | |
2784 | 2784 | protected function reduceRule454() { |
2785 | - $this->semValue = new Expr\Ternary($this->semStack[$this->stackPos-(5-1)], $this->semStack[$this->stackPos-(5-3)], $this->semStack[$this->stackPos-(5-5)], $this->startAttributeStack[$this->stackPos-(5-1)] + $this->endAttributes); |
|
2785 | + $this->semValue = new Expr\Ternary($this->semStack[$this->stackPos - (5 - 1)], $this->semStack[$this->stackPos - (5 - 3)], $this->semStack[$this->stackPos - (5 - 5)], $this->startAttributeStack[$this->stackPos - (5 - 1)] + $this->endAttributes); |
|
2786 | 2786 | } |
2787 | 2787 | |
2788 | 2788 | protected function reduceRule455() { |
2789 | - $this->semValue = new Expr\Ternary($this->semStack[$this->stackPos-(4-1)], null, $this->semStack[$this->stackPos-(4-4)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes); |
|
2789 | + $this->semValue = new Expr\Ternary($this->semStack[$this->stackPos - (4 - 1)], null, $this->semStack[$this->stackPos - (4 - 4)], $this->startAttributeStack[$this->stackPos - (4 - 1)] + $this->endAttributes); |
|
2790 | 2790 | } |
2791 | 2791 | |
2792 | 2792 | protected function reduceRule456() { |
2793 | - $this->semValue = new Expr\ArrayDimFetch($this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes); |
|
2793 | + $this->semValue = new Expr\ArrayDimFetch($this->semStack[$this->stackPos - (4 - 1)], $this->semStack[$this->stackPos - (4 - 3)], $this->startAttributeStack[$this->stackPos - (4 - 1)] + $this->endAttributes); |
|
2794 | 2794 | } |
2795 | 2795 | |
2796 | 2796 | protected function reduceRule457() { |
2797 | - $this->semValue = $this->semStack[$this->stackPos-(3-2)]; |
|
2797 | + $this->semValue = $this->semStack[$this->stackPos - (3 - 2)]; |
|
2798 | 2798 | } |
2799 | 2799 | |
2800 | 2800 | protected function reduceRule458() { |
2801 | - $this->semValue = new Expr\ConstFetch($this->semStack[$this->stackPos-(1-1)], $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes); |
|
2801 | + $this->semValue = new Expr\ConstFetch($this->semStack[$this->stackPos - (1 - 1)], $this->startAttributeStack[$this->stackPos - (1 - 1)] + $this->endAttributes); |
|
2802 | 2802 | } |
2803 | 2803 | |
2804 | 2804 | protected function reduceRule459() { |
2805 | - $this->semValue = new Expr\ClassConstFetch($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2805 | + $this->semValue = new Expr\ClassConstFetch($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2806 | 2806 | } |
2807 | 2807 | |
2808 | 2808 | protected function reduceRule460() { |
2809 | - $this->semValue = $this->semStack[$this->stackPos-(1-1)]; |
|
2809 | + $this->semValue = $this->semStack[$this->stackPos - (1 - 1)]; |
|
2810 | 2810 | } |
2811 | 2811 | |
2812 | 2812 | protected function reduceRule461() { |
2813 | - $this->semValue = $this->semStack[$this->stackPos-(1-1)]; |
|
2813 | + $this->semValue = $this->semStack[$this->stackPos - (1 - 1)]; |
|
2814 | 2814 | } |
2815 | 2815 | |
2816 | 2816 | protected function reduceRule462() { |
2817 | - foreach ($this->semStack[$this->stackPos-(3-2)] as &$s) { if (is_string($s)) { $s = Node\Scalar\String_::parseEscapeSequences($s, '"', false); } }; $this->semValue = new Scalar\Encapsed($this->semStack[$this->stackPos-(3-2)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2817 | + foreach ($this->semStack[$this->stackPos - (3 - 2)] as &$s) { if (is_string($s)) { $s = Node\Scalar\String_::parseEscapeSequences($s, '"', false); } }; $this->semValue = new Scalar\Encapsed($this->semStack[$this->stackPos - (3 - 2)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2818 | 2818 | } |
2819 | 2819 | |
2820 | 2820 | protected function reduceRule463() { |
2821 | - foreach ($this->semStack[$this->stackPos-(3-2)] as &$s) { if (is_string($s)) { $s = Node\Scalar\String_::parseEscapeSequences($s, null, false); } } $s = preg_replace('~(\r\n|\n|\r)\z~', '', $s); if ('' === $s) array_pop($this->semStack[$this->stackPos-(3-2)]);; $this->semValue = new Scalar\Encapsed($this->semStack[$this->stackPos-(3-2)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2821 | + foreach ($this->semStack[$this->stackPos - (3 - 2)] as &$s) { if (is_string($s)) { $s = Node\Scalar\String_::parseEscapeSequences($s, null, false); } } $s = preg_replace('~(\r\n|\n|\r)\z~', '', $s); if ('' === $s) array_pop($this->semStack[$this->stackPos - (3 - 2)]); ; $this->semValue = new Scalar\Encapsed($this->semStack[$this->stackPos - (3 - 2)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2822 | 2822 | } |
2823 | 2823 | |
2824 | 2824 | protected function reduceRule464() { |
@@ -2826,7 +2826,7 @@ discard block |
||
2826 | 2826 | } |
2827 | 2827 | |
2828 | 2828 | protected function reduceRule465() { |
2829 | - $this->semValue = $this->semStack[$this->stackPos-(2-1)]; |
|
2829 | + $this->semValue = $this->semStack[$this->stackPos - (2 - 1)]; |
|
2830 | 2830 | } |
2831 | 2831 | |
2832 | 2832 | protected function reduceRule466() { |
@@ -2838,127 +2838,127 @@ discard block |
||
2838 | 2838 | } |
2839 | 2839 | |
2840 | 2840 | protected function reduceRule468() { |
2841 | - $this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)]; |
|
2841 | + $this->semStack[$this->stackPos - (3 - 1)][] = $this->semStack[$this->stackPos - (3 - 3)]; $this->semValue = $this->semStack[$this->stackPos - (3 - 1)]; |
|
2842 | 2842 | } |
2843 | 2843 | |
2844 | 2844 | protected function reduceRule469() { |
2845 | - $this->semValue = array($this->semStack[$this->stackPos-(1-1)]); |
|
2845 | + $this->semValue = array($this->semStack[$this->stackPos - (1 - 1)]); |
|
2846 | 2846 | } |
2847 | 2847 | |
2848 | 2848 | protected function reduceRule470() { |
2849 | - $this->semValue = new Expr\ArrayItem($this->semStack[$this->stackPos-(3-3)], $this->semStack[$this->stackPos-(3-1)], false, $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2849 | + $this->semValue = new Expr\ArrayItem($this->semStack[$this->stackPos - (3 - 3)], $this->semStack[$this->stackPos - (3 - 1)], false, $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2850 | 2850 | } |
2851 | 2851 | |
2852 | 2852 | protected function reduceRule471() { |
2853 | - $this->semValue = new Expr\ArrayItem($this->semStack[$this->stackPos-(1-1)], null, false, $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes); |
|
2853 | + $this->semValue = new Expr\ArrayItem($this->semStack[$this->stackPos - (1 - 1)], null, false, $this->startAttributeStack[$this->stackPos - (1 - 1)] + $this->endAttributes); |
|
2854 | 2854 | } |
2855 | 2855 | |
2856 | 2856 | protected function reduceRule472() { |
2857 | - $this->semValue = $this->semStack[$this->stackPos-(1-1)]; |
|
2857 | + $this->semValue = $this->semStack[$this->stackPos - (1 - 1)]; |
|
2858 | 2858 | } |
2859 | 2859 | |
2860 | 2860 | protected function reduceRule473() { |
2861 | - $this->semValue = $this->semStack[$this->stackPos-(1-1)]; |
|
2861 | + $this->semValue = $this->semStack[$this->stackPos - (1 - 1)]; |
|
2862 | 2862 | } |
2863 | 2863 | |
2864 | 2864 | protected function reduceRule474() { |
2865 | - $this->semValue = $this->semStack[$this->stackPos-(1-1)]; |
|
2865 | + $this->semValue = $this->semStack[$this->stackPos - (1 - 1)]; |
|
2866 | 2866 | } |
2867 | 2867 | |
2868 | 2868 | protected function reduceRule475() { |
2869 | - $this->semValue = $this->semStack[$this->stackPos-(1-1)]; |
|
2869 | + $this->semValue = $this->semStack[$this->stackPos - (1 - 1)]; |
|
2870 | 2870 | } |
2871 | 2871 | |
2872 | 2872 | protected function reduceRule476() { |
2873 | - $this->semValue = new Expr\ArrayDimFetch($this->semStack[$this->stackPos-(6-2)], $this->semStack[$this->stackPos-(6-5)], $this->startAttributeStack[$this->stackPos-(6-1)] + $this->endAttributes); |
|
2873 | + $this->semValue = new Expr\ArrayDimFetch($this->semStack[$this->stackPos - (6 - 2)], $this->semStack[$this->stackPos - (6 - 5)], $this->startAttributeStack[$this->stackPos - (6 - 1)] + $this->endAttributes); |
|
2874 | 2874 | } |
2875 | 2875 | |
2876 | 2876 | protected function reduceRule477() { |
2877 | - $this->semValue = new Expr\ArrayDimFetch($this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes); |
|
2877 | + $this->semValue = new Expr\ArrayDimFetch($this->semStack[$this->stackPos - (4 - 1)], $this->semStack[$this->stackPos - (4 - 3)], $this->startAttributeStack[$this->stackPos - (4 - 1)] + $this->endAttributes); |
|
2878 | 2878 | } |
2879 | 2879 | |
2880 | 2880 | protected function reduceRule478() { |
2881 | - $this->semValue = new Expr\PropertyFetch($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2881 | + $this->semValue = new Expr\PropertyFetch($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2882 | 2882 | } |
2883 | 2883 | |
2884 | 2884 | protected function reduceRule479() { |
2885 | - $this->semValue = new Expr\MethodCall($this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-3)], $this->semStack[$this->stackPos-(4-4)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes); |
|
2885 | + $this->semValue = new Expr\MethodCall($this->semStack[$this->stackPos - (4 - 1)], $this->semStack[$this->stackPos - (4 - 3)], $this->semStack[$this->stackPos - (4 - 4)], $this->startAttributeStack[$this->stackPos - (4 - 1)] + $this->endAttributes); |
|
2886 | 2886 | } |
2887 | 2887 | |
2888 | 2888 | protected function reduceRule480() { |
2889 | - $this->semValue = new Expr\FuncCall($this->semStack[$this->stackPos-(2-1)], $this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes); |
|
2889 | + $this->semValue = new Expr\FuncCall($this->semStack[$this->stackPos - (2 - 1)], $this->semStack[$this->stackPos - (2 - 2)], $this->startAttributeStack[$this->stackPos - (2 - 1)] + $this->endAttributes); |
|
2890 | 2890 | } |
2891 | 2891 | |
2892 | 2892 | protected function reduceRule481() { |
2893 | - $this->semValue = new Expr\ArrayDimFetch($this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes); |
|
2893 | + $this->semValue = new Expr\ArrayDimFetch($this->semStack[$this->stackPos - (4 - 1)], $this->semStack[$this->stackPos - (4 - 3)], $this->startAttributeStack[$this->stackPos - (4 - 1)] + $this->endAttributes); |
|
2894 | 2894 | } |
2895 | 2895 | |
2896 | 2896 | protected function reduceRule482() { |
2897 | - $this->semValue = new Expr\ArrayDimFetch($this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes); |
|
2897 | + $this->semValue = new Expr\ArrayDimFetch($this->semStack[$this->stackPos - (4 - 1)], $this->semStack[$this->stackPos - (4 - 3)], $this->startAttributeStack[$this->stackPos - (4 - 1)] + $this->endAttributes); |
|
2898 | 2898 | } |
2899 | 2899 | |
2900 | 2900 | protected function reduceRule483() { |
2901 | - $this->semValue = $this->semStack[$this->stackPos-(1-1)]; |
|
2901 | + $this->semValue = $this->semStack[$this->stackPos - (1 - 1)]; |
|
2902 | 2902 | } |
2903 | 2903 | |
2904 | 2904 | protected function reduceRule484() { |
2905 | - $this->semValue = $this->semStack[$this->stackPos-(3-2)]; |
|
2905 | + $this->semValue = $this->semStack[$this->stackPos - (3 - 2)]; |
|
2906 | 2906 | } |
2907 | 2907 | |
2908 | 2908 | protected function reduceRule485() { |
2909 | - $this->semValue = $this->semStack[$this->stackPos-(1-1)]; |
|
2909 | + $this->semValue = $this->semStack[$this->stackPos - (1 - 1)]; |
|
2910 | 2910 | } |
2911 | 2911 | |
2912 | 2912 | protected function reduceRule486() { |
2913 | - $this->semValue = new Expr\Variable($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes); |
|
2913 | + $this->semValue = new Expr\Variable($this->semStack[$this->stackPos - (2 - 2)], $this->startAttributeStack[$this->stackPos - (2 - 1)] + $this->endAttributes); |
|
2914 | 2914 | } |
2915 | 2915 | |
2916 | 2916 | protected function reduceRule487() { |
2917 | - $this->semValue = $this->semStack[$this->stackPos-(1-1)]; |
|
2917 | + $this->semValue = $this->semStack[$this->stackPos - (1 - 1)]; |
|
2918 | 2918 | } |
2919 | 2919 | |
2920 | 2920 | protected function reduceRule488() { |
2921 | - $this->semValue = $this->semStack[$this->stackPos-(1-1)]; |
|
2921 | + $this->semValue = $this->semStack[$this->stackPos - (1 - 1)]; |
|
2922 | 2922 | } |
2923 | 2923 | |
2924 | 2924 | protected function reduceRule489() { |
2925 | - $this->semValue = new Expr\StaticPropertyFetch($this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-4)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes); |
|
2925 | + $this->semValue = new Expr\StaticPropertyFetch($this->semStack[$this->stackPos - (4 - 1)], $this->semStack[$this->stackPos - (4 - 4)], $this->startAttributeStack[$this->stackPos - (4 - 1)] + $this->endAttributes); |
|
2926 | 2926 | } |
2927 | 2927 | |
2928 | 2928 | protected function reduceRule490() { |
2929 | - $this->semValue = $this->semStack[$this->stackPos-(1-1)]; |
|
2929 | + $this->semValue = $this->semStack[$this->stackPos - (1 - 1)]; |
|
2930 | 2930 | } |
2931 | 2931 | |
2932 | 2932 | protected function reduceRule491() { |
2933 | - $this->semValue = new Expr\StaticPropertyFetch($this->semStack[$this->stackPos-(3-1)], substr($this->semStack[$this->stackPos-(3-3)], 1), $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2933 | + $this->semValue = new Expr\StaticPropertyFetch($this->semStack[$this->stackPos - (3 - 1)], substr($this->semStack[$this->stackPos - (3 - 3)], 1), $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2934 | 2934 | } |
2935 | 2935 | |
2936 | 2936 | protected function reduceRule492() { |
2937 | - $this->semValue = new Expr\StaticPropertyFetch($this->semStack[$this->stackPos-(6-1)], $this->semStack[$this->stackPos-(6-5)], $this->startAttributeStack[$this->stackPos-(6-1)] + $this->endAttributes); |
|
2937 | + $this->semValue = new Expr\StaticPropertyFetch($this->semStack[$this->stackPos - (6 - 1)], $this->semStack[$this->stackPos - (6 - 5)], $this->startAttributeStack[$this->stackPos - (6 - 1)] + $this->endAttributes); |
|
2938 | 2938 | } |
2939 | 2939 | |
2940 | 2940 | protected function reduceRule493() { |
2941 | - $this->semValue = new Expr\ArrayDimFetch($this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes); |
|
2941 | + $this->semValue = new Expr\ArrayDimFetch($this->semStack[$this->stackPos - (4 - 1)], $this->semStack[$this->stackPos - (4 - 3)], $this->startAttributeStack[$this->stackPos - (4 - 1)] + $this->endAttributes); |
|
2942 | 2942 | } |
2943 | 2943 | |
2944 | 2944 | protected function reduceRule494() { |
2945 | - $this->semValue = new Expr\ArrayDimFetch($this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes); |
|
2945 | + $this->semValue = new Expr\ArrayDimFetch($this->semStack[$this->stackPos - (4 - 1)], $this->semStack[$this->stackPos - (4 - 3)], $this->startAttributeStack[$this->stackPos - (4 - 1)] + $this->endAttributes); |
|
2946 | 2946 | } |
2947 | 2947 | |
2948 | 2948 | protected function reduceRule495() { |
2949 | - $this->semValue = new Expr\ArrayDimFetch($this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes); |
|
2949 | + $this->semValue = new Expr\ArrayDimFetch($this->semStack[$this->stackPos - (4 - 1)], $this->semStack[$this->stackPos - (4 - 3)], $this->startAttributeStack[$this->stackPos - (4 - 1)] + $this->endAttributes); |
|
2950 | 2950 | } |
2951 | 2951 | |
2952 | 2952 | protected function reduceRule496() { |
2953 | - $this->semValue = new Expr\ArrayDimFetch($this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes); |
|
2953 | + $this->semValue = new Expr\ArrayDimFetch($this->semStack[$this->stackPos - (4 - 1)], $this->semStack[$this->stackPos - (4 - 3)], $this->startAttributeStack[$this->stackPos - (4 - 1)] + $this->endAttributes); |
|
2954 | 2954 | } |
2955 | 2955 | |
2956 | 2956 | protected function reduceRule497() { |
2957 | - $this->semValue = new Expr\Variable(substr($this->semStack[$this->stackPos-(1-1)], 1), $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes); |
|
2957 | + $this->semValue = new Expr\Variable(substr($this->semStack[$this->stackPos - (1 - 1)], 1), $this->startAttributeStack[$this->stackPos - (1 - 1)] + $this->endAttributes); |
|
2958 | 2958 | } |
2959 | 2959 | |
2960 | 2960 | protected function reduceRule498() { |
2961 | - $this->semValue = new Expr\Variable($this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes); |
|
2961 | + $this->semValue = new Expr\Variable($this->semStack[$this->stackPos - (4 - 3)], $this->startAttributeStack[$this->stackPos - (4 - 1)] + $this->endAttributes); |
|
2962 | 2962 | } |
2963 | 2963 | |
2964 | 2964 | protected function reduceRule499() { |
@@ -2966,39 +2966,39 @@ discard block |
||
2966 | 2966 | } |
2967 | 2967 | |
2968 | 2968 | protected function reduceRule500() { |
2969 | - $this->semValue = $this->semStack[$this->stackPos-(1-1)]; |
|
2969 | + $this->semValue = $this->semStack[$this->stackPos - (1 - 1)]; |
|
2970 | 2970 | } |
2971 | 2971 | |
2972 | 2972 | protected function reduceRule501() { |
2973 | - $this->semValue = $this->semStack[$this->stackPos-(1-1)]; |
|
2973 | + $this->semValue = $this->semStack[$this->stackPos - (1 - 1)]; |
|
2974 | 2974 | } |
2975 | 2975 | |
2976 | 2976 | protected function reduceRule502() { |
2977 | - $this->semValue = $this->semStack[$this->stackPos-(3-2)]; |
|
2977 | + $this->semValue = $this->semStack[$this->stackPos - (3 - 2)]; |
|
2978 | 2978 | } |
2979 | 2979 | |
2980 | 2980 | protected function reduceRule503() { |
2981 | - $this->semValue = $this->semStack[$this->stackPos-(1-1)]; |
|
2981 | + $this->semValue = $this->semStack[$this->stackPos - (1 - 1)]; |
|
2982 | 2982 | } |
2983 | 2983 | |
2984 | 2984 | protected function reduceRule504() { |
2985 | - $this->semValue = new Expr\List_($this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes); |
|
2985 | + $this->semValue = new Expr\List_($this->semStack[$this->stackPos - (4 - 3)], $this->startAttributeStack[$this->stackPos - (4 - 1)] + $this->endAttributes); |
|
2986 | 2986 | } |
2987 | 2987 | |
2988 | 2988 | protected function reduceRule505() { |
2989 | - $this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)]; |
|
2989 | + $this->semStack[$this->stackPos - (3 - 1)][] = $this->semStack[$this->stackPos - (3 - 3)]; $this->semValue = $this->semStack[$this->stackPos - (3 - 1)]; |
|
2990 | 2990 | } |
2991 | 2991 | |
2992 | 2992 | protected function reduceRule506() { |
2993 | - $this->semValue = array($this->semStack[$this->stackPos-(1-1)]); |
|
2993 | + $this->semValue = array($this->semStack[$this->stackPos - (1 - 1)]); |
|
2994 | 2994 | } |
2995 | 2995 | |
2996 | 2996 | protected function reduceRule507() { |
2997 | - $this->semValue = $this->semStack[$this->stackPos-(1-1)]; |
|
2997 | + $this->semValue = $this->semStack[$this->stackPos - (1 - 1)]; |
|
2998 | 2998 | } |
2999 | 2999 | |
3000 | 3000 | protected function reduceRule508() { |
3001 | - $this->semValue = $this->semStack[$this->stackPos-(1-1)]; |
|
3001 | + $this->semValue = $this->semStack[$this->stackPos - (1 - 1)]; |
|
3002 | 3002 | } |
3003 | 3003 | |
3004 | 3004 | protected function reduceRule509() { |
@@ -3010,86 +3010,86 @@ discard block |
||
3010 | 3010 | } |
3011 | 3011 | |
3012 | 3012 | protected function reduceRule511() { |
3013 | - $this->semValue = $this->semStack[$this->stackPos-(2-1)]; |
|
3013 | + $this->semValue = $this->semStack[$this->stackPos - (2 - 1)]; |
|
3014 | 3014 | } |
3015 | 3015 | |
3016 | 3016 | protected function reduceRule512() { |
3017 | - $this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)]; |
|
3017 | + $this->semStack[$this->stackPos - (3 - 1)][] = $this->semStack[$this->stackPos - (3 - 3)]; $this->semValue = $this->semStack[$this->stackPos - (3 - 1)]; |
|
3018 | 3018 | } |
3019 | 3019 | |
3020 | 3020 | protected function reduceRule513() { |
3021 | - $this->semValue = array($this->semStack[$this->stackPos-(1-1)]); |
|
3021 | + $this->semValue = array($this->semStack[$this->stackPos - (1 - 1)]); |
|
3022 | 3022 | } |
3023 | 3023 | |
3024 | 3024 | protected function reduceRule514() { |
3025 | - $this->semValue = new Expr\ArrayItem($this->semStack[$this->stackPos-(3-3)], $this->semStack[$this->stackPos-(3-1)], false, $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
3025 | + $this->semValue = new Expr\ArrayItem($this->semStack[$this->stackPos - (3 - 3)], $this->semStack[$this->stackPos - (3 - 1)], false, $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
3026 | 3026 | } |
3027 | 3027 | |
3028 | 3028 | protected function reduceRule515() { |
3029 | - $this->semValue = new Expr\ArrayItem($this->semStack[$this->stackPos-(1-1)], null, false, $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes); |
|
3029 | + $this->semValue = new Expr\ArrayItem($this->semStack[$this->stackPos - (1 - 1)], null, false, $this->startAttributeStack[$this->stackPos - (1 - 1)] + $this->endAttributes); |
|
3030 | 3030 | } |
3031 | 3031 | |
3032 | 3032 | protected function reduceRule516() { |
3033 | - $this->semValue = new Expr\ArrayItem($this->semStack[$this->stackPos-(4-4)], $this->semStack[$this->stackPos-(4-1)], true, $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes); |
|
3033 | + $this->semValue = new Expr\ArrayItem($this->semStack[$this->stackPos - (4 - 4)], $this->semStack[$this->stackPos - (4 - 1)], true, $this->startAttributeStack[$this->stackPos - (4 - 1)] + $this->endAttributes); |
|
3034 | 3034 | } |
3035 | 3035 | |
3036 | 3036 | protected function reduceRule517() { |
3037 | - $this->semValue = new Expr\ArrayItem($this->semStack[$this->stackPos-(2-2)], null, true, $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes); |
|
3037 | + $this->semValue = new Expr\ArrayItem($this->semStack[$this->stackPos - (2 - 2)], null, true, $this->startAttributeStack[$this->stackPos - (2 - 1)] + $this->endAttributes); |
|
3038 | 3038 | } |
3039 | 3039 | |
3040 | 3040 | protected function reduceRule518() { |
3041 | - $this->semStack[$this->stackPos-(2-1)][] = $this->semStack[$this->stackPos-(2-2)]; $this->semValue = $this->semStack[$this->stackPos-(2-1)]; |
|
3041 | + $this->semStack[$this->stackPos - (2 - 1)][] = $this->semStack[$this->stackPos - (2 - 2)]; $this->semValue = $this->semStack[$this->stackPos - (2 - 1)]; |
|
3042 | 3042 | } |
3043 | 3043 | |
3044 | 3044 | protected function reduceRule519() { |
3045 | - $this->semStack[$this->stackPos-(2-1)][] = $this->semStack[$this->stackPos-(2-2)]; $this->semValue = $this->semStack[$this->stackPos-(2-1)]; |
|
3045 | + $this->semStack[$this->stackPos - (2 - 1)][] = $this->semStack[$this->stackPos - (2 - 2)]; $this->semValue = $this->semStack[$this->stackPos - (2 - 1)]; |
|
3046 | 3046 | } |
3047 | 3047 | |
3048 | 3048 | protected function reduceRule520() { |
3049 | - $this->semValue = array($this->semStack[$this->stackPos-(1-1)]); |
|
3049 | + $this->semValue = array($this->semStack[$this->stackPos - (1 - 1)]); |
|
3050 | 3050 | } |
3051 | 3051 | |
3052 | 3052 | protected function reduceRule521() { |
3053 | - $this->semValue = array($this->semStack[$this->stackPos-(2-1)], $this->semStack[$this->stackPos-(2-2)]); |
|
3053 | + $this->semValue = array($this->semStack[$this->stackPos - (2 - 1)], $this->semStack[$this->stackPos - (2 - 2)]); |
|
3054 | 3054 | } |
3055 | 3055 | |
3056 | 3056 | protected function reduceRule522() { |
3057 | - $this->semValue = new Expr\Variable(substr($this->semStack[$this->stackPos-(1-1)], 1), $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes); |
|
3057 | + $this->semValue = new Expr\Variable(substr($this->semStack[$this->stackPos - (1 - 1)], 1), $this->startAttributeStack[$this->stackPos - (1 - 1)] + $this->endAttributes); |
|
3058 | 3058 | } |
3059 | 3059 | |
3060 | 3060 | protected function reduceRule523() { |
3061 | - $this->semValue = new Expr\ArrayDimFetch(new Expr\Variable(substr($this->semStack[$this->stackPos-(4-1)], 1), $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes), $this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes); |
|
3061 | + $this->semValue = new Expr\ArrayDimFetch(new Expr\Variable(substr($this->semStack[$this->stackPos - (4 - 1)], 1), $this->startAttributeStack[$this->stackPos - (4 - 1)] + $this->endAttributes), $this->semStack[$this->stackPos - (4 - 3)], $this->startAttributeStack[$this->stackPos - (4 - 1)] + $this->endAttributes); |
|
3062 | 3062 | } |
3063 | 3063 | |
3064 | 3064 | protected function reduceRule524() { |
3065 | - $this->semValue = new Expr\PropertyFetch(new Expr\Variable(substr($this->semStack[$this->stackPos-(3-1)], 1), $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes), $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
3065 | + $this->semValue = new Expr\PropertyFetch(new Expr\Variable(substr($this->semStack[$this->stackPos - (3 - 1)], 1), $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes), $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
3066 | 3066 | } |
3067 | 3067 | |
3068 | 3068 | protected function reduceRule525() { |
3069 | - $this->semValue = new Expr\Variable($this->semStack[$this->stackPos-(3-2)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
3069 | + $this->semValue = new Expr\Variable($this->semStack[$this->stackPos - (3 - 2)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
3070 | 3070 | } |
3071 | 3071 | |
3072 | 3072 | protected function reduceRule526() { |
3073 | - $this->semValue = new Expr\Variable($this->semStack[$this->stackPos-(3-2)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
3073 | + $this->semValue = new Expr\Variable($this->semStack[$this->stackPos - (3 - 2)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
3074 | 3074 | } |
3075 | 3075 | |
3076 | 3076 | protected function reduceRule527() { |
3077 | - $this->semValue = new Expr\ArrayDimFetch(new Expr\Variable($this->semStack[$this->stackPos-(6-2)], $this->startAttributeStack[$this->stackPos-(6-1)] + $this->endAttributes), $this->semStack[$this->stackPos-(6-4)], $this->startAttributeStack[$this->stackPos-(6-1)] + $this->endAttributes); |
|
3077 | + $this->semValue = new Expr\ArrayDimFetch(new Expr\Variable($this->semStack[$this->stackPos - (6 - 2)], $this->startAttributeStack[$this->stackPos - (6 - 1)] + $this->endAttributes), $this->semStack[$this->stackPos - (6 - 4)], $this->startAttributeStack[$this->stackPos - (6 - 1)] + $this->endAttributes); |
|
3078 | 3078 | } |
3079 | 3079 | |
3080 | 3080 | protected function reduceRule528() { |
3081 | - $this->semValue = $this->semStack[$this->stackPos-(3-2)]; |
|
3081 | + $this->semValue = $this->semStack[$this->stackPos - (3 - 2)]; |
|
3082 | 3082 | } |
3083 | 3083 | |
3084 | 3084 | protected function reduceRule529() { |
3085 | - $this->semValue = new Scalar\String_($this->semStack[$this->stackPos-(1-1)], $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes); |
|
3085 | + $this->semValue = new Scalar\String_($this->semStack[$this->stackPos - (1 - 1)], $this->startAttributeStack[$this->stackPos - (1 - 1)] + $this->endAttributes); |
|
3086 | 3086 | } |
3087 | 3087 | |
3088 | 3088 | protected function reduceRule530() { |
3089 | - $this->semValue = new Scalar\String_($this->semStack[$this->stackPos-(1-1)], $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes); |
|
3089 | + $this->semValue = new Scalar\String_($this->semStack[$this->stackPos - (1 - 1)], $this->startAttributeStack[$this->stackPos - (1 - 1)] + $this->endAttributes); |
|
3090 | 3090 | } |
3091 | 3091 | |
3092 | 3092 | protected function reduceRule531() { |
3093 | - $this->semValue = new Expr\Variable(substr($this->semStack[$this->stackPos-(1-1)], 1), $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes); |
|
3093 | + $this->semValue = new Expr\Variable(substr($this->semStack[$this->stackPos - (1 - 1)], 1), $this->startAttributeStack[$this->stackPos - (1 - 1)] + $this->endAttributes); |
|
3094 | 3094 | } |
3095 | 3095 | } |
@@ -190,627 +190,627 @@ discard block |
||
190 | 190 | ); |
191 | 191 | |
192 | 192 | protected $tokenToSymbol = array( |
193 | - 0, 157, 157, 157, 157, 157, 157, 157, 157, 157, |
|
194 | - 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, |
|
195 | - 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, |
|
196 | - 157, 157, 157, 53, 155, 157, 156, 52, 35, 157, |
|
197 | - 151, 152, 50, 47, 7, 48, 49, 51, 157, 157, |
|
198 | - 157, 157, 157, 157, 157, 157, 157, 157, 29, 148, |
|
199 | - 41, 15, 43, 28, 65, 157, 157, 157, 157, 157, |
|
200 | - 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, |
|
201 | - 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, |
|
202 | - 157, 67, 157, 154, 34, 157, 153, 157, 157, 157, |
|
203 | - 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, |
|
204 | - 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, |
|
205 | - 157, 157, 157, 149, 33, 150, 55, 157, 157, 157, |
|
206 | - 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, |
|
207 | - 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, |
|
208 | - 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, |
|
209 | - 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, |
|
210 | - 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, |
|
211 | - 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, |
|
212 | - 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, |
|
213 | - 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, |
|
214 | - 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, |
|
215 | - 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, |
|
216 | - 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, |
|
217 | - 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, |
|
218 | - 157, 157, 157, 157, 157, 157, 1, 2, 3, 4, |
|
219 | - 5, 6, 8, 9, 10, 11, 12, 13, 14, 16, |
|
220 | - 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, |
|
221 | - 27, 30, 31, 32, 36, 37, 38, 39, 40, 42, |
|
222 | - 44, 45, 46, 54, 56, 57, 58, 59, 60, 61, |
|
223 | - 62, 63, 64, 66, 68, 69, 70, 71, 72, 73, |
|
224 | - 74, 75, 76, 77, 78, 79, 80, 81, 157, 157, |
|
225 | - 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, |
|
226 | - 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, |
|
227 | - 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, |
|
228 | - 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, |
|
229 | - 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, |
|
230 | - 132, 133, 134, 135, 136, 137, 157, 157, 157, 157, |
|
231 | - 157, 157, 138, 139, 140, 141, 142, 143, 144, 145, |
|
232 | - 146, 147 |
|
193 | + 0, 157, 157, 157, 157, 157, 157, 157, 157, 157, |
|
194 | + 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, |
|
195 | + 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, |
|
196 | + 157, 157, 157, 53, 155, 157, 156, 52, 35, 157, |
|
197 | + 151, 152, 50, 47, 7, 48, 49, 51, 157, 157, |
|
198 | + 157, 157, 157, 157, 157, 157, 157, 157, 29, 148, |
|
199 | + 41, 15, 43, 28, 65, 157, 157, 157, 157, 157, |
|
200 | + 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, |
|
201 | + 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, |
|
202 | + 157, 67, 157, 154, 34, 157, 153, 157, 157, 157, |
|
203 | + 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, |
|
204 | + 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, |
|
205 | + 157, 157, 157, 149, 33, 150, 55, 157, 157, 157, |
|
206 | + 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, |
|
207 | + 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, |
|
208 | + 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, |
|
209 | + 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, |
|
210 | + 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, |
|
211 | + 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, |
|
212 | + 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, |
|
213 | + 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, |
|
214 | + 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, |
|
215 | + 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, |
|
216 | + 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, |
|
217 | + 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, |
|
218 | + 157, 157, 157, 157, 157, 157, 1, 2, 3, 4, |
|
219 | + 5, 6, 8, 9, 10, 11, 12, 13, 14, 16, |
|
220 | + 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, |
|
221 | + 27, 30, 31, 32, 36, 37, 38, 39, 40, 42, |
|
222 | + 44, 45, 46, 54, 56, 57, 58, 59, 60, 61, |
|
223 | + 62, 63, 64, 66, 68, 69, 70, 71, 72, 73, |
|
224 | + 74, 75, 76, 77, 78, 79, 80, 81, 157, 157, |
|
225 | + 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, |
|
226 | + 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, |
|
227 | + 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, |
|
228 | + 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, |
|
229 | + 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, |
|
230 | + 132, 133, 134, 135, 136, 137, 157, 157, 157, 157, |
|
231 | + 157, 157, 138, 139, 140, 141, 142, 143, 144, 145, |
|
232 | + 146, 147 |
|
233 | 233 | ); |
234 | 234 | |
235 | 235 | protected $action = array( |
236 | - 697, 58, 59, 393, 60, 61,-32766,-32766,-32766,-32766, |
|
237 | - 62, 63, 1016, 64, 1018, 1017,-32766,-32766,-32766,-32766, |
|
238 | - -32766,-32766, 108, 109, 110,-32766,-32766, 57,-32766,-32766, |
|
239 | - -32766,-32766,-32766,-32766,-32767,-32767,-32767,-32767,-32767,-32766, |
|
240 | - 975,-32766,-32766,-32766,-32766,-32766, 65, 66,-32766,-32766, |
|
241 | - -32766, 1006, 67, 129, 68, 233, 234, 69, 70, 71, |
|
242 | - 72, 73, 74, 75, 76, 357, 40, 247, 77, 362, |
|
243 | - 394, 0,-32766, 1006, 940, 941, 395, 131, 975, 55, |
|
244 | - 686, 277, 939, 50, 27, 396, 741, 397, 268, 398, |
|
245 | - -32766, 399, 355,-32766, 400,-32766,-32766,-32766, 51, 52, |
|
246 | - 401, 363, 308, 53, 402, 140,-32766, 78, 955, 130, |
|
247 | - 300, 301, 403, 404, 299,-32766, 289, 286, 405, 406, |
|
248 | - 407, 672, 713, 408, 409, 765, 766, 420, 410, 411, |
|
249 | - 364, 945, 946, 947, 948, 942, 943, 256, 420, 42, |
|
250 | - 267, 364, 420, 949, 944, 364, 954, 692, 529, 227, |
|
251 | - 79, -446, 265,-32766, 266, 286, 561, 562, 563, 564, |
|
252 | - 565, 128, 566, 567, 568, 604, 605,-32766,-32766,-32766, |
|
253 | - 33, -193, -193, -193,-32766, 319, 280, 463, 526, 814, |
|
254 | - 815, 816, 813, 812, 811, 806, 381,-32766, 1013,-32766, |
|
255 | - -32766,-32766,-32766,-32766,-32766, 390,-32767,-32767,-32767,-32767, |
|
256 | - 106, 107, 108, 109, 110, 742, -447, 240, 569, 551, |
|
257 | - -32766,-32766,-32766, 814, 815, 816, 813, 812, 811, -191, |
|
258 | - -191, -191, 570, 571, 572, 573, 574, 575, 576, 254, |
|
259 | - -32766, 627,-32766,-32766,-32766,-32766, 43, 236, 577, 578, |
|
260 | - 579, 580, 581, 582, 583, 584, 585, 586, 587, 607, |
|
261 | - 608, 609, 610, 611, 599, 600, 601, 602, 603, 588, |
|
262 | - 589, 590, 591, 592, 593, 594, 621, 622, 623, 624, |
|
263 | - 625, 626, 595, 596, 597, 598,-32766, 619, 617, 618, |
|
264 | - 614, 615, 366, 606, 612, 613, 39, -405, -198, 88, |
|
265 | - 89, 90, 269,-32766,-32766, 229, -446, 616, -446, -1, |
|
266 | - 284, 410,-32766,-32766,-32766,-32766, 382, -146, 239, 44, |
|
267 | - 237, 91, 92, 93, 94, 95, 96, 97, 98, 99, |
|
268 | - 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, |
|
269 | - 110, 111, 112, 113, -404, 253, 787, 361, 356, -183, |
|
270 | - -183, -183, 765, 766, 264,-32766,-32766, 114, -405, 953, |
|
271 | - -32766, -447, 629, -447, -403, 420,-32766, 635, 364,-32766, |
|
272 | - -32766,-32766, -405,-32766, -202,-32766, -437,-32766, 975, -405, |
|
273 | - -32766, -408, -219, -147,-32766,-32766,-32766, 366, 282,-32766, |
|
274 | - -32766, 46, 379,-32766, 237, 638,-32766, 419,-32766,-32766, |
|
275 | - -32766,-32766, 127, -183,-32766, -404, 133,-32766,-32766,-32766, |
|
276 | - -32766, 40, 356, 111, 112, 113, 988, 253, 264, -404, |
|
277 | - 517, 629, 373, 975, 146, -403, -404, 939, -407, 114, |
|
278 | - -32766, 635, 135,-32766,-32766,-32766, 629, 771, 144, -403, |
|
279 | - -32766, 772, 143,-32766,-32766,-32766, -403,-32766, 136,-32766, |
|
280 | - 991,-32766, 282, 139,-32766, 286, 919, 132,-32766,-32766, |
|
281 | - -32766, 366, -146,-32766,-32766, 370, 141,-32766, 531, 230, |
|
282 | - -32766, 419,-32766,-32766, 411, 550, 544, 34,-32766, 643, |
|
283 | - 644,-32766,-32766,-32766,-32766, 356, 518, 420, 137, 364, |
|
284 | - 364, 264, 912, 792, 555, 81, -182, -182, -182, 706, |
|
285 | - 286, 302, 374, 696, 635,-32766, 135,-32766,-32766,-32766, |
|
286 | - 255, 629, 506, 507, 253,-32766, 496, 28,-32766,-32766, |
|
287 | - -32766, -437,-32766, 350,-32766, 282,-32766, -219, -147,-32766, |
|
288 | - 142, 310, 637,-32766,-32766,-32766, 366, 22,-32766,-32766, |
|
289 | - 56, 539,-32766, 238, 114,-32766, 419,-32766,-32766, 366, |
|
290 | - -182, -248, 247,-32766, 643, 644,-32766,-32766,-32766,-32766, |
|
291 | - -32766,-32766, -197, 642,-32766,-32766,-32766, 491, 492,-32766, |
|
292 | - -32766,-32766,-32766, 791, 546,-32766, 803, 556,-32766,-32766, |
|
293 | - 514,-32766,-32766,-32766,-32766, 629,-32766,-32766,-32766,-32766, |
|
294 | - -32766, 629,-32766,-32766,-32766, 656,-32766, 456,-32766, 455, |
|
295 | - -32766, 636, 533,-32766, 915, 445, 134,-32766,-32766,-32766, |
|
296 | - 366, 440,-32766,-32766, 366, 630,-32766, 1011, 788,-32766, |
|
297 | - 419,-32766,-32766, 439, 369,-32766,-32766,-32766, 371, 366, |
|
298 | - -32766,-32766,-32766,-32766,-32766,-32766,-32766,-32766, 444, 516, |
|
299 | - -32766,-32766, 683, 684,-32766, 505, 494, 288,-32766,-32766, |
|
300 | - -32766,-32766,-32766, 1006, 629, 287,-32766,-32766,-32766, 497, |
|
301 | - 452,-32766,-32766,-32766, 525,-32766, 509,-32766, 281,-32766, |
|
302 | - 515, 501,-32766, 489, 458, -70,-32766,-32766,-32766, 366, |
|
303 | - 37,-32766,-32766, 226, 502,-32766, 538, 368,-32766, 419, |
|
304 | - -32766,-32766, 388,-32766,-32766,-32766,-32766, 410, 334,-32766, |
|
305 | - -32766,-32766,-32766, 279, 307, 715, 714, 335, 952, 370, |
|
306 | - 278, 1010, 0,-32766,-32766,-32766,-32766, 283,-32766, 0, |
|
307 | - 629, 329, 0, 0,-32766,-32766,-32766,-32766,-32766,-32766, |
|
308 | - 0,-32766, 0,-32766, 36,-32766, -363, 30,-32766, 352, |
|
309 | - 900, 0,-32766,-32766,-32766, 366, 351,-32766,-32766, 339, |
|
310 | - 322,-32766, 235, 449,-32766, 419,-32766,-32766, 708, 366, |
|
311 | - 639, 640,-32766, 797, 694,-32766,-32766,-32766,-32766, 725, |
|
312 | - -32766,-32766, 685,-32766, 796, 799, 798, 687, 727,-32766, |
|
313 | - -32766,-32766,-32766, 675, 736, 735, 729, 744,-32766, 677, |
|
314 | - 688,-32766,-32766, 682, 629, 695, 681, 680,-32766, 641, |
|
315 | - 543,-32766,-32766,-32766, 542,-32766, 49,-32766, 48,-32766, |
|
316 | - 795, 981,-32766, 553, 549, 548,-32766,-32766,-32766, 366, |
|
317 | - 545,-32766,-32766, 541, 540,-32766, 535, 532,-32766, 419, |
|
318 | - -32766,-32766, 530, 554, 883, 87,-32766, 275, 536,-32766, |
|
319 | - -32766,-32766,-32766,-32766, 276, 349, 348, 980, 986, 629, |
|
320 | - 989, 969, 976,-32766, 1012, 534,-32766,-32766,-32766, 646, |
|
321 | - -32766, 645,-32766, 1015,-32766,-32766,-32766,-32766, 1014, 712, |
|
322 | - 648,-32766,-32766,-32766, 366, 804,-32766,-32766, 700, 907, |
|
323 | - -32766, 906, 734,-32766, 419,-32766,-32766, 733, 908, 710, |
|
324 | - 709,-32766, 702, 711,-32766,-32766,-32766,-32766, 45, 115, |
|
325 | - 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, |
|
326 | - 126, 366, 647, 673, 968, 38, -406, -407, 359, 354, |
|
327 | - -32766,-32766,-32766,-32766, 285, -408, -428, 252, 251, 250, |
|
328 | - 249,-32766,-32766,-32766,-32766, 232, 231, 228, 147, 844, |
|
329 | - 846, 145, 138, 86, 85, 84, 83, 82, 80, 54, |
|
330 | - -403, 47, -430, 41, 0, 476, -199, 21, 26, 29, |
|
331 | - 260, 0, 309, 471, 487, 524, 887, 884, 937, 929, |
|
332 | - 522, 391, 387, 385, 383, 25, 24, 23, -198, 0, |
|
333 | - 0, 967, 938, 495, 0, 0, 0, 0, 0, 0, |
|
334 | - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
335 | - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
336 | - 0, -403, 0, 0, 0, 0, 0, 0, 0, 0, |
|
337 | - 0, 0, 0, 0, 0, -403, 0, 0, 0, 0, |
|
338 | - 0, 0, -403 |
|
236 | + 697, 58, 59, 393, 60, 61, -32766, -32766, -32766, -32766, |
|
237 | + 62, 63, 1016, 64, 1018, 1017, -32766, -32766, -32766, -32766, |
|
238 | + -32766, -32766, 108, 109, 110, -32766, -32766, 57, -32766, -32766, |
|
239 | + -32766, -32766, -32766, -32766, -32767, -32767, -32767, -32767, -32767, -32766, |
|
240 | + 975, -32766, -32766, -32766, -32766, -32766, 65, 66, -32766, -32766, |
|
241 | + -32766, 1006, 67, 129, 68, 233, 234, 69, 70, 71, |
|
242 | + 72, 73, 74, 75, 76, 357, 40, 247, 77, 362, |
|
243 | + 394, 0, -32766, 1006, 940, 941, 395, 131, 975, 55, |
|
244 | + 686, 277, 939, 50, 27, 396, 741, 397, 268, 398, |
|
245 | + -32766, 399, 355, -32766, 400, -32766, -32766, -32766, 51, 52, |
|
246 | + 401, 363, 308, 53, 402, 140, -32766, 78, 955, 130, |
|
247 | + 300, 301, 403, 404, 299, -32766, 289, 286, 405, 406, |
|
248 | + 407, 672, 713, 408, 409, 765, 766, 420, 410, 411, |
|
249 | + 364, 945, 946, 947, 948, 942, 943, 256, 420, 42, |
|
250 | + 267, 364, 420, 949, 944, 364, 954, 692, 529, 227, |
|
251 | + 79, -446, 265, -32766, 266, 286, 561, 562, 563, 564, |
|
252 | + 565, 128, 566, 567, 568, 604, 605, -32766, -32766, -32766, |
|
253 | + 33, -193, -193, -193, -32766, 319, 280, 463, 526, 814, |
|
254 | + 815, 816, 813, 812, 811, 806, 381, -32766, 1013, -32766, |
|
255 | + -32766, -32766, -32766, -32766, -32766, 390, -32767, -32767, -32767, -32767, |
|
256 | + 106, 107, 108, 109, 110, 742, -447, 240, 569, 551, |
|
257 | + -32766, -32766, -32766, 814, 815, 816, 813, 812, 811, -191, |
|
258 | + -191, -191, 570, 571, 572, 573, 574, 575, 576, 254, |
|
259 | + -32766, 627, -32766, -32766, -32766, -32766, 43, 236, 577, 578, |
|
260 | + 579, 580, 581, 582, 583, 584, 585, 586, 587, 607, |
|
261 | + 608, 609, 610, 611, 599, 600, 601, 602, 603, 588, |
|
262 | + 589, 590, 591, 592, 593, 594, 621, 622, 623, 624, |
|
263 | + 625, 626, 595, 596, 597, 598, -32766, 619, 617, 618, |
|
264 | + 614, 615, 366, 606, 612, 613, 39, -405, -198, 88, |
|
265 | + 89, 90, 269, -32766, -32766, 229, -446, 616, -446, -1, |
|
266 | + 284, 410, -32766, -32766, -32766, -32766, 382, -146, 239, 44, |
|
267 | + 237, 91, 92, 93, 94, 95, 96, 97, 98, 99, |
|
268 | + 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, |
|
269 | + 110, 111, 112, 113, -404, 253, 787, 361, 356, -183, |
|
270 | + -183, -183, 765, 766, 264, -32766, -32766, 114, -405, 953, |
|
271 | + -32766, -447, 629, -447, -403, 420, -32766, 635, 364, -32766, |
|
272 | + -32766, -32766, -405, -32766, -202, -32766, -437, -32766, 975, -405, |
|
273 | + -32766, -408, -219, -147, -32766, -32766, -32766, 366, 282, -32766, |
|
274 | + -32766, 46, 379, -32766, 237, 638, -32766, 419, -32766, -32766, |
|
275 | + -32766, -32766, 127, -183, -32766, -404, 133, -32766, -32766, -32766, |
|
276 | + -32766, 40, 356, 111, 112, 113, 988, 253, 264, -404, |
|
277 | + 517, 629, 373, 975, 146, -403, -404, 939, -407, 114, |
|
278 | + -32766, 635, 135, -32766, -32766, -32766, 629, 771, 144, -403, |
|
279 | + -32766, 772, 143, -32766, -32766, -32766, -403, -32766, 136, -32766, |
|
280 | + 991, -32766, 282, 139, -32766, 286, 919, 132, -32766, -32766, |
|
281 | + -32766, 366, -146, -32766, -32766, 370, 141, -32766, 531, 230, |
|
282 | + -32766, 419, -32766, -32766, 411, 550, 544, 34, -32766, 643, |
|
283 | + 644, -32766, -32766, -32766, -32766, 356, 518, 420, 137, 364, |
|
284 | + 364, 264, 912, 792, 555, 81, -182, -182, -182, 706, |
|
285 | + 286, 302, 374, 696, 635, -32766, 135, -32766, -32766, -32766, |
|
286 | + 255, 629, 506, 507, 253, -32766, 496, 28, -32766, -32766, |
|
287 | + -32766, -437, -32766, 350, -32766, 282, -32766, -219, -147, -32766, |
|
288 | + 142, 310, 637, -32766, -32766, -32766, 366, 22, -32766, -32766, |
|
289 | + 56, 539, -32766, 238, 114, -32766, 419, -32766, -32766, 366, |
|
290 | + -182, -248, 247, -32766, 643, 644, -32766, -32766, -32766, -32766, |
|
291 | + -32766, -32766, -197, 642, -32766, -32766, -32766, 491, 492, -32766, |
|
292 | + -32766, -32766, -32766, 791, 546, -32766, 803, 556, -32766, -32766, |
|
293 | + 514, -32766, -32766, -32766, -32766, 629, -32766, -32766, -32766, -32766, |
|
294 | + -32766, 629, -32766, -32766, -32766, 656, -32766, 456, -32766, 455, |
|
295 | + -32766, 636, 533, -32766, 915, 445, 134, -32766, -32766, -32766, |
|
296 | + 366, 440, -32766, -32766, 366, 630, -32766, 1011, 788, -32766, |
|
297 | + 419, -32766, -32766, 439, 369, -32766, -32766, -32766, 371, 366, |
|
298 | + -32766, -32766, -32766, -32766, -32766, -32766, -32766, -32766, 444, 516, |
|
299 | + -32766, -32766, 683, 684, -32766, 505, 494, 288, -32766, -32766, |
|
300 | + -32766, -32766, -32766, 1006, 629, 287, -32766, -32766, -32766, 497, |
|
301 | + 452, -32766, -32766, -32766, 525, -32766, 509, -32766, 281, -32766, |
|
302 | + 515, 501, -32766, 489, 458, -70, -32766, -32766, -32766, 366, |
|
303 | + 37, -32766, -32766, 226, 502, -32766, 538, 368, -32766, 419, |
|
304 | + -32766, -32766, 388, -32766, -32766, -32766, -32766, 410, 334, -32766, |
|
305 | + -32766, -32766, -32766, 279, 307, 715, 714, 335, 952, 370, |
|
306 | + 278, 1010, 0, -32766, -32766, -32766, -32766, 283, -32766, 0, |
|
307 | + 629, 329, 0, 0, -32766, -32766, -32766, -32766, -32766, -32766, |
|
308 | + 0, -32766, 0, -32766, 36, -32766, -363, 30, -32766, 352, |
|
309 | + 900, 0, -32766, -32766, -32766, 366, 351, -32766, -32766, 339, |
|
310 | + 322, -32766, 235, 449, -32766, 419, -32766, -32766, 708, 366, |
|
311 | + 639, 640, -32766, 797, 694, -32766, -32766, -32766, -32766, 725, |
|
312 | + -32766, -32766, 685, -32766, 796, 799, 798, 687, 727, -32766, |
|
313 | + -32766, -32766, -32766, 675, 736, 735, 729, 744, -32766, 677, |
|
314 | + 688, -32766, -32766, 682, 629, 695, 681, 680, -32766, 641, |
|
315 | + 543, -32766, -32766, -32766, 542, -32766, 49, -32766, 48, -32766, |
|
316 | + 795, 981, -32766, 553, 549, 548, -32766, -32766, -32766, 366, |
|
317 | + 545, -32766, -32766, 541, 540, -32766, 535, 532, -32766, 419, |
|
318 | + -32766, -32766, 530, 554, 883, 87, -32766, 275, 536, -32766, |
|
319 | + -32766, -32766, -32766, -32766, 276, 349, 348, 980, 986, 629, |
|
320 | + 989, 969, 976, -32766, 1012, 534, -32766, -32766, -32766, 646, |
|
321 | + -32766, 645, -32766, 1015, -32766, -32766, -32766, -32766, 1014, 712, |
|
322 | + 648, -32766, -32766, -32766, 366, 804, -32766, -32766, 700, 907, |
|
323 | + -32766, 906, 734, -32766, 419, -32766, -32766, 733, 908, 710, |
|
324 | + 709, -32766, 702, 711, -32766, -32766, -32766, -32766, 45, 115, |
|
325 | + 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, |
|
326 | + 126, 366, 647, 673, 968, 38, -406, -407, 359, 354, |
|
327 | + -32766, -32766, -32766, -32766, 285, -408, -428, 252, 251, 250, |
|
328 | + 249, -32766, -32766, -32766, -32766, 232, 231, 228, 147, 844, |
|
329 | + 846, 145, 138, 86, 85, 84, 83, 82, 80, 54, |
|
330 | + -403, 47, -430, 41, 0, 476, -199, 21, 26, 29, |
|
331 | + 260, 0, 309, 471, 487, 524, 887, 884, 937, 929, |
|
332 | + 522, 391, 387, 385, 383, 25, 24, 23, -198, 0, |
|
333 | + 0, 967, 938, 495, 0, 0, 0, 0, 0, 0, |
|
334 | + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
335 | + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
336 | + 0, -403, 0, 0, 0, 0, 0, 0, 0, 0, |
|
337 | + 0, 0, 0, 0, 0, -403, 0, 0, 0, 0, |
|
338 | + 0, 0, -403 |
|
339 | 339 | ); |
340 | 340 | |
341 | 341 | protected $actionCheck = array( |
342 | - 1, 2, 3, 4, 5, 6, 8, 9, 10, 67, |
|
343 | - 11, 12, 77, 14, 79, 80, 8, 9, 10, 8, |
|
344 | - 9, 10, 47, 48, 49, 83, 28, 67, 30, 31, |
|
345 | - 32, 33, 34, 35, 36, 37, 38, 39, 40, 28, |
|
346 | - 79, 30, 31, 32, 33, 34, 47, 48, 8, 9, |
|
347 | - 10, 82, 53, 13, 55, 56, 57, 58, 59, 60, |
|
348 | - 61, 62, 63, 64, 65, 123, 67, 68, 69, 70, |
|
349 | - 71, 0, 130, 82, 75, 76, 77, 7, 79, 67, |
|
350 | - 81, 7, 83, 84, 85, 86, 29, 88, 128, 90, |
|
351 | - 67, 92, 7, 151, 95, 8, 9, 10, 99, 100, |
|
352 | - 101, 102, 142, 104, 105, 67, 83, 108, 139, 149, |
|
353 | - 111, 112, 113, 114, 7, 28, 67, 156, 119, 120, |
|
354 | - 121, 122, 123, 124, 125, 130, 131, 143, 129, 130, |
|
355 | - 146, 132, 133, 134, 135, 136, 137, 138, 143, 7, |
|
356 | - 128, 146, 143, 144, 145, 146, 155, 148, 149, 13, |
|
357 | - 151, 7, 153, 130, 155, 156, 2, 3, 4, 5, |
|
358 | - 6, 149, 8, 9, 10, 11, 12, 8, 9, 10, |
|
359 | - 103, 72, 73, 74, 151, 79, 109, 128, 77, 112, |
|
360 | - 113, 114, 115, 116, 117, 118, 29, 28, 150, 30, |
|
361 | - 31, 32, 33, 34, 35, 7, 41, 42, 43, 44, |
|
362 | - 45, 46, 47, 48, 49, 148, 7, 35, 54, 29, |
|
363 | - 8, 9, 10, 112, 113, 114, 115, 116, 117, 72, |
|
364 | - 73, 74, 68, 69, 70, 71, 72, 73, 74, 7, |
|
365 | - 28, 77, 30, 31, 32, 33, 140, 141, 84, 85, |
|
366 | - 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, |
|
367 | - 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, |
|
368 | - 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, |
|
369 | - 116, 117, 118, 119, 120, 121, 1, 123, 124, 125, |
|
370 | - 126, 127, 102, 129, 130, 131, 7, 67, 152, 8, |
|
371 | - 9, 10, 82, 113, 114, 7, 152, 143, 154, 0, |
|
372 | - 7, 129, 122, 123, 124, 125, 149, 7, 7, 28, |
|
373 | - 35, 30, 31, 32, 33, 34, 35, 36, 37, 38, |
|
374 | - 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, |
|
375 | - 49, 50, 51, 52, 67, 54, 148, 7, 103, 96, |
|
376 | - 97, 98, 130, 131, 109, 8, 71, 66, 128, 139, |
|
377 | - 1, 152, 77, 154, 67, 143, 81, 122, 146, 84, |
|
378 | - 85, 86, 142, 88, 152, 90, 7, 92, 79, 149, |
|
379 | - 95, 151, 7, 7, 99, 100, 101, 102, 143, 104, |
|
380 | - 105, 13, 7, 108, 35, 150, 111, 112, 113, 114, |
|
381 | - 8, 9, 15, 150, 119, 128, 15, 122, 123, 124, |
|
382 | - 125, 67, 103, 50, 51, 52, 77, 54, 109, 142, |
|
383 | - 77, 77, 7, 79, 15, 128, 149, 83, 151, 66, |
|
384 | - 71, 122, 147, 148, 149, 1, 77, 152, 15, 142, |
|
385 | - 81, 152, 15, 84, 85, 86, 149, 88, 149, 90, |
|
386 | - 152, 92, 143, 15, 95, 156, 112, 15, 99, 100, |
|
387 | - 101, 102, 152, 104, 105, 146, 29, 108, 149, 35, |
|
388 | - 111, 112, 113, 114, 130, 29, 29, 7, 119, 102, |
|
389 | - 103, 122, 123, 124, 125, 103, 143, 143, 149, 146, |
|
390 | - 146, 109, 152, 150, 29, 151, 96, 97, 98, 35, |
|
391 | - 156, 7, 7, 29, 122, 71, 147, 148, 149, 1, |
|
392 | - 29, 77, 72, 73, 54, 81, 72, 73, 84, 85, |
|
393 | - 86, 152, 88, 146, 90, 143, 92, 152, 152, 95, |
|
394 | - 97, 98, 150, 99, 100, 101, 102, 152, 104, 105, |
|
395 | - 67, 29, 108, 35, 66, 111, 112, 113, 114, 102, |
|
396 | - 150, 79, 68, 119, 102, 103, 122, 123, 124, 125, |
|
397 | - 113, 114, 74, 148, 8, 9, 10, 106, 107, 122, |
|
398 | - 123, 124, 125, 148, 149, 103, 148, 149, 1, 71, |
|
399 | - 74, 109, 148, 149, 28, 77, 30, 31, 32, 81, |
|
400 | - 118, 77, 84, 85, 86, 77, 88, 77, 90, 77, |
|
401 | - 92, 148, 149, 95, 79, 77, 29, 99, 100, 101, |
|
402 | - 102, 77, 104, 105, 102, 77, 108, 77, 148, 111, |
|
403 | - 112, 113, 114, 77, 77, 113, 114, 119, 77, 102, |
|
404 | - 122, 123, 124, 125, 122, 123, 124, 125, 79, 79, |
|
405 | - 113, 114, 148, 148, 1, 79, 79, 82, 71, 122, |
|
406 | - 123, 124, 125, 82, 77, 82, 148, 149, 81, 87, |
|
407 | - 86, 84, 85, 86, 89, 88, 96, 90, 110, 92, |
|
408 | - 91, 93, 95, 109, 94, 94, 99, 100, 101, 102, |
|
409 | - 94, 104, 105, 94, 96, 108, 29, 102, 111, 112, |
|
410 | - 113, 114, 102, 8, 9, 10, 119, 129, 146, 122, |
|
411 | - 123, 124, 125, 127, 142, 123, 123, 146, 139, 146, |
|
412 | - 126, 154, -1, 28, 71, 30, 31, 126, 1, -1, |
|
413 | - 77, 78, -1, -1, 81, 148, 149, 84, 85, 86, |
|
414 | - -1, 88, -1, 90, 142, 92, 142, 142, 95, 146, |
|
415 | - 153, -1, 99, 100, 101, 102, 146, 104, 105, 146, |
|
416 | - 146, 108, 35, 146, 111, 112, 113, 114, 147, 102, |
|
417 | - 148, 148, 119, 148, 148, 122, 123, 124, 125, 148, |
|
418 | - 113, 114, 148, 1, 148, 148, 148, 148, 148, 122, |
|
419 | - 123, 124, 125, 148, 148, 148, 148, 148, 71, 148, |
|
420 | - 148, 148, 149, 148, 77, 148, 148, 148, 81, 148, |
|
421 | - 148, 84, 85, 86, 148, 88, 148, 90, 148, 92, |
|
422 | - 148, 150, 95, 149, 149, 149, 99, 100, 101, 102, |
|
423 | - 149, 104, 105, 149, 149, 108, 149, 149, 111, 112, |
|
424 | - 113, 114, 149, 149, 152, 149, 119, 149, 29, 122, |
|
425 | - 123, 124, 125, 71, 149, 149, 149, 154, 150, 77, |
|
426 | - 150, 150, 150, 81, 150, 150, 84, 85, 86, 150, |
|
427 | - 88, 150, 90, 150, 92, 148, 149, 95, 150, 150, |
|
428 | - 150, 99, 100, 101, 102, 150, 104, 105, 150, 150, |
|
429 | - 108, 150, 150, 111, 112, 113, 114, 150, 150, 150, |
|
430 | - 150, 119, 150, 150, 122, 123, 124, 125, 15, 16, |
|
431 | - 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, |
|
432 | - 27, 102, 150, 150, 154, 151, 151, 151, 151, 151, |
|
433 | - 148, 149, 113, 114, 151, 151, 151, 151, 151, 151, |
|
434 | - 151, 122, 123, 124, 125, 151, 151, 151, 151, 56, |
|
435 | - 57, 151, 151, 151, 151, 151, 151, 151, 151, 151, |
|
436 | - 67, 151, 151, 151, -1, 152, 152, 152, 152, 152, |
|
437 | - 152, -1, 152, 152, 152, 152, 152, 152, 152, 152, |
|
438 | - 152, 152, 152, 152, 152, 152, 152, 152, 152, -1, |
|
439 | - -1, 154, 154, 154, -1, -1, -1, -1, -1, -1, |
|
440 | - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
441 | - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
442 | - -1, 128, -1, -1, -1, -1, -1, -1, -1, -1, |
|
443 | - -1, -1, -1, -1, -1, 142, -1, -1, -1, -1, |
|
444 | - -1, -1, 149 |
|
342 | + 1, 2, 3, 4, 5, 6, 8, 9, 10, 67, |
|
343 | + 11, 12, 77, 14, 79, 80, 8, 9, 10, 8, |
|
344 | + 9, 10, 47, 48, 49, 83, 28, 67, 30, 31, |
|
345 | + 32, 33, 34, 35, 36, 37, 38, 39, 40, 28, |
|
346 | + 79, 30, 31, 32, 33, 34, 47, 48, 8, 9, |
|
347 | + 10, 82, 53, 13, 55, 56, 57, 58, 59, 60, |
|
348 | + 61, 62, 63, 64, 65, 123, 67, 68, 69, 70, |
|
349 | + 71, 0, 130, 82, 75, 76, 77, 7, 79, 67, |
|
350 | + 81, 7, 83, 84, 85, 86, 29, 88, 128, 90, |
|
351 | + 67, 92, 7, 151, 95, 8, 9, 10, 99, 100, |
|
352 | + 101, 102, 142, 104, 105, 67, 83, 108, 139, 149, |
|
353 | + 111, 112, 113, 114, 7, 28, 67, 156, 119, 120, |
|
354 | + 121, 122, 123, 124, 125, 130, 131, 143, 129, 130, |
|
355 | + 146, 132, 133, 134, 135, 136, 137, 138, 143, 7, |
|
356 | + 128, 146, 143, 144, 145, 146, 155, 148, 149, 13, |
|
357 | + 151, 7, 153, 130, 155, 156, 2, 3, 4, 5, |
|
358 | + 6, 149, 8, 9, 10, 11, 12, 8, 9, 10, |
|
359 | + 103, 72, 73, 74, 151, 79, 109, 128, 77, 112, |
|
360 | + 113, 114, 115, 116, 117, 118, 29, 28, 150, 30, |
|
361 | + 31, 32, 33, 34, 35, 7, 41, 42, 43, 44, |
|
362 | + 45, 46, 47, 48, 49, 148, 7, 35, 54, 29, |
|
363 | + 8, 9, 10, 112, 113, 114, 115, 116, 117, 72, |
|
364 | + 73, 74, 68, 69, 70, 71, 72, 73, 74, 7, |
|
365 | + 28, 77, 30, 31, 32, 33, 140, 141, 84, 85, |
|
366 | + 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, |
|
367 | + 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, |
|
368 | + 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, |
|
369 | + 116, 117, 118, 119, 120, 121, 1, 123, 124, 125, |
|
370 | + 126, 127, 102, 129, 130, 131, 7, 67, 152, 8, |
|
371 | + 9, 10, 82, 113, 114, 7, 152, 143, 154, 0, |
|
372 | + 7, 129, 122, 123, 124, 125, 149, 7, 7, 28, |
|
373 | + 35, 30, 31, 32, 33, 34, 35, 36, 37, 38, |
|
374 | + 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, |
|
375 | + 49, 50, 51, 52, 67, 54, 148, 7, 103, 96, |
|
376 | + 97, 98, 130, 131, 109, 8, 71, 66, 128, 139, |
|
377 | + 1, 152, 77, 154, 67, 143, 81, 122, 146, 84, |
|
378 | + 85, 86, 142, 88, 152, 90, 7, 92, 79, 149, |
|
379 | + 95, 151, 7, 7, 99, 100, 101, 102, 143, 104, |
|
380 | + 105, 13, 7, 108, 35, 150, 111, 112, 113, 114, |
|
381 | + 8, 9, 15, 150, 119, 128, 15, 122, 123, 124, |
|
382 | + 125, 67, 103, 50, 51, 52, 77, 54, 109, 142, |
|
383 | + 77, 77, 7, 79, 15, 128, 149, 83, 151, 66, |
|
384 | + 71, 122, 147, 148, 149, 1, 77, 152, 15, 142, |
|
385 | + 81, 152, 15, 84, 85, 86, 149, 88, 149, 90, |
|
386 | + 152, 92, 143, 15, 95, 156, 112, 15, 99, 100, |
|
387 | + 101, 102, 152, 104, 105, 146, 29, 108, 149, 35, |
|
388 | + 111, 112, 113, 114, 130, 29, 29, 7, 119, 102, |
|
389 | + 103, 122, 123, 124, 125, 103, 143, 143, 149, 146, |
|
390 | + 146, 109, 152, 150, 29, 151, 96, 97, 98, 35, |
|
391 | + 156, 7, 7, 29, 122, 71, 147, 148, 149, 1, |
|
392 | + 29, 77, 72, 73, 54, 81, 72, 73, 84, 85, |
|
393 | + 86, 152, 88, 146, 90, 143, 92, 152, 152, 95, |
|
394 | + 97, 98, 150, 99, 100, 101, 102, 152, 104, 105, |
|
395 | + 67, 29, 108, 35, 66, 111, 112, 113, 114, 102, |
|
396 | + 150, 79, 68, 119, 102, 103, 122, 123, 124, 125, |
|
397 | + 113, 114, 74, 148, 8, 9, 10, 106, 107, 122, |
|
398 | + 123, 124, 125, 148, 149, 103, 148, 149, 1, 71, |
|
399 | + 74, 109, 148, 149, 28, 77, 30, 31, 32, 81, |
|
400 | + 118, 77, 84, 85, 86, 77, 88, 77, 90, 77, |
|
401 | + 92, 148, 149, 95, 79, 77, 29, 99, 100, 101, |
|
402 | + 102, 77, 104, 105, 102, 77, 108, 77, 148, 111, |
|
403 | + 112, 113, 114, 77, 77, 113, 114, 119, 77, 102, |
|
404 | + 122, 123, 124, 125, 122, 123, 124, 125, 79, 79, |
|
405 | + 113, 114, 148, 148, 1, 79, 79, 82, 71, 122, |
|
406 | + 123, 124, 125, 82, 77, 82, 148, 149, 81, 87, |
|
407 | + 86, 84, 85, 86, 89, 88, 96, 90, 110, 92, |
|
408 | + 91, 93, 95, 109, 94, 94, 99, 100, 101, 102, |
|
409 | + 94, 104, 105, 94, 96, 108, 29, 102, 111, 112, |
|
410 | + 113, 114, 102, 8, 9, 10, 119, 129, 146, 122, |
|
411 | + 123, 124, 125, 127, 142, 123, 123, 146, 139, 146, |
|
412 | + 126, 154, -1, 28, 71, 30, 31, 126, 1, -1, |
|
413 | + 77, 78, -1, -1, 81, 148, 149, 84, 85, 86, |
|
414 | + -1, 88, -1, 90, 142, 92, 142, 142, 95, 146, |
|
415 | + 153, -1, 99, 100, 101, 102, 146, 104, 105, 146, |
|
416 | + 146, 108, 35, 146, 111, 112, 113, 114, 147, 102, |
|
417 | + 148, 148, 119, 148, 148, 122, 123, 124, 125, 148, |
|
418 | + 113, 114, 148, 1, 148, 148, 148, 148, 148, 122, |
|
419 | + 123, 124, 125, 148, 148, 148, 148, 148, 71, 148, |
|
420 | + 148, 148, 149, 148, 77, 148, 148, 148, 81, 148, |
|
421 | + 148, 84, 85, 86, 148, 88, 148, 90, 148, 92, |
|
422 | + 148, 150, 95, 149, 149, 149, 99, 100, 101, 102, |
|
423 | + 149, 104, 105, 149, 149, 108, 149, 149, 111, 112, |
|
424 | + 113, 114, 149, 149, 152, 149, 119, 149, 29, 122, |
|
425 | + 123, 124, 125, 71, 149, 149, 149, 154, 150, 77, |
|
426 | + 150, 150, 150, 81, 150, 150, 84, 85, 86, 150, |
|
427 | + 88, 150, 90, 150, 92, 148, 149, 95, 150, 150, |
|
428 | + 150, 99, 100, 101, 102, 150, 104, 105, 150, 150, |
|
429 | + 108, 150, 150, 111, 112, 113, 114, 150, 150, 150, |
|
430 | + 150, 119, 150, 150, 122, 123, 124, 125, 15, 16, |
|
431 | + 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, |
|
432 | + 27, 102, 150, 150, 154, 151, 151, 151, 151, 151, |
|
433 | + 148, 149, 113, 114, 151, 151, 151, 151, 151, 151, |
|
434 | + 151, 122, 123, 124, 125, 151, 151, 151, 151, 56, |
|
435 | + 57, 151, 151, 151, 151, 151, 151, 151, 151, 151, |
|
436 | + 67, 151, 151, 151, -1, 152, 152, 152, 152, 152, |
|
437 | + 152, -1, 152, 152, 152, 152, 152, 152, 152, 152, |
|
438 | + 152, 152, 152, 152, 152, 152, 152, 152, 152, -1, |
|
439 | + -1, 154, 154, 154, -1, -1, -1, -1, -1, -1, |
|
440 | + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
441 | + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
442 | + -1, 128, -1, -1, -1, -1, -1, -1, -1, -1, |
|
443 | + -1, -1, -1, -1, -1, 142, -1, -1, -1, -1, |
|
444 | + -1, -1, 149 |
|
445 | 445 | ); |
446 | 446 | |
447 | 447 | protected $actionBase = array( |
448 | - 0, 243, 390, 299, 235, 372, 147, 99, 753, 695, |
|
449 | - 562, 568, 569, 732, 730, 721, 478, 565, 719, 718, |
|
450 | - 715, 647, 502, 437, 180, 437, 799, 517, 517, 517, |
|
451 | - 289, 333, 605, 154, 154, 154, 154, 101, 275, 349, |
|
452 | - 707, 707, 707, 633, 567, 424, 498, 762, 762, 762, |
|
453 | - 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, |
|
454 | - 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, |
|
455 | - 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, |
|
456 | - 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, |
|
457 | - 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, |
|
458 | - 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, |
|
459 | - 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, |
|
460 | - 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, |
|
461 | - 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, |
|
462 | - 762, 762, 762, 762, 762, 762, 762, 762, 57, 619, |
|
463 | - 368, 606, 798, 804, 801, 796, 795, 579, 800, 805, |
|
464 | - 694, 692, 427, 691, 651, 688, 690, 802, 819, 797, |
|
465 | - 803, 281, 281, 281, 281, 281, 281, 281, 281, 281, |
|
466 | - 281, 281, 281, 281, 281, 281, 281, 337, 40, 382, |
|
467 | - 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, |
|
468 | - 8, 8, 8, 8, 8, 8, 8, 8, 87, 87, |
|
469 | - 87, 675, 546, 202, 11, 873, 159, -2, -2, -2, |
|
470 | - -2, -2, 155, 155, 155, 155, 172, 172, 558, 558, |
|
471 | - 474, 334, 334, 334, 334, 334, 334, 334, 334, 334, |
|
472 | - 334, 709, 733, 729, 728, -25, -25, -58, 462, 212, |
|
473 | - 212, 212, 212, 23, -5, -5, 210, -31, -9, 220, |
|
474 | - 267, 353, 353, 353, 367, 563, 555, 329, 329, 559, |
|
475 | - 561, 287, 287, -40, 287, 442, 442, 442, -16, -16, |
|
476 | - -16, -16, 309, -16, -16, -16, 676, 96, 96, -65, |
|
477 | - 578, 727, 415, 560, 722, 12, 199, 144, 590, 583, |
|
478 | - -39, 575, -39, 451, 434, 430, 584, -39, -39, 157, |
|
479 | - 57, 418, 450, 614, 510, 405, 602, 484, 485, 49, |
|
480 | - 443, 375, 678, 603, 793, 300, 672, 359, 288, 38, |
|
481 | - 450, 450, 450, 279, 685, 687, 365, 136, 752, 686, |
|
482 | - 366, 710, 701, 460, 188, 699, 330, 652, 504, 504, |
|
483 | - 504, 504, 504, 504, 454, 504, 524, 754, 754, 512, |
|
484 | - 557, 454, 788, 454, 504, 754, 454, 132, 454, 574, |
|
485 | - 504, 581, 581, 524, 549, 566, 754, 754, 566, 512, |
|
486 | - 454, 646, 642, 554, 601, 471, 471, 554, 454, 471, |
|
487 | - 557, 471, 71, 787, 786, 464, 785, 790, 784, 757, |
|
488 | - 783, 536, 673, 573, 572, 775, 774, 782, 518, 537, |
|
489 | - 776, 792, 597, 641, 541, 377, 585, 463, 755, 575, |
|
490 | - 553, 468, 468, 468, 463, 764, 468, 468, 468, 468, |
|
491 | - 468, 468, 468, 468, 818, 552, 564, 639, 638, 637, |
|
492 | - 432, 635, 594, 570, 381, 668, 597, 597, 577, 528, |
|
493 | - 769, 807, 781, 650, 70, 428, 768, 542, 508, 551, |
|
494 | - 767, 667, 806, 530, 703, 597, 468, 765, 791, 817, |
|
495 | - 750, 756, 683, 812, 222, 593, 632, 293, 547, 665, |
|
496 | - 664, 648, 815, 811, 810, 580, 293, 631, 794, 758, |
|
497 | - 556, 763, 661, 417, 413, 708, 780, 629, 814, 813, |
|
498 | - 816, 628, 627, 656, 655, 399, 777, 436, 496, 626, |
|
499 | - 515, 550, 654, 766, 625, 620, 808, 571, 553, 582, |
|
500 | - 548, 576, 674, 809, 455, 611, 618, 617, 616, 0, |
|
501 | - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
502 | - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
503 | - 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, |
|
504 | - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
505 | - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
506 | - -1, -1, -1, -1, -1, -1, -1, 154, 154, 154, |
|
507 | - 0, 0, 0, 0, 154, -1, -1, -1, -1, -1, |
|
508 | - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
509 | - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
510 | - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
511 | - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
512 | - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
513 | - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
514 | - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
515 | - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
516 | - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
517 | - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
518 | - -1, -1, -1, -1, -1, 281, 281, 281, 281, 281, |
|
519 | - 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, |
|
520 | - 281, 281, 281, 281, 281, 281, 281, 281, 0, 0, |
|
521 | - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
522 | - 0, 0, 0, 0, 281, 281, 281, 281, 281, 281, |
|
523 | - 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, |
|
524 | - 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, |
|
525 | - 281, 281, 0, 281, 281, 281, 281, 281, 281, 353, |
|
526 | - 353, 353, 353, 334, 334, 334, 334, 334, 0, 0, |
|
527 | - 0, 0, 0, 0, 0, 0, 0, 0, 67, 67, |
|
528 | - 67, 67, 353, 353, 334, 67, 504, 504, 504, 504, |
|
529 | - 334, 504, 504, 96, 96, 96, 0, 0, 0, 0, |
|
530 | - 0, 504, 96, 96, -39, -39, 96, 96, 0, 0, |
|
531 | - 0, 0, 504, 504, 504, 504, 504, 504, 504, 504, |
|
532 | - 504, 504, 504, -39, 0, 0, 0, 423, 423, 293, |
|
533 | - 423, 423, 0, 0, 0, 504, 504, 0, 549, 0, |
|
534 | - 0, 0, 0, 754, 0, 0, 0, 0, 0, 468, |
|
535 | - 70, 769, 0, 107, 0, 0, 0, 0, 0, 528, |
|
536 | - 107, 301, 0, 301, 0, 0, 0, 468, 468, 468, |
|
537 | - 0, 528, 528, 0, 0, 74, 528, 0, 74, 85, |
|
538 | - 0, 0, 85, 0, 293 |
|
448 | + 0, 243, 390, 299, 235, 372, 147, 99, 753, 695, |
|
449 | + 562, 568, 569, 732, 730, 721, 478, 565, 719, 718, |
|
450 | + 715, 647, 502, 437, 180, 437, 799, 517, 517, 517, |
|
451 | + 289, 333, 605, 154, 154, 154, 154, 101, 275, 349, |
|
452 | + 707, 707, 707, 633, 567, 424, 498, 762, 762, 762, |
|
453 | + 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, |
|
454 | + 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, |
|
455 | + 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, |
|
456 | + 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, |
|
457 | + 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, |
|
458 | + 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, |
|
459 | + 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, |
|
460 | + 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, |
|
461 | + 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, |
|
462 | + 762, 762, 762, 762, 762, 762, 762, 762, 57, 619, |
|
463 | + 368, 606, 798, 804, 801, 796, 795, 579, 800, 805, |
|
464 | + 694, 692, 427, 691, 651, 688, 690, 802, 819, 797, |
|
465 | + 803, 281, 281, 281, 281, 281, 281, 281, 281, 281, |
|
466 | + 281, 281, 281, 281, 281, 281, 281, 337, 40, 382, |
|
467 | + 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, |
|
468 | + 8, 8, 8, 8, 8, 8, 8, 8, 87, 87, |
|
469 | + 87, 675, 546, 202, 11, 873, 159, -2, -2, -2, |
|
470 | + -2, -2, 155, 155, 155, 155, 172, 172, 558, 558, |
|
471 | + 474, 334, 334, 334, 334, 334, 334, 334, 334, 334, |
|
472 | + 334, 709, 733, 729, 728, -25, -25, -58, 462, 212, |
|
473 | + 212, 212, 212, 23, -5, -5, 210, -31, -9, 220, |
|
474 | + 267, 353, 353, 353, 367, 563, 555, 329, 329, 559, |
|
475 | + 561, 287, 287, -40, 287, 442, 442, 442, -16, -16, |
|
476 | + -16, -16, 309, -16, -16, -16, 676, 96, 96, -65, |
|
477 | + 578, 727, 415, 560, 722, 12, 199, 144, 590, 583, |
|
478 | + -39, 575, -39, 451, 434, 430, 584, -39, -39, 157, |
|
479 | + 57, 418, 450, 614, 510, 405, 602, 484, 485, 49, |
|
480 | + 443, 375, 678, 603, 793, 300, 672, 359, 288, 38, |
|
481 | + 450, 450, 450, 279, 685, 687, 365, 136, 752, 686, |
|
482 | + 366, 710, 701, 460, 188, 699, 330, 652, 504, 504, |
|
483 | + 504, 504, 504, 504, 454, 504, 524, 754, 754, 512, |
|
484 | + 557, 454, 788, 454, 504, 754, 454, 132, 454, 574, |
|
485 | + 504, 581, 581, 524, 549, 566, 754, 754, 566, 512, |
|
486 | + 454, 646, 642, 554, 601, 471, 471, 554, 454, 471, |
|
487 | + 557, 471, 71, 787, 786, 464, 785, 790, 784, 757, |
|
488 | + 783, 536, 673, 573, 572, 775, 774, 782, 518, 537, |
|
489 | + 776, 792, 597, 641, 541, 377, 585, 463, 755, 575, |
|
490 | + 553, 468, 468, 468, 463, 764, 468, 468, 468, 468, |
|
491 | + 468, 468, 468, 468, 818, 552, 564, 639, 638, 637, |
|
492 | + 432, 635, 594, 570, 381, 668, 597, 597, 577, 528, |
|
493 | + 769, 807, 781, 650, 70, 428, 768, 542, 508, 551, |
|
494 | + 767, 667, 806, 530, 703, 597, 468, 765, 791, 817, |
|
495 | + 750, 756, 683, 812, 222, 593, 632, 293, 547, 665, |
|
496 | + 664, 648, 815, 811, 810, 580, 293, 631, 794, 758, |
|
497 | + 556, 763, 661, 417, 413, 708, 780, 629, 814, 813, |
|
498 | + 816, 628, 627, 656, 655, 399, 777, 436, 496, 626, |
|
499 | + 515, 550, 654, 766, 625, 620, 808, 571, 553, 582, |
|
500 | + 548, 576, 674, 809, 455, 611, 618, 617, 616, 0, |
|
501 | + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
502 | + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
503 | + 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, |
|
504 | + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
505 | + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
506 | + -1, -1, -1, -1, -1, -1, -1, 154, 154, 154, |
|
507 | + 0, 0, 0, 0, 154, -1, -1, -1, -1, -1, |
|
508 | + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
509 | + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
510 | + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
511 | + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
512 | + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
513 | + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
514 | + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
515 | + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
516 | + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
517 | + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
518 | + -1, -1, -1, -1, -1, 281, 281, 281, 281, 281, |
|
519 | + 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, |
|
520 | + 281, 281, 281, 281, 281, 281, 281, 281, 0, 0, |
|
521 | + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
522 | + 0, 0, 0, 0, 281, 281, 281, 281, 281, 281, |
|
523 | + 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, |
|
524 | + 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, |
|
525 | + 281, 281, 0, 281, 281, 281, 281, 281, 281, 353, |
|
526 | + 353, 353, 353, 334, 334, 334, 334, 334, 0, 0, |
|
527 | + 0, 0, 0, 0, 0, 0, 0, 0, 67, 67, |
|
528 | + 67, 67, 353, 353, 334, 67, 504, 504, 504, 504, |
|
529 | + 334, 504, 504, 96, 96, 96, 0, 0, 0, 0, |
|
530 | + 0, 504, 96, 96, -39, -39, 96, 96, 0, 0, |
|
531 | + 0, 0, 504, 504, 504, 504, 504, 504, 504, 504, |
|
532 | + 504, 504, 504, -39, 0, 0, 0, 423, 423, 293, |
|
533 | + 423, 423, 0, 0, 0, 504, 504, 0, 549, 0, |
|
534 | + 0, 0, 0, 754, 0, 0, 0, 0, 0, 468, |
|
535 | + 70, 769, 0, 107, 0, 0, 0, 0, 0, 528, |
|
536 | + 107, 301, 0, 301, 0, 0, 0, 468, 468, 468, |
|
537 | + 0, 528, 528, 0, 0, 74, 528, 0, 74, 85, |
|
538 | + 0, 0, 85, 0, 293 |
|
539 | 539 | ); |
540 | 540 | |
541 | 541 | protected $actionDefault = array( |
542 | - 3,32767,32767,32767,32767,32767,32767,32767,32767,32767, |
|
543 | - 32767,32767,32767,32767,32767,32767,32767,32767,32767,32767, |
|
544 | - 32767,32767,32767,32767,32767,32767,32767,32767,32767,32767, |
|
545 | - 32767,32767,32767,32767,32767,32767,32767,32767,32767,32767, |
|
546 | - 440, 440, 400,32767,32767,32767,32767, 266, 266, 266, |
|
547 | - 32767, 401, 401, 401, 401, 401, 401, 401,32767,32767, |
|
548 | - 32767,32767,32767, 345,32767,32767,32767,32767,32767,32767, |
|
549 | - 32767,32767,32767,32767,32767,32767,32767,32767,32767,32767, |
|
550 | - 32767,32767,32767,32767,32767,32767,32767,32767,32767,32767, |
|
551 | - 32767,32767,32767,32767,32767,32767,32767,32767,32767,32767, |
|
552 | - 32767,32767,32767,32767,32767,32767,32767,32767,32767,32767, |
|
553 | - 32767,32767,32767,32767,32767,32767,32767,32767,32767,32767, |
|
554 | - 32767,32767,32767,32767,32767,32767,32767,32767,32767,32767, |
|
555 | - 32767,32767,32767,32767,32767,32767,32767,32767,32767,32767, |
|
556 | - 32767,32767,32767,32767,32767,32767,32767,32767,32767,32767, |
|
557 | - 445,32767,32767,32767,32767,32767,32767,32767,32767,32767, |
|
558 | - 32767,32767,32767,32767,32767,32767,32767,32767,32767,32767, |
|
559 | - 32767, 328, 329, 331, 332, 265, 402, 218, 444, 264, |
|
560 | - 106, 227, 220, 175, 109, 263, 206, 293, 346, 295, |
|
561 | - 344, 348, 294, 270, 275, 276, 277, 278, 279, 280, |
|
562 | - 281, 282, 283, 284, 285, 286, 269, 347, 325, 324, |
|
563 | - 323, 291, 292, 296, 298, 268, 297, 314, 315, 312, |
|
564 | - 313, 316, 317, 318, 319, 320,32767,32767, 439, 439, |
|
565 | - 32767,32767,32767,32767,32767,32767,32767,32767,32767,32767, |
|
566 | - 32767, 250, 250, 250, 250, 305, 306,32767, 251, 210, |
|
567 | - 210, 210, 210,32767, 210,32767,32767,32767,32767, 393, |
|
568 | - 322, 300, 301, 299,32767, 373,32767,32767,32767,32767, |
|
569 | - 375, 288, 290, 368, 271,32767,32767,32767,32767,32767, |
|
570 | - 32767,32767,32767,32767,32767,32767,32767, 374,32767,32767, |
|
571 | - 32767,32767,32767,32767,32767, 370, 403, 403,32767,32767, |
|
572 | - 32767, 362,32767, 144, 194, 196, 378,32767,32767,32767, |
|
573 | - 32767,32767, 310,32767,32767,32767,32767,32767,32767, 452, |
|
574 | - 32767,32767,32767,32767,32767, 403,32767, 403,32767,32767, |
|
575 | - 302, 303, 304,32767,32767,32767, 403, 403,32767,32767, |
|
576 | - 403,32767,32767,32767,32767,32767,32767,32767,32767,32767, |
|
577 | - 32767,32767,32767,32767, 148,32767,32767, 376, 376,32767, |
|
578 | - 32767, 148, 371, 148,32767,32767, 148, 399, 148, 161, |
|
579 | - 32767, 159, 159,32767,32767, 163,32767, 417, 163,32767, |
|
580 | - 148, 180, 180, 354, 150, 212, 212, 354, 148, 212, |
|
581 | - 32767, 212,32767,32767,32767, 72,32767,32767,32767,32767, |
|
582 | - 32767,32767,32767,32767,32767,32767,32767,32767,32767,32767, |
|
583 | - 32767,32767, 364,32767,32767,32767,32767, 394, 415, 362, |
|
584 | - 32767, 308, 309, 311,32767, 405, 333, 334, 335, 336, |
|
585 | - 337, 338, 339, 341,32767, 367,32767,32767,32767,32767, |
|
586 | - 32767,32767, 74, 98, 226,32767, 74, 365,32767,32767, |
|
587 | - 32767,32767,32767,32767, 267,32767,32767, 74,32767, 74, |
|
588 | - 32767,32767,32767,32767, 403, 366, 307, 379, 421,32767, |
|
589 | - 32767, 404,32767,32767, 201, 74,32767, 162,32767,32767, |
|
590 | - 32767,32767,32767,32767,32767,32767, 164,32767, 403,32767, |
|
591 | - 32767,32767,32767,32767, 262,32767,32767,32767,32767,32767, |
|
592 | - 403,32767,32767,32767,32767, 205,32767,32767,32767,32767, |
|
593 | - 32767,32767,32767,32767,32767,32767,32767, 72, 59,32767, |
|
594 | - 244,32767,32767,32767,32767,32767,32767,32767,32767, 111, |
|
595 | - 111, 3, 229, 3, 141, 229, 111, 188, 111, 111, |
|
596 | - 229, 229, 180, 180, 111, 111, 236, 111, 111, 111, |
|
597 | - 111, 111, 111, 111, 111, 111, 111 |
|
542 | + 3, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, |
|
543 | + 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, |
|
544 | + 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, |
|
545 | + 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, |
|
546 | + 440, 440, 400, 32767, 32767, 32767, 32767, 266, 266, 266, |
|
547 | + 32767, 401, 401, 401, 401, 401, 401, 401, 32767, 32767, |
|
548 | + 32767, 32767, 32767, 345, 32767, 32767, 32767, 32767, 32767, 32767, |
|
549 | + 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, |
|
550 | + 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, |
|
551 | + 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, |
|
552 | + 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, |
|
553 | + 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, |
|
554 | + 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, |
|
555 | + 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, |
|
556 | + 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, |
|
557 | + 445, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, |
|
558 | + 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, |
|
559 | + 32767, 328, 329, 331, 332, 265, 402, 218, 444, 264, |
|
560 | + 106, 227, 220, 175, 109, 263, 206, 293, 346, 295, |
|
561 | + 344, 348, 294, 270, 275, 276, 277, 278, 279, 280, |
|
562 | + 281, 282, 283, 284, 285, 286, 269, 347, 325, 324, |
|
563 | + 323, 291, 292, 296, 298, 268, 297, 314, 315, 312, |
|
564 | + 313, 316, 317, 318, 319, 320, 32767, 32767, 439, 439, |
|
565 | + 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, |
|
566 | + 32767, 250, 250, 250, 250, 305, 306, 32767, 251, 210, |
|
567 | + 210, 210, 210, 32767, 210, 32767, 32767, 32767, 32767, 393, |
|
568 | + 322, 300, 301, 299, 32767, 373, 32767, 32767, 32767, 32767, |
|
569 | + 375, 288, 290, 368, 271, 32767, 32767, 32767, 32767, 32767, |
|
570 | + 32767, 32767, 32767, 32767, 32767, 32767, 32767, 374, 32767, 32767, |
|
571 | + 32767, 32767, 32767, 32767, 32767, 370, 403, 403, 32767, 32767, |
|
572 | + 32767, 362, 32767, 144, 194, 196, 378, 32767, 32767, 32767, |
|
573 | + 32767, 32767, 310, 32767, 32767, 32767, 32767, 32767, 32767, 452, |
|
574 | + 32767, 32767, 32767, 32767, 32767, 403, 32767, 403, 32767, 32767, |
|
575 | + 302, 303, 304, 32767, 32767, 32767, 403, 403, 32767, 32767, |
|
576 | + 403, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, |
|
577 | + 32767, 32767, 32767, 32767, 148, 32767, 32767, 376, 376, 32767, |
|
578 | + 32767, 148, 371, 148, 32767, 32767, 148, 399, 148, 161, |
|
579 | + 32767, 159, 159, 32767, 32767, 163, 32767, 417, 163, 32767, |
|
580 | + 148, 180, 180, 354, 150, 212, 212, 354, 148, 212, |
|
581 | + 32767, 212, 32767, 32767, 32767, 72, 32767, 32767, 32767, 32767, |
|
582 | + 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, |
|
583 | + 32767, 32767, 364, 32767, 32767, 32767, 32767, 394, 415, 362, |
|
584 | + 32767, 308, 309, 311, 32767, 405, 333, 334, 335, 336, |
|
585 | + 337, 338, 339, 341, 32767, 367, 32767, 32767, 32767, 32767, |
|
586 | + 32767, 32767, 74, 98, 226, 32767, 74, 365, 32767, 32767, |
|
587 | + 32767, 32767, 32767, 32767, 267, 32767, 32767, 74, 32767, 74, |
|
588 | + 32767, 32767, 32767, 32767, 403, 366, 307, 379, 421, 32767, |
|
589 | + 32767, 404, 32767, 32767, 201, 74, 32767, 162, 32767, 32767, |
|
590 | + 32767, 32767, 32767, 32767, 32767, 32767, 164, 32767, 403, 32767, |
|
591 | + 32767, 32767, 32767, 32767, 262, 32767, 32767, 32767, 32767, 32767, |
|
592 | + 403, 32767, 32767, 32767, 32767, 205, 32767, 32767, 32767, 32767, |
|
593 | + 32767, 32767, 32767, 32767, 32767, 32767, 32767, 72, 59, 32767, |
|
594 | + 244, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 111, |
|
595 | + 111, 3, 229, 3, 141, 229, 111, 188, 111, 111, |
|
596 | + 229, 229, 180, 180, 111, 111, 236, 111, 111, 111, |
|
597 | + 111, 111, 111, 111, 111, 111, 111 |
|
598 | 598 | ); |
599 | 599 | |
600 | 600 | protected $goto = array( |
601 | - 177, 177, 150, 150, 150, 160, 162, 193, 178, 175, |
|
602 | - 175, 175, 175, 176, 176, 176, 176, 176, 176, 176, |
|
603 | - 171, 172, 173, 174, 190, 188, 191, 421, 422, 312, |
|
604 | - 423, 426, 427, 428, 429, 430, 431, 432, 433, 831, |
|
605 | - 151, 152, 153, 154, 155, 156, 157, 158, 159, 161, |
|
606 | - 187, 189, 192, 208, 211, 212, 213, 214, 216, 217, |
|
607 | - 218, 219, 220, 221, 222, 223, 224, 225, 245, 246, |
|
608 | - 261, 262, 263, 330, 331, 332, 466, 194, 195, 196, |
|
609 | - 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, |
|
610 | - 163, 207, 164, 179, 180, 181, 209, 182, 165, 166, |
|
611 | - 167, 183, 168, 210, 148, 184, 185, 169, 186, 170, |
|
612 | - 519, 442, 291, 1005, 1005, 467, 802, 528, 468, 690, |
|
613 | - 513, 800, 446, 446, 446, 1008, 1005, 504, 32, 446, |
|
614 | - 512, 664, 311, 9, 757, 757, 995, 995, 4, 6, |
|
615 | - 5, 10, 11, 1008, 1008, 459, 446, 12, 13, 527, |
|
616 | - 1, 14, 15, 16, 17, 2, 18, 19, 7, 20, |
|
617 | - 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, |
|
618 | - 424, 424, 424, 424, 424, 337, 500, 327, 327, 274, |
|
619 | - 325, 325, 271, 272, 296, 464, 336, 297, 340, 488, |
|
620 | - 774, 916, 633, 633, 633, 446, 446, 457, 475, 446, |
|
621 | - 446, 462, 446, 657, 438, 441, 451, 469, 470, 472, |
|
622 | - 242, 447, 634, 634, 634, 243, 244, 465, 425, 425, |
|
623 | - 425, 425, 425, 425, 425, 425, 425, 425, 425, 425, |
|
624 | - 425, 425, 425, 632, 632, 632, 999, 657, 657, 483, |
|
625 | - 484, 523, 313, 314, 481, 498, 450, 499, 460, 829, |
|
626 | - 917, 743, 728, 726, 724, 726, 537, 436, 752, 747, |
|
627 | - 384, 918, 971, 486, 292, 347, 270, 258, 35, 435, |
|
628 | - 992, 326, 293, 294, 878, 435, 298, 761, 982, 770, |
|
629 | - 341, 320, 653, 323, 778, 651, 547, 650, 650, 658, |
|
630 | - 658, 658, 660, 345, 649, 909, 914, 378, 781, 661, |
|
631 | - 480, 389, 731, 818, 0, 0, 0, 0, 0, 0, |
|
632 | - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
633 | - 0, 0, 0, 0, 0, 0, 920, 0, 764, 764, |
|
634 | - 764, 764, 920, 764, 764, 979, 0, 0, 0, 810, |
|
635 | - 0, 979, 0, 0, 0, 0, 0, 0, 0, 0, |
|
636 | - 0, 0, 0, 0, 0, 990, 990, 722, 722, 722, |
|
637 | - 722, 0, 717, 723, 511, 0, 0, 0, 0, 0, |
|
638 | - 0, 0, 0, 0, 977, 0, 0, 0, 0, 0, |
|
639 | - 0, 0, 0, 0, 0, 0, 0, 0, 780, 0, |
|
640 | - 780, 0, 0, 0, 0, 983, 984 |
|
601 | + 177, 177, 150, 150, 150, 160, 162, 193, 178, 175, |
|
602 | + 175, 175, 175, 176, 176, 176, 176, 176, 176, 176, |
|
603 | + 171, 172, 173, 174, 190, 188, 191, 421, 422, 312, |
|
604 | + 423, 426, 427, 428, 429, 430, 431, 432, 433, 831, |
|
605 | + 151, 152, 153, 154, 155, 156, 157, 158, 159, 161, |
|
606 | + 187, 189, 192, 208, 211, 212, 213, 214, 216, 217, |
|
607 | + 218, 219, 220, 221, 222, 223, 224, 225, 245, 246, |
|
608 | + 261, 262, 263, 330, 331, 332, 466, 194, 195, 196, |
|
609 | + 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, |
|
610 | + 163, 207, 164, 179, 180, 181, 209, 182, 165, 166, |
|
611 | + 167, 183, 168, 210, 148, 184, 185, 169, 186, 170, |
|
612 | + 519, 442, 291, 1005, 1005, 467, 802, 528, 468, 690, |
|
613 | + 513, 800, 446, 446, 446, 1008, 1005, 504, 32, 446, |
|
614 | + 512, 664, 311, 9, 757, 757, 995, 995, 4, 6, |
|
615 | + 5, 10, 11, 1008, 1008, 459, 446, 12, 13, 527, |
|
616 | + 1, 14, 15, 16, 17, 2, 18, 19, 7, 20, |
|
617 | + 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, |
|
618 | + 424, 424, 424, 424, 424, 337, 500, 327, 327, 274, |
|
619 | + 325, 325, 271, 272, 296, 464, 336, 297, 340, 488, |
|
620 | + 774, 916, 633, 633, 633, 446, 446, 457, 475, 446, |
|
621 | + 446, 462, 446, 657, 438, 441, 451, 469, 470, 472, |
|
622 | + 242, 447, 634, 634, 634, 243, 244, 465, 425, 425, |
|
623 | + 425, 425, 425, 425, 425, 425, 425, 425, 425, 425, |
|
624 | + 425, 425, 425, 632, 632, 632, 999, 657, 657, 483, |
|
625 | + 484, 523, 313, 314, 481, 498, 450, 499, 460, 829, |
|
626 | + 917, 743, 728, 726, 724, 726, 537, 436, 752, 747, |
|
627 | + 384, 918, 971, 486, 292, 347, 270, 258, 35, 435, |
|
628 | + 992, 326, 293, 294, 878, 435, 298, 761, 982, 770, |
|
629 | + 341, 320, 653, 323, 778, 651, 547, 650, 650, 658, |
|
630 | + 658, 658, 660, 345, 649, 909, 914, 378, 781, 661, |
|
631 | + 480, 389, 731, 818, 0, 0, 0, 0, 0, 0, |
|
632 | + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
|
633 | + 0, 0, 0, 0, 0, 0, 920, 0, 764, 764, |
|
634 | + 764, 764, 920, 764, 764, 979, 0, 0, 0, 810, |
|
635 | + 0, 979, 0, 0, 0, 0, 0, 0, 0, 0, |
|
636 | + 0, 0, 0, 0, 0, 990, 990, 722, 722, 722, |
|
637 | + 722, 0, 717, 723, 511, 0, 0, 0, 0, 0, |
|
638 | + 0, 0, 0, 0, 977, 0, 0, 0, 0, 0, |
|
639 | + 0, 0, 0, 0, 0, 0, 0, 0, 780, 0, |
|
640 | + 780, 0, 0, 0, 0, 983, 984 |
|
641 | 641 | ); |
642 | 642 | |
643 | 643 | protected $gotoCheck = array( |
644 | - 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, |
|
645 | - 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, |
|
646 | - 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, |
|
647 | - 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, |
|
648 | - 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, |
|
649 | - 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, |
|
650 | - 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, |
|
651 | - 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, |
|
652 | - 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, |
|
653 | - 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, |
|
654 | - 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, |
|
655 | - 48, 7, 60, 118, 118, 6, 6, 6, 74, 41, |
|
656 | - 6, 6, 7, 7, 7, 118, 118, 52, 86, 7, |
|
657 | - 52, 24, 52, 25, 65, 65, 65, 65, 2, 25, |
|
658 | - 2, 25, 25, 118, 118, 7, 7, 25, 25, 4, |
|
659 | - 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, |
|
660 | - 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, |
|
661 | - 107, 107, 107, 107, 107, 42, 42, 42, 42, 42, |
|
662 | - 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, |
|
663 | - 72, 70, 10, 10, 10, 7, 7, 7, 7, 7, |
|
664 | - 7, 109, 7, 18, 35, 35, 35, 35, 35, 35, |
|
665 | - 56, 7, 11, 11, 11, 56, 56, 7, 108, 108, |
|
666 | - 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, |
|
667 | - 108, 108, 108, 9, 9, 9, 117, 18, 18, 51, |
|
668 | - 51, 51, 38, 49, 32, 32, 49, 40, 49, 89, |
|
669 | - 70, 9, 9, 9, 9, 9, 9, 9, 9, 9, |
|
670 | - 49, 70, 70, 58, 58, 58, 106, 106, 49, 103, |
|
671 | - 115, 39, 60, 60, 90, 103, 13, 67, 112, 69, |
|
672 | - 17, 8, 20, 12, 73, 19, 62, 18, 18, 18, |
|
673 | - 18, 18, 18, 16, 18, 96, 98, 54, 75, 21, |
|
674 | - 55, 94, 59, 88, -1, -1, -1, -1, -1, -1, |
|
675 | - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
676 | - -1, -1, -1, -1, -1, -1, 48, -1, 48, 48, |
|
677 | - 48, 48, 48, 48, 48, 74, -1, -1, -1, 86, |
|
678 | - -1, 74, -1, -1, -1, -1, -1, -1, -1, -1, |
|
679 | - -1, -1, -1, -1, -1, 74, 74, 48, 48, 48, |
|
680 | - 48, -1, 48, 48, 48, -1, -1, -1, -1, -1, |
|
681 | - -1, -1, -1, -1, 74, -1, -1, -1, -1, -1, |
|
682 | - -1, -1, -1, -1, -1, -1, -1, -1, 74, -1, |
|
683 | - 74, -1, -1, -1, -1, 74, 74 |
|
644 | + 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, |
|
645 | + 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, |
|
646 | + 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, |
|
647 | + 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, |
|
648 | + 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, |
|
649 | + 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, |
|
650 | + 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, |
|
651 | + 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, |
|
652 | + 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, |
|
653 | + 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, |
|
654 | + 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, |
|
655 | + 48, 7, 60, 118, 118, 6, 6, 6, 74, 41, |
|
656 | + 6, 6, 7, 7, 7, 118, 118, 52, 86, 7, |
|
657 | + 52, 24, 52, 25, 65, 65, 65, 65, 2, 25, |
|
658 | + 2, 25, 25, 118, 118, 7, 7, 25, 25, 4, |
|
659 | + 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, |
|
660 | + 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, |
|
661 | + 107, 107, 107, 107, 107, 42, 42, 42, 42, 42, |
|
662 | + 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, |
|
663 | + 72, 70, 10, 10, 10, 7, 7, 7, 7, 7, |
|
664 | + 7, 109, 7, 18, 35, 35, 35, 35, 35, 35, |
|
665 | + 56, 7, 11, 11, 11, 56, 56, 7, 108, 108, |
|
666 | + 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, |
|
667 | + 108, 108, 108, 9, 9, 9, 117, 18, 18, 51, |
|
668 | + 51, 51, 38, 49, 32, 32, 49, 40, 49, 89, |
|
669 | + 70, 9, 9, 9, 9, 9, 9, 9, 9, 9, |
|
670 | + 49, 70, 70, 58, 58, 58, 106, 106, 49, 103, |
|
671 | + 115, 39, 60, 60, 90, 103, 13, 67, 112, 69, |
|
672 | + 17, 8, 20, 12, 73, 19, 62, 18, 18, 18, |
|
673 | + 18, 18, 18, 16, 18, 96, 98, 54, 75, 21, |
|
674 | + 55, 94, 59, 88, -1, -1, -1, -1, -1, -1, |
|
675 | + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
|
676 | + -1, -1, -1, -1, -1, -1, 48, -1, 48, 48, |
|
677 | + 48, 48, 48, 48, 48, 74, -1, -1, -1, 86, |
|
678 | + -1, 74, -1, -1, -1, -1, -1, -1, -1, -1, |
|
679 | + -1, -1, -1, -1, -1, 74, 74, 48, 48, 48, |
|
680 | + 48, -1, 48, 48, 48, -1, -1, -1, -1, -1, |
|
681 | + -1, -1, -1, -1, 74, -1, -1, -1, -1, -1, |
|
682 | + -1, -1, -1, -1, -1, -1, -1, -1, 74, -1, |
|
683 | + 74, -1, -1, -1, -1, 74, 74 |
|
684 | 684 | ); |
685 | 685 | |
686 | 686 | protected $gotoBase = array( |
687 | - 0, 0, -393, 0, 112, 0, 85, -153, -1, 230, |
|
688 | - 189, 209, -15, 12, 0, 0, -56, 4, -61, -14, |
|
689 | - 5, -74, -38, 0, 97, -397, 0, 0, 0, 0, |
|
690 | - 0, 0, 196, 0, 0, 152, 0, 0, 192, 39, |
|
691 | - 20, 94, -51, 0, 0, 0, 0, 0, 79, -120, |
|
692 | - 0, -11, -259, 0, -75, -78, -325, 0, -16, -77, |
|
693 | - -270, 0, -24, 0, 0, -92, 0, 23, 0, 24, |
|
694 | - -115, 0, 151, -18, 88, -76, 0, 0, 0, 0, |
|
695 | - 0, 0, 0, 0, 0, 0, 91, 0, -87, 19, |
|
696 | - 21, 0, 0, 0, -86, 0, -63, 0, -65, 0, |
|
697 | - 0, 0, 0, 22, 0, 0, 1, -66, -8, 160, |
|
698 | - 0, 0, 10, 0, 0, 41, 0, 194, -144, 0 |
|
687 | + 0, 0, -393, 0, 112, 0, 85, -153, -1, 230, |
|
688 | + 189, 209, -15, 12, 0, 0, -56, 4, -61, -14, |
|
689 | + 5, -74, -38, 0, 97, -397, 0, 0, 0, 0, |
|
690 | + 0, 0, 196, 0, 0, 152, 0, 0, 192, 39, |
|
691 | + 20, 94, -51, 0, 0, 0, 0, 0, 79, -120, |
|
692 | + 0, -11, -259, 0, -75, -78, -325, 0, -16, -77, |
|
693 | + -270, 0, -24, 0, 0, -92, 0, 23, 0, 24, |
|
694 | + -115, 0, 151, -18, 88, -76, 0, 0, 0, 0, |
|
695 | + 0, 0, 0, 0, 0, 0, 91, 0, -87, 19, |
|
696 | + 21, 0, 0, 0, -86, 0, -63, 0, -65, 0, |
|
697 | + 0, 0, 0, 22, 0, 0, 1, -66, -8, 160, |
|
698 | + 0, 0, 10, 0, 0, 41, 0, 194, -144, 0 |
|
699 | 699 | ); |
700 | 700 | |
701 | 701 | protected $gotoDefault = array( |
702 | - -32768, 392, 3, 559, 620, 628, 493, 412, 443, 669, |
|
703 | - 670, 671, 316, 353, 413, 315, 342, 338, 659, 652, |
|
704 | - 654, 662, 149, 343, 665, 8, 667, 304, 674, 305, |
|
705 | - 508, 676, 453, 678, 679, 437, 317, 318, 454, 324, |
|
706 | - 482, 689, 215, 321, 691, 303, 693, 699, 306, 510, |
|
707 | - 490, 473, 503, 414, 375, 479, 241, 461, 477, 730, |
|
708 | - 290, 738, 552, 746, 749, 415, 474, 760, 380, 768, |
|
709 | - 934, 333, 773, 779, 966, 782, 785, 360, 344, 485, |
|
710 | - 789, 790, 31, 794, 520, 521, 809, 248, 817, 830, |
|
711 | - 358, 897, 899, 448, 386, 910, 372, 346, 913, 970, |
|
712 | - 365, 416, 376, 926, 273, 295, 257, 417, 259, 434, |
|
713 | - 998, 418, 377, 973, 328, 993, 367, 1000, 1007, 478 |
|
702 | + -32768, 392, 3, 559, 620, 628, 493, 412, 443, 669, |
|
703 | + 670, 671, 316, 353, 413, 315, 342, 338, 659, 652, |
|
704 | + 654, 662, 149, 343, 665, 8, 667, 304, 674, 305, |
|
705 | + 508, 676, 453, 678, 679, 437, 317, 318, 454, 324, |
|
706 | + 482, 689, 215, 321, 691, 303, 693, 699, 306, 510, |
|
707 | + 490, 473, 503, 414, 375, 479, 241, 461, 477, 730, |
|
708 | + 290, 738, 552, 746, 749, 415, 474, 760, 380, 768, |
|
709 | + 934, 333, 773, 779, 966, 782, 785, 360, 344, 485, |
|
710 | + 789, 790, 31, 794, 520, 521, 809, 248, 817, 830, |
|
711 | + 358, 897, 899, 448, 386, 910, 372, 346, 913, 970, |
|
712 | + 365, 416, 376, 926, 273, 295, 257, 417, 259, 434, |
|
713 | + 998, 418, 377, 973, 328, 993, 367, 1000, 1007, 478 |
|
714 | 714 | ); |
715 | 715 | |
716 | 716 | protected $ruleToNonTerminal = array( |
717 | - 0, 1, 2, 2, 4, 4, 4, 4, 4, 4, |
|
718 | - 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, |
|
719 | - 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, |
|
720 | - 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, |
|
721 | - 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, |
|
722 | - 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, |
|
723 | - 4, 4, 4, 5, 5, 5, 5, 5, 5, 5, |
|
724 | - 6, 6, 7, 7, 8, 3, 3, 3, 3, 3, |
|
725 | - 3, 3, 3, 3, 3, 3, 13, 13, 14, 14, |
|
726 | - 14, 14, 16, 16, 12, 12, 17, 17, 18, 18, |
|
727 | - 19, 19, 20, 20, 15, 15, 21, 23, 23, 24, |
|
728 | - 25, 25, 26, 26, 26, 26, 9, 9, 9, 9, |
|
729 | - 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, |
|
730 | - 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, |
|
731 | - 9, 45, 45, 47, 46, 46, 39, 39, 49, 49, |
|
732 | - 50, 50, 10, 11, 11, 11, 53, 53, 53, 54, |
|
733 | - 54, 57, 57, 55, 55, 58, 58, 33, 33, 41, |
|
734 | - 41, 44, 44, 43, 43, 59, 34, 34, 34, 34, |
|
735 | - 60, 60, 61, 61, 62, 62, 31, 31, 27, 27, |
|
736 | - 63, 29, 29, 64, 28, 28, 30, 30, 40, 40, |
|
737 | - 40, 51, 51, 66, 66, 67, 67, 69, 69, 69, |
|
738 | - 68, 68, 52, 52, 70, 70, 71, 71, 72, 72, |
|
739 | - 72, 36, 36, 73, 37, 37, 75, 75, 56, 56, |
|
740 | - 76, 76, 76, 76, 81, 81, 82, 82, 83, 83, |
|
741 | - 83, 83, 83, 84, 85, 85, 80, 80, 77, 77, |
|
742 | - 79, 79, 87, 87, 86, 86, 86, 86, 86, 86, |
|
743 | - 78, 78, 88, 88, 38, 38, 32, 32, 22, 22, |
|
744 | - 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, |
|
745 | - 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, |
|
746 | - 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, |
|
747 | - 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, |
|
748 | - 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, |
|
749 | - 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, |
|
750 | - 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, |
|
751 | - 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, |
|
752 | - 22, 95, 89, 89, 94, 94, 97, 97, 98, 99, |
|
753 | - 99, 99, 103, 103, 48, 48, 48, 90, 90, 101, |
|
754 | - 101, 91, 91, 93, 93, 93, 96, 96, 107, 107, |
|
755 | - 108, 108, 108, 92, 92, 92, 92, 92, 92, 92, |
|
756 | - 92, 92, 92, 92, 92, 92, 92, 92, 92, 110, |
|
757 | - 110, 35, 35, 105, 105, 105, 100, 100, 100, 111, |
|
758 | - 111, 111, 111, 111, 111, 42, 42, 42, 74, 74, |
|
759 | - 74, 113, 104, 104, 104, 104, 104, 104, 102, 102, |
|
760 | - 102, 112, 112, 112, 65, 114, 114, 115, 115, 115, |
|
761 | - 109, 109, 116, 116, 117, 117, 117, 117, 106, 106, |
|
762 | - 106, 106, 118, 118, 118, 118, 118, 118, 118, 119, |
|
763 | - 119, 119 |
|
717 | + 0, 1, 2, 2, 4, 4, 4, 4, 4, 4, |
|
718 | + 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, |
|
719 | + 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, |
|
720 | + 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, |
|
721 | + 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, |
|
722 | + 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, |
|
723 | + 4, 4, 4, 5, 5, 5, 5, 5, 5, 5, |
|
724 | + 6, 6, 7, 7, 8, 3, 3, 3, 3, 3, |
|
725 | + 3, 3, 3, 3, 3, 3, 13, 13, 14, 14, |
|
726 | + 14, 14, 16, 16, 12, 12, 17, 17, 18, 18, |
|
727 | + 19, 19, 20, 20, 15, 15, 21, 23, 23, 24, |
|
728 | + 25, 25, 26, 26, 26, 26, 9, 9, 9, 9, |
|
729 | + 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, |
|
730 | + 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, |
|
731 | + 9, 45, 45, 47, 46, 46, 39, 39, 49, 49, |
|
732 | + 50, 50, 10, 11, 11, 11, 53, 53, 53, 54, |
|
733 | + 54, 57, 57, 55, 55, 58, 58, 33, 33, 41, |
|
734 | + 41, 44, 44, 43, 43, 59, 34, 34, 34, 34, |
|
735 | + 60, 60, 61, 61, 62, 62, 31, 31, 27, 27, |
|
736 | + 63, 29, 29, 64, 28, 28, 30, 30, 40, 40, |
|
737 | + 40, 51, 51, 66, 66, 67, 67, 69, 69, 69, |
|
738 | + 68, 68, 52, 52, 70, 70, 71, 71, 72, 72, |
|
739 | + 72, 36, 36, 73, 37, 37, 75, 75, 56, 56, |
|
740 | + 76, 76, 76, 76, 81, 81, 82, 82, 83, 83, |
|
741 | + 83, 83, 83, 84, 85, 85, 80, 80, 77, 77, |
|
742 | + 79, 79, 87, 87, 86, 86, 86, 86, 86, 86, |
|
743 | + 78, 78, 88, 88, 38, 38, 32, 32, 22, 22, |
|
744 | + 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, |
|
745 | + 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, |
|
746 | + 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, |
|
747 | + 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, |
|
748 | + 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, |
|
749 | + 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, |
|
750 | + 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, |
|
751 | + 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, |
|
752 | + 22, 95, 89, 89, 94, 94, 97, 97, 98, 99, |
|
753 | + 99, 99, 103, 103, 48, 48, 48, 90, 90, 101, |
|
754 | + 101, 91, 91, 93, 93, 93, 96, 96, 107, 107, |
|
755 | + 108, 108, 108, 92, 92, 92, 92, 92, 92, 92, |
|
756 | + 92, 92, 92, 92, 92, 92, 92, 92, 92, 110, |
|
757 | + 110, 35, 35, 105, 105, 105, 100, 100, 100, 111, |
|
758 | + 111, 111, 111, 111, 111, 42, 42, 42, 74, 74, |
|
759 | + 74, 113, 104, 104, 104, 104, 104, 104, 102, 102, |
|
760 | + 102, 112, 112, 112, 65, 114, 114, 115, 115, 115, |
|
761 | + 109, 109, 116, 116, 117, 117, 117, 117, 106, 106, |
|
762 | + 106, 106, 118, 118, 118, 118, 118, 118, 118, 119, |
|
763 | + 119, 119 |
|
764 | 764 | ); |
765 | 765 | |
766 | 766 | protected $ruleToLength = array( |
767 | - 1, 1, 2, 0, 1, 1, 1, 1, 1, 1, |
|
768 | - 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, |
|
769 | - 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, |
|
770 | - 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, |
|
771 | - 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, |
|
772 | - 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, |
|
773 | - 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, |
|
774 | - 1, 1, 1, 3, 1, 1, 1, 1, 1, 3, |
|
775 | - 5, 4, 3, 4, 2, 3, 1, 1, 7, 8, |
|
776 | - 6, 7, 3, 1, 3, 1, 3, 1, 1, 3, |
|
777 | - 1, 2, 1, 2, 3, 1, 3, 3, 1, 3, |
|
778 | - 2, 0, 1, 1, 1, 1, 3, 7, 10, 5, |
|
779 | - 7, 9, 5, 3, 3, 3, 3, 3, 3, 1, |
|
780 | - 2, 5, 7, 9, 5, 1, 6, 3, 3, 2, |
|
781 | - 1, 0, 2, 8, 0, 4, 1, 3, 0, 1, |
|
782 | - 0, 1, 10, 7, 6, 5, 1, 2, 2, 0, |
|
783 | - 2, 0, 2, 0, 2, 1, 3, 1, 4, 1, |
|
784 | - 4, 1, 4, 1, 3, 3, 3, 4, 4, 5, |
|
785 | - 0, 2, 4, 3, 1, 1, 1, 4, 0, 2, |
|
786 | - 5, 0, 2, 6, 0, 2, 0, 3, 1, 2, |
|
787 | - 1, 1, 0, 1, 3, 4, 6, 1, 1, 1, |
|
788 | - 0, 1, 0, 2, 2, 3, 1, 3, 1, 2, |
|
789 | - 2, 3, 1, 1, 3, 1, 1, 3, 2, 0, |
|
790 | - 3, 3, 9, 3, 1, 3, 0, 2, 4, 5, |
|
791 | - 4, 4, 4, 3, 1, 1, 1, 3, 1, 1, |
|
792 | - 0, 1, 1, 2, 1, 1, 1, 1, 1, 1, |
|
793 | - 1, 3, 1, 3, 3, 1, 0, 1, 1, 3, |
|
794 | - 3, 4, 4, 1, 2, 3, 3, 3, 3, 3, |
|
795 | - 3, 3, 3, 3, 3, 3, 3, 2, 2, 2, |
|
796 | - 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, |
|
797 | - 3, 3, 3, 3, 3, 3, 3, 3, 2, 2, |
|
798 | - 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, |
|
799 | - 3, 3, 3, 5, 4, 3, 4, 4, 2, 2, |
|
800 | - 4, 2, 2, 2, 2, 2, 2, 2, 2, 2, |
|
801 | - 2, 2, 1, 3, 2, 1, 2, 4, 2, 10, |
|
802 | - 11, 7, 3, 2, 0, 4, 1, 3, 2, 2, |
|
803 | - 2, 4, 1, 1, 1, 2, 3, 1, 1, 1, |
|
804 | - 1, 0, 3, 0, 1, 1, 0, 1, 1, 3, |
|
805 | - 4, 3, 1, 1, 1, 1, 1, 1, 1, 1, |
|
806 | - 1, 1, 1, 1, 1, 3, 2, 3, 3, 0, |
|
807 | - 1, 0, 1, 1, 3, 1, 1, 3, 1, 1, |
|
808 | - 4, 4, 4, 1, 4, 1, 1, 3, 1, 4, |
|
809 | - 2, 3, 1, 4, 4, 3, 3, 3, 1, 3, |
|
810 | - 1, 1, 3, 1, 4, 3, 1, 1, 1, 0, |
|
811 | - 0, 2, 3, 1, 3, 1, 4, 2, 2, 2, |
|
812 | - 1, 2, 1, 4, 3, 3, 3, 6, 3, 1, |
|
813 | - 1, 1 |
|
767 | + 1, 1, 2, 0, 1, 1, 1, 1, 1, 1, |
|
768 | + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, |
|
769 | + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, |
|
770 | + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, |
|
771 | + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, |
|
772 | + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, |
|
773 | + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, |
|
774 | + 1, 1, 1, 3, 1, 1, 1, 1, 1, 3, |
|
775 | + 5, 4, 3, 4, 2, 3, 1, 1, 7, 8, |
|
776 | + 6, 7, 3, 1, 3, 1, 3, 1, 1, 3, |
|
777 | + 1, 2, 1, 2, 3, 1, 3, 3, 1, 3, |
|
778 | + 2, 0, 1, 1, 1, 1, 3, 7, 10, 5, |
|
779 | + 7, 9, 5, 3, 3, 3, 3, 3, 3, 1, |
|
780 | + 2, 5, 7, 9, 5, 1, 6, 3, 3, 2, |
|
781 | + 1, 0, 2, 8, 0, 4, 1, 3, 0, 1, |
|
782 | + 0, 1, 10, 7, 6, 5, 1, 2, 2, 0, |
|
783 | + 2, 0, 2, 0, 2, 1, 3, 1, 4, 1, |
|
784 | + 4, 1, 4, 1, 3, 3, 3, 4, 4, 5, |
|
785 | + 0, 2, 4, 3, 1, 1, 1, 4, 0, 2, |
|
786 | + 5, 0, 2, 6, 0, 2, 0, 3, 1, 2, |
|
787 | + 1, 1, 0, 1, 3, 4, 6, 1, 1, 1, |
|
788 | + 0, 1, 0, 2, 2, 3, 1, 3, 1, 2, |
|
789 | + 2, 3, 1, 1, 3, 1, 1, 3, 2, 0, |
|
790 | + 3, 3, 9, 3, 1, 3, 0, 2, 4, 5, |
|
791 | + 4, 4, 4, 3, 1, 1, 1, 3, 1, 1, |
|
792 | + 0, 1, 1, 2, 1, 1, 1, 1, 1, 1, |
|
793 | + 1, 3, 1, 3, 3, 1, 0, 1, 1, 3, |
|
794 | + 3, 4, 4, 1, 2, 3, 3, 3, 3, 3, |
|
795 | + 3, 3, 3, 3, 3, 3, 3, 2, 2, 2, |
|
796 | + 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, |
|
797 | + 3, 3, 3, 3, 3, 3, 3, 3, 2, 2, |
|
798 | + 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, |
|
799 | + 3, 3, 3, 5, 4, 3, 4, 4, 2, 2, |
|
800 | + 4, 2, 2, 2, 2, 2, 2, 2, 2, 2, |
|
801 | + 2, 2, 1, 3, 2, 1, 2, 4, 2, 10, |
|
802 | + 11, 7, 3, 2, 0, 4, 1, 3, 2, 2, |
|
803 | + 2, 4, 1, 1, 1, 2, 3, 1, 1, 1, |
|
804 | + 1, 0, 3, 0, 1, 1, 0, 1, 1, 3, |
|
805 | + 4, 3, 1, 1, 1, 1, 1, 1, 1, 1, |
|
806 | + 1, 1, 1, 1, 1, 3, 2, 3, 3, 0, |
|
807 | + 1, 0, 1, 1, 3, 1, 1, 3, 1, 1, |
|
808 | + 4, 4, 4, 1, 4, 1, 1, 3, 1, 4, |
|
809 | + 2, 3, 1, 4, 4, 3, 3, 3, 1, 3, |
|
810 | + 1, 1, 3, 1, 4, 3, 1, 1, 1, 0, |
|
811 | + 0, 2, 3, 1, 3, 1, 4, 2, 2, 2, |
|
812 | + 1, 2, 1, 4, 3, 3, 3, 6, 3, 1, |
|
813 | + 1, 1 |
|
814 | 814 | ); |
815 | 815 | |
816 | 816 | protected function reduceRule0() { |
@@ -818,11 +818,11 @@ discard block |
||
818 | 818 | } |
819 | 819 | |
820 | 820 | protected function reduceRule1() { |
821 | - $this->semValue = $this->handleNamespaces($this->semStack[$this->stackPos-(1-1)]); |
|
821 | + $this->semValue = $this->handleNamespaces($this->semStack[$this->stackPos - (1 - 1)]); |
|
822 | 822 | } |
823 | 823 | |
824 | 824 | protected function reduceRule2() { |
825 | - if (is_array($this->semStack[$this->stackPos-(2-2)])) { $this->semValue = array_merge($this->semStack[$this->stackPos-(2-1)], $this->semStack[$this->stackPos-(2-2)]); } else { $this->semStack[$this->stackPos-(2-1)][] = $this->semStack[$this->stackPos-(2-2)]; $this->semValue = $this->semStack[$this->stackPos-(2-1)]; }; |
|
825 | + if (is_array($this->semStack[$this->stackPos - (2 - 2)])) { $this->semValue = array_merge($this->semStack[$this->stackPos - (2 - 1)], $this->semStack[$this->stackPos - (2 - 2)]); } else { $this->semStack[$this->stackPos - (2 - 1)][] = $this->semStack[$this->stackPos - (2 - 2)]; $this->semValue = $this->semStack[$this->stackPos - (2 - 1)]; }; |
|
826 | 826 | } |
827 | 827 | |
828 | 828 | protected function reduceRule3() { |
@@ -1094,67 +1094,67 @@ discard block |
||
1094 | 1094 | } |
1095 | 1095 | |
1096 | 1096 | protected function reduceRule70() { |
1097 | - $this->semValue = $this->semStack[$this->stackPos-(1-1)]; |
|
1097 | + $this->semValue = $this->semStack[$this->stackPos - (1 - 1)]; |
|
1098 | 1098 | } |
1099 | 1099 | |
1100 | 1100 | protected function reduceRule71() { |
1101 | - $this->semValue = $this->semStack[$this->stackPos-(1-1)]; |
|
1101 | + $this->semValue = $this->semStack[$this->stackPos - (1 - 1)]; |
|
1102 | 1102 | } |
1103 | 1103 | |
1104 | 1104 | protected function reduceRule72() { |
1105 | - $this->semValue = array($this->semStack[$this->stackPos-(1-1)]); |
|
1105 | + $this->semValue = array($this->semStack[$this->stackPos - (1 - 1)]); |
|
1106 | 1106 | } |
1107 | 1107 | |
1108 | 1108 | protected function reduceRule73() { |
1109 | - $this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)]; |
|
1109 | + $this->semStack[$this->stackPos - (3 - 1)][] = $this->semStack[$this->stackPos - (3 - 3)]; $this->semValue = $this->semStack[$this->stackPos - (3 - 1)]; |
|
1110 | 1110 | } |
1111 | 1111 | |
1112 | 1112 | protected function reduceRule74() { |
1113 | - $this->semValue = new Name($this->semStack[$this->stackPos-(1-1)], $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes); |
|
1113 | + $this->semValue = new Name($this->semStack[$this->stackPos - (1 - 1)], $this->startAttributeStack[$this->stackPos - (1 - 1)] + $this->endAttributes); |
|
1114 | 1114 | } |
1115 | 1115 | |
1116 | 1116 | protected function reduceRule75() { |
1117 | - $this->semValue = $this->semStack[$this->stackPos-(1-1)]; |
|
1117 | + $this->semValue = $this->semStack[$this->stackPos - (1 - 1)]; |
|
1118 | 1118 | } |
1119 | 1119 | |
1120 | 1120 | protected function reduceRule76() { |
1121 | - $this->semValue = $this->semStack[$this->stackPos-(1-1)]; |
|
1121 | + $this->semValue = $this->semStack[$this->stackPos - (1 - 1)]; |
|
1122 | 1122 | } |
1123 | 1123 | |
1124 | 1124 | protected function reduceRule77() { |
1125 | - $this->semValue = $this->semStack[$this->stackPos-(1-1)]; |
|
1125 | + $this->semValue = $this->semStack[$this->stackPos - (1 - 1)]; |
|
1126 | 1126 | } |
1127 | 1127 | |
1128 | 1128 | protected function reduceRule78() { |
1129 | - $this->semValue = new Stmt\HaltCompiler($this->lexer->handleHaltCompiler(), $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes); |
|
1129 | + $this->semValue = new Stmt\HaltCompiler($this->lexer->handleHaltCompiler(), $this->startAttributeStack[$this->stackPos - (1 - 1)] + $this->endAttributes); |
|
1130 | 1130 | } |
1131 | 1131 | |
1132 | 1132 | protected function reduceRule79() { |
1133 | - $this->semValue = new Stmt\Namespace_($this->semStack[$this->stackPos-(3-2)], null, $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
1133 | + $this->semValue = new Stmt\Namespace_($this->semStack[$this->stackPos - (3 - 2)], null, $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
1134 | 1134 | } |
1135 | 1135 | |
1136 | 1136 | protected function reduceRule80() { |
1137 | - $this->semValue = new Stmt\Namespace_($this->semStack[$this->stackPos-(5-2)], $this->semStack[$this->stackPos-(5-4)], $this->startAttributeStack[$this->stackPos-(5-1)] + $this->endAttributes); |
|
1137 | + $this->semValue = new Stmt\Namespace_($this->semStack[$this->stackPos - (5 - 2)], $this->semStack[$this->stackPos - (5 - 4)], $this->startAttributeStack[$this->stackPos - (5 - 1)] + $this->endAttributes); |
|
1138 | 1138 | } |
1139 | 1139 | |
1140 | 1140 | protected function reduceRule81() { |
1141 | - $this->semValue = new Stmt\Namespace_(null, $this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes); |
|
1141 | + $this->semValue = new Stmt\Namespace_(null, $this->semStack[$this->stackPos - (4 - 3)], $this->startAttributeStack[$this->stackPos - (4 - 1)] + $this->endAttributes); |
|
1142 | 1142 | } |
1143 | 1143 | |
1144 | 1144 | protected function reduceRule82() { |
1145 | - $this->semValue = new Stmt\Use_($this->semStack[$this->stackPos-(3-2)], Stmt\Use_::TYPE_NORMAL, $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
1145 | + $this->semValue = new Stmt\Use_($this->semStack[$this->stackPos - (3 - 2)], Stmt\Use_::TYPE_NORMAL, $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
1146 | 1146 | } |
1147 | 1147 | |
1148 | 1148 | protected function reduceRule83() { |
1149 | - $this->semValue = new Stmt\Use_($this->semStack[$this->stackPos-(4-3)], $this->semStack[$this->stackPos-(4-2)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes); |
|
1149 | + $this->semValue = new Stmt\Use_($this->semStack[$this->stackPos - (4 - 3)], $this->semStack[$this->stackPos - (4 - 2)], $this->startAttributeStack[$this->stackPos - (4 - 1)] + $this->endAttributes); |
|
1150 | 1150 | } |
1151 | 1151 | |
1152 | 1152 | protected function reduceRule84() { |
1153 | - $this->semValue = $this->semStack[$this->stackPos-(2-1)]; |
|
1153 | + $this->semValue = $this->semStack[$this->stackPos - (2 - 1)]; |
|
1154 | 1154 | } |
1155 | 1155 | |
1156 | 1156 | protected function reduceRule85() { |
1157 | - $this->semValue = new Stmt\Const_($this->semStack[$this->stackPos-(3-2)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
1157 | + $this->semValue = new Stmt\Const_($this->semStack[$this->stackPos - (3 - 2)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
1158 | 1158 | } |
1159 | 1159 | |
1160 | 1160 | protected function reduceRule86() { |
@@ -1166,95 +1166,95 @@ discard block |
||
1166 | 1166 | } |
1167 | 1167 | |
1168 | 1168 | protected function reduceRule88() { |
1169 | - $this->semValue = new Stmt\GroupUse(new Name($this->semStack[$this->stackPos-(7-3)], $this->startAttributeStack[$this->stackPos-(7-1)] + $this->endAttributes), $this->semStack[$this->stackPos-(7-6)], $this->semStack[$this->stackPos-(7-2)], $this->startAttributeStack[$this->stackPos-(7-1)] + $this->endAttributes); |
|
1169 | + $this->semValue = new Stmt\GroupUse(new Name($this->semStack[$this->stackPos - (7 - 3)], $this->startAttributeStack[$this->stackPos - (7 - 1)] + $this->endAttributes), $this->semStack[$this->stackPos - (7 - 6)], $this->semStack[$this->stackPos - (7 - 2)], $this->startAttributeStack[$this->stackPos - (7 - 1)] + $this->endAttributes); |
|
1170 | 1170 | } |
1171 | 1171 | |
1172 | 1172 | protected function reduceRule89() { |
1173 | - $this->semValue = new Stmt\GroupUse(new Name($this->semStack[$this->stackPos-(8-4)], $this->startAttributeStack[$this->stackPos-(8-1)] + $this->endAttributes), $this->semStack[$this->stackPos-(8-7)], $this->semStack[$this->stackPos-(8-2)], $this->startAttributeStack[$this->stackPos-(8-1)] + $this->endAttributes); |
|
1173 | + $this->semValue = new Stmt\GroupUse(new Name($this->semStack[$this->stackPos - (8 - 4)], $this->startAttributeStack[$this->stackPos - (8 - 1)] + $this->endAttributes), $this->semStack[$this->stackPos - (8 - 7)], $this->semStack[$this->stackPos - (8 - 2)], $this->startAttributeStack[$this->stackPos - (8 - 1)] + $this->endAttributes); |
|
1174 | 1174 | } |
1175 | 1175 | |
1176 | 1176 | protected function reduceRule90() { |
1177 | - $this->semValue = new Stmt\GroupUse(new Name($this->semStack[$this->stackPos-(6-2)], $this->startAttributeStack[$this->stackPos-(6-1)] + $this->endAttributes), $this->semStack[$this->stackPos-(6-5)], Stmt\Use_::TYPE_UNKNOWN, $this->startAttributeStack[$this->stackPos-(6-1)] + $this->endAttributes); |
|
1177 | + $this->semValue = new Stmt\GroupUse(new Name($this->semStack[$this->stackPos - (6 - 2)], $this->startAttributeStack[$this->stackPos - (6 - 1)] + $this->endAttributes), $this->semStack[$this->stackPos - (6 - 5)], Stmt\Use_::TYPE_UNKNOWN, $this->startAttributeStack[$this->stackPos - (6 - 1)] + $this->endAttributes); |
|
1178 | 1178 | } |
1179 | 1179 | |
1180 | 1180 | protected function reduceRule91() { |
1181 | - $this->semValue = new Stmt\GroupUse(new Name($this->semStack[$this->stackPos-(7-3)], $this->startAttributeStack[$this->stackPos-(7-1)] + $this->endAttributes), $this->semStack[$this->stackPos-(7-6)], Stmt\Use_::TYPE_UNKNOWN, $this->startAttributeStack[$this->stackPos-(7-1)] + $this->endAttributes); |
|
1181 | + $this->semValue = new Stmt\GroupUse(new Name($this->semStack[$this->stackPos - (7 - 3)], $this->startAttributeStack[$this->stackPos - (7 - 1)] + $this->endAttributes), $this->semStack[$this->stackPos - (7 - 6)], Stmt\Use_::TYPE_UNKNOWN, $this->startAttributeStack[$this->stackPos - (7 - 1)] + $this->endAttributes); |
|
1182 | 1182 | } |
1183 | 1183 | |
1184 | 1184 | protected function reduceRule92() { |
1185 | - $this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)]; |
|
1185 | + $this->semStack[$this->stackPos - (3 - 1)][] = $this->semStack[$this->stackPos - (3 - 3)]; $this->semValue = $this->semStack[$this->stackPos - (3 - 1)]; |
|
1186 | 1186 | } |
1187 | 1187 | |
1188 | 1188 | protected function reduceRule93() { |
1189 | - $this->semValue = array($this->semStack[$this->stackPos-(1-1)]); |
|
1189 | + $this->semValue = array($this->semStack[$this->stackPos - (1 - 1)]); |
|
1190 | 1190 | } |
1191 | 1191 | |
1192 | 1192 | protected function reduceRule94() { |
1193 | - $this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)]; |
|
1193 | + $this->semStack[$this->stackPos - (3 - 1)][] = $this->semStack[$this->stackPos - (3 - 3)]; $this->semValue = $this->semStack[$this->stackPos - (3 - 1)]; |
|
1194 | 1194 | } |
1195 | 1195 | |
1196 | 1196 | protected function reduceRule95() { |
1197 | - $this->semValue = array($this->semStack[$this->stackPos-(1-1)]); |
|
1197 | + $this->semValue = array($this->semStack[$this->stackPos - (1 - 1)]); |
|
1198 | 1198 | } |
1199 | 1199 | |
1200 | 1200 | protected function reduceRule96() { |
1201 | - $this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)]; |
|
1201 | + $this->semStack[$this->stackPos - (3 - 1)][] = $this->semStack[$this->stackPos - (3 - 3)]; $this->semValue = $this->semStack[$this->stackPos - (3 - 1)]; |
|
1202 | 1202 | } |
1203 | 1203 | |
1204 | 1204 | protected function reduceRule97() { |
1205 | - $this->semValue = array($this->semStack[$this->stackPos-(1-1)]); |
|
1205 | + $this->semValue = array($this->semStack[$this->stackPos - (1 - 1)]); |
|
1206 | 1206 | } |
1207 | 1207 | |
1208 | 1208 | protected function reduceRule98() { |
1209 | - $this->semValue = new Stmt\UseUse($this->semStack[$this->stackPos-(1-1)], null, Stmt\Use_::TYPE_UNKNOWN, $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes); |
|
1209 | + $this->semValue = new Stmt\UseUse($this->semStack[$this->stackPos - (1 - 1)], null, Stmt\Use_::TYPE_UNKNOWN, $this->startAttributeStack[$this->stackPos - (1 - 1)] + $this->endAttributes); |
|
1210 | 1210 | } |
1211 | 1211 | |
1212 | 1212 | protected function reduceRule99() { |
1213 | - $this->semValue = new Stmt\UseUse($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], Stmt\Use_::TYPE_UNKNOWN, $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
1213 | + $this->semValue = new Stmt\UseUse($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], Stmt\Use_::TYPE_UNKNOWN, $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
1214 | 1214 | } |
1215 | 1215 | |
1216 | 1216 | protected function reduceRule100() { |
1217 | - $this->semValue = $this->semStack[$this->stackPos-(1-1)]; |
|
1217 | + $this->semValue = $this->semStack[$this->stackPos - (1 - 1)]; |
|
1218 | 1218 | } |
1219 | 1219 | |
1220 | 1220 | protected function reduceRule101() { |
1221 | - $this->semValue = $this->semStack[$this->stackPos-(2-2)]; |
|
1221 | + $this->semValue = $this->semStack[$this->stackPos - (2 - 2)]; |
|
1222 | 1222 | } |
1223 | 1223 | |
1224 | 1224 | protected function reduceRule102() { |
1225 | - $this->semValue = $this->semStack[$this->stackPos-(1-1)]; $this->semValue->type = Stmt\Use_::TYPE_NORMAL; |
|
1225 | + $this->semValue = $this->semStack[$this->stackPos - (1 - 1)]; $this->semValue->type = Stmt\Use_::TYPE_NORMAL; |
|
1226 | 1226 | } |
1227 | 1227 | |
1228 | 1228 | protected function reduceRule103() { |
1229 | - $this->semValue = $this->semStack[$this->stackPos-(2-2)]; $this->semValue->type = $this->semStack[$this->stackPos-(2-1)]; |
|
1229 | + $this->semValue = $this->semStack[$this->stackPos - (2 - 2)]; $this->semValue->type = $this->semStack[$this->stackPos - (2 - 1)]; |
|
1230 | 1230 | } |
1231 | 1231 | |
1232 | 1232 | protected function reduceRule104() { |
1233 | - $this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)]; |
|
1233 | + $this->semStack[$this->stackPos - (3 - 1)][] = $this->semStack[$this->stackPos - (3 - 3)]; $this->semValue = $this->semStack[$this->stackPos - (3 - 1)]; |
|
1234 | 1234 | } |
1235 | 1235 | |
1236 | 1236 | protected function reduceRule105() { |
1237 | - $this->semValue = array($this->semStack[$this->stackPos-(1-1)]); |
|
1237 | + $this->semValue = array($this->semStack[$this->stackPos - (1 - 1)]); |
|
1238 | 1238 | } |
1239 | 1239 | |
1240 | 1240 | protected function reduceRule106() { |
1241 | - $this->semValue = new Node\Const_($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
1241 | + $this->semValue = new Node\Const_($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
1242 | 1242 | } |
1243 | 1243 | |
1244 | 1244 | protected function reduceRule107() { |
1245 | - $this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)]; |
|
1245 | + $this->semStack[$this->stackPos - (3 - 1)][] = $this->semStack[$this->stackPos - (3 - 3)]; $this->semValue = $this->semStack[$this->stackPos - (3 - 1)]; |
|
1246 | 1246 | } |
1247 | 1247 | |
1248 | 1248 | protected function reduceRule108() { |
1249 | - $this->semValue = array($this->semStack[$this->stackPos-(1-1)]); |
|
1249 | + $this->semValue = array($this->semStack[$this->stackPos - (1 - 1)]); |
|
1250 | 1250 | } |
1251 | 1251 | |
1252 | 1252 | protected function reduceRule109() { |
1253 | - $this->semValue = new Node\Const_($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
1253 | + $this->semValue = new Node\Const_($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
1254 | 1254 | } |
1255 | 1255 | |
1256 | 1256 | protected function reduceRule110() { |
1257 | - if (is_array($this->semStack[$this->stackPos-(2-2)])) { $this->semValue = array_merge($this->semStack[$this->stackPos-(2-1)], $this->semStack[$this->stackPos-(2-2)]); } else { $this->semStack[$this->stackPos-(2-1)][] = $this->semStack[$this->stackPos-(2-2)]; $this->semValue = $this->semStack[$this->stackPos-(2-1)]; }; |
|
1257 | + if (is_array($this->semStack[$this->stackPos - (2 - 2)])) { $this->semValue = array_merge($this->semStack[$this->stackPos - (2 - 1)], $this->semStack[$this->stackPos - (2 - 2)]); } else { $this->semStack[$this->stackPos - (2 - 1)][] = $this->semStack[$this->stackPos - (2 - 2)]; $this->semValue = $this->semStack[$this->stackPos - (2 - 1)]; }; |
|
1258 | 1258 | } |
1259 | 1259 | |
1260 | 1260 | protected function reduceRule111() { |
@@ -1262,95 +1262,95 @@ discard block |
||
1262 | 1262 | } |
1263 | 1263 | |
1264 | 1264 | protected function reduceRule112() { |
1265 | - $this->semValue = $this->semStack[$this->stackPos-(1-1)]; |
|
1265 | + $this->semValue = $this->semStack[$this->stackPos - (1 - 1)]; |
|
1266 | 1266 | } |
1267 | 1267 | |
1268 | 1268 | protected function reduceRule113() { |
1269 | - $this->semValue = $this->semStack[$this->stackPos-(1-1)]; |
|
1269 | + $this->semValue = $this->semStack[$this->stackPos - (1 - 1)]; |
|
1270 | 1270 | } |
1271 | 1271 | |
1272 | 1272 | protected function reduceRule114() { |
1273 | - $this->semValue = $this->semStack[$this->stackPos-(1-1)]; |
|
1273 | + $this->semValue = $this->semStack[$this->stackPos - (1 - 1)]; |
|
1274 | 1274 | } |
1275 | 1275 | |
1276 | 1276 | protected function reduceRule115() { |
1277 | - throw new Error('__HALT_COMPILER() can only be used from the outermost scope', $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes); |
|
1277 | + throw new Error('__HALT_COMPILER() can only be used from the outermost scope', $this->startAttributeStack[$this->stackPos - (1 - 1)] + $this->endAttributes); |
|
1278 | 1278 | } |
1279 | 1279 | |
1280 | 1280 | protected function reduceRule116() { |
1281 | - $this->semValue = $this->semStack[$this->stackPos-(3-2)]; |
|
1281 | + $this->semValue = $this->semStack[$this->stackPos - (3 - 2)]; |
|
1282 | 1282 | } |
1283 | 1283 | |
1284 | 1284 | protected function reduceRule117() { |
1285 | - $this->semValue = new Stmt\If_($this->semStack[$this->stackPos-(7-3)], ['stmts' => is_array($this->semStack[$this->stackPos-(7-5)]) ? $this->semStack[$this->stackPos-(7-5)] : array($this->semStack[$this->stackPos-(7-5)]), 'elseifs' => $this->semStack[$this->stackPos-(7-6)], 'else' => $this->semStack[$this->stackPos-(7-7)]], $this->startAttributeStack[$this->stackPos-(7-1)] + $this->endAttributes); |
|
1285 | + $this->semValue = new Stmt\If_($this->semStack[$this->stackPos - (7 - 3)], ['stmts' => is_array($this->semStack[$this->stackPos - (7 - 5)]) ? $this->semStack[$this->stackPos - (7 - 5)] : array($this->semStack[$this->stackPos - (7 - 5)]), 'elseifs' => $this->semStack[$this->stackPos - (7 - 6)], 'else' => $this->semStack[$this->stackPos - (7 - 7)]], $this->startAttributeStack[$this->stackPos - (7 - 1)] + $this->endAttributes); |
|
1286 | 1286 | } |
1287 | 1287 | |
1288 | 1288 | protected function reduceRule118() { |
1289 | - $this->semValue = new Stmt\If_($this->semStack[$this->stackPos-(10-3)], ['stmts' => $this->semStack[$this->stackPos-(10-6)], 'elseifs' => $this->semStack[$this->stackPos-(10-7)], 'else' => $this->semStack[$this->stackPos-(10-8)]], $this->startAttributeStack[$this->stackPos-(10-1)] + $this->endAttributes); |
|
1289 | + $this->semValue = new Stmt\If_($this->semStack[$this->stackPos - (10 - 3)], ['stmts' => $this->semStack[$this->stackPos - (10 - 6)], 'elseifs' => $this->semStack[$this->stackPos - (10 - 7)], 'else' => $this->semStack[$this->stackPos - (10 - 8)]], $this->startAttributeStack[$this->stackPos - (10 - 1)] + $this->endAttributes); |
|
1290 | 1290 | } |
1291 | 1291 | |
1292 | 1292 | protected function reduceRule119() { |
1293 | - $this->semValue = new Stmt\While_($this->semStack[$this->stackPos-(5-3)], $this->semStack[$this->stackPos-(5-5)], $this->startAttributeStack[$this->stackPos-(5-1)] + $this->endAttributes); |
|
1293 | + $this->semValue = new Stmt\While_($this->semStack[$this->stackPos - (5 - 3)], $this->semStack[$this->stackPos - (5 - 5)], $this->startAttributeStack[$this->stackPos - (5 - 1)] + $this->endAttributes); |
|
1294 | 1294 | } |
1295 | 1295 | |
1296 | 1296 | protected function reduceRule120() { |
1297 | - $this->semValue = new Stmt\Do_($this->semStack[$this->stackPos-(7-5)], is_array($this->semStack[$this->stackPos-(7-2)]) ? $this->semStack[$this->stackPos-(7-2)] : array($this->semStack[$this->stackPos-(7-2)]), $this->startAttributeStack[$this->stackPos-(7-1)] + $this->endAttributes); |
|
1297 | + $this->semValue = new Stmt\Do_($this->semStack[$this->stackPos - (7 - 5)], is_array($this->semStack[$this->stackPos - (7 - 2)]) ? $this->semStack[$this->stackPos - (7 - 2)] : array($this->semStack[$this->stackPos - (7 - 2)]), $this->startAttributeStack[$this->stackPos - (7 - 1)] + $this->endAttributes); |
|
1298 | 1298 | } |
1299 | 1299 | |
1300 | 1300 | protected function reduceRule121() { |
1301 | - $this->semValue = new Stmt\For_(['init' => $this->semStack[$this->stackPos-(9-3)], 'cond' => $this->semStack[$this->stackPos-(9-5)], 'loop' => $this->semStack[$this->stackPos-(9-7)], 'stmts' => $this->semStack[$this->stackPos-(9-9)]], $this->startAttributeStack[$this->stackPos-(9-1)] + $this->endAttributes); |
|
1301 | + $this->semValue = new Stmt\For_(['init' => $this->semStack[$this->stackPos - (9 - 3)], 'cond' => $this->semStack[$this->stackPos - (9 - 5)], 'loop' => $this->semStack[$this->stackPos - (9 - 7)], 'stmts' => $this->semStack[$this->stackPos - (9 - 9)]], $this->startAttributeStack[$this->stackPos - (9 - 1)] + $this->endAttributes); |
|
1302 | 1302 | } |
1303 | 1303 | |
1304 | 1304 | protected function reduceRule122() { |
1305 | - $this->semValue = new Stmt\Switch_($this->semStack[$this->stackPos-(5-3)], $this->semStack[$this->stackPos-(5-5)], $this->startAttributeStack[$this->stackPos-(5-1)] + $this->endAttributes); |
|
1305 | + $this->semValue = new Stmt\Switch_($this->semStack[$this->stackPos - (5 - 3)], $this->semStack[$this->stackPos - (5 - 5)], $this->startAttributeStack[$this->stackPos - (5 - 1)] + $this->endAttributes); |
|
1306 | 1306 | } |
1307 | 1307 | |
1308 | 1308 | protected function reduceRule123() { |
1309 | - $this->semValue = new Stmt\Break_($this->semStack[$this->stackPos-(3-2)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
1309 | + $this->semValue = new Stmt\Break_($this->semStack[$this->stackPos - (3 - 2)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
1310 | 1310 | } |
1311 | 1311 | |
1312 | 1312 | protected function reduceRule124() { |
1313 | - $this->semValue = new Stmt\Continue_($this->semStack[$this->stackPos-(3-2)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
1313 | + $this->semValue = new Stmt\Continue_($this->semStack[$this->stackPos - (3 - 2)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
1314 | 1314 | } |
1315 | 1315 | |
1316 | 1316 | protected function reduceRule125() { |
1317 | - $this->semValue = new Stmt\Return_($this->semStack[$this->stackPos-(3-2)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
1317 | + $this->semValue = new Stmt\Return_($this->semStack[$this->stackPos - (3 - 2)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
1318 | 1318 | } |
1319 | 1319 | |
1320 | 1320 | protected function reduceRule126() { |
1321 | - $this->semValue = new Stmt\Global_($this->semStack[$this->stackPos-(3-2)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
1321 | + $this->semValue = new Stmt\Global_($this->semStack[$this->stackPos - (3 - 2)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
1322 | 1322 | } |
1323 | 1323 | |
1324 | 1324 | protected function reduceRule127() { |
1325 | - $this->semValue = new Stmt\Static_($this->semStack[$this->stackPos-(3-2)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
1325 | + $this->semValue = new Stmt\Static_($this->semStack[$this->stackPos - (3 - 2)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
1326 | 1326 | } |
1327 | 1327 | |
1328 | 1328 | protected function reduceRule128() { |
1329 | - $this->semValue = new Stmt\Echo_($this->semStack[$this->stackPos-(3-2)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
1329 | + $this->semValue = new Stmt\Echo_($this->semStack[$this->stackPos - (3 - 2)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
1330 | 1330 | } |
1331 | 1331 | |
1332 | 1332 | protected function reduceRule129() { |
1333 | - $this->semValue = new Stmt\InlineHTML($this->semStack[$this->stackPos-(1-1)], $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes); |
|
1333 | + $this->semValue = new Stmt\InlineHTML($this->semStack[$this->stackPos - (1 - 1)], $this->startAttributeStack[$this->stackPos - (1 - 1)] + $this->endAttributes); |
|
1334 | 1334 | } |
1335 | 1335 | |
1336 | 1336 | protected function reduceRule130() { |
1337 | - $this->semValue = $this->semStack[$this->stackPos-(2-1)]; |
|
1337 | + $this->semValue = $this->semStack[$this->stackPos - (2 - 1)]; |
|
1338 | 1338 | } |
1339 | 1339 | |
1340 | 1340 | protected function reduceRule131() { |
1341 | - $this->semValue = new Stmt\Unset_($this->semStack[$this->stackPos-(5-3)], $this->startAttributeStack[$this->stackPos-(5-1)] + $this->endAttributes); |
|
1341 | + $this->semValue = new Stmt\Unset_($this->semStack[$this->stackPos - (5 - 3)], $this->startAttributeStack[$this->stackPos - (5 - 1)] + $this->endAttributes); |
|
1342 | 1342 | } |
1343 | 1343 | |
1344 | 1344 | protected function reduceRule132() { |
1345 | - $this->semValue = new Stmt\Foreach_($this->semStack[$this->stackPos-(7-3)], $this->semStack[$this->stackPos-(7-5)][0], ['keyVar' => null, 'byRef' => $this->semStack[$this->stackPos-(7-5)][1], 'stmts' => $this->semStack[$this->stackPos-(7-7)]], $this->startAttributeStack[$this->stackPos-(7-1)] + $this->endAttributes); |
|
1345 | + $this->semValue = new Stmt\Foreach_($this->semStack[$this->stackPos - (7 - 3)], $this->semStack[$this->stackPos - (7 - 5)][0], ['keyVar' => null, 'byRef' => $this->semStack[$this->stackPos - (7 - 5)][1], 'stmts' => $this->semStack[$this->stackPos - (7 - 7)]], $this->startAttributeStack[$this->stackPos - (7 - 1)] + $this->endAttributes); |
|
1346 | 1346 | } |
1347 | 1347 | |
1348 | 1348 | protected function reduceRule133() { |
1349 | - $this->semValue = new Stmt\Foreach_($this->semStack[$this->stackPos-(9-3)], $this->semStack[$this->stackPos-(9-7)][0], ['keyVar' => $this->semStack[$this->stackPos-(9-5)], 'byRef' => $this->semStack[$this->stackPos-(9-7)][1], 'stmts' => $this->semStack[$this->stackPos-(9-9)]], $this->startAttributeStack[$this->stackPos-(9-1)] + $this->endAttributes); |
|
1349 | + $this->semValue = new Stmt\Foreach_($this->semStack[$this->stackPos - (9 - 3)], $this->semStack[$this->stackPos - (9 - 7)][0], ['keyVar' => $this->semStack[$this->stackPos - (9 - 5)], 'byRef' => $this->semStack[$this->stackPos - (9 - 7)][1], 'stmts' => $this->semStack[$this->stackPos - (9 - 9)]], $this->startAttributeStack[$this->stackPos - (9 - 1)] + $this->endAttributes); |
|
1350 | 1350 | } |
1351 | 1351 | |
1352 | 1352 | protected function reduceRule134() { |
1353 | - $this->semValue = new Stmt\Declare_($this->semStack[$this->stackPos-(5-3)], $this->semStack[$this->stackPos-(5-5)], $this->startAttributeStack[$this->stackPos-(5-1)] + $this->endAttributes); |
|
1353 | + $this->semValue = new Stmt\Declare_($this->semStack[$this->stackPos - (5 - 3)], $this->semStack[$this->stackPos - (5 - 5)], $this->startAttributeStack[$this->stackPos - (5 - 1)] + $this->endAttributes); |
|
1354 | 1354 | } |
1355 | 1355 | |
1356 | 1356 | protected function reduceRule135() { |
@@ -1358,19 +1358,19 @@ discard block |
||
1358 | 1358 | } |
1359 | 1359 | |
1360 | 1360 | protected function reduceRule136() { |
1361 | - $this->semValue = new Stmt\TryCatch($this->semStack[$this->stackPos-(6-3)], $this->semStack[$this->stackPos-(6-5)], $this->semStack[$this->stackPos-(6-6)], $this->startAttributeStack[$this->stackPos-(6-1)] + $this->endAttributes); |
|
1361 | + $this->semValue = new Stmt\TryCatch($this->semStack[$this->stackPos - (6 - 3)], $this->semStack[$this->stackPos - (6 - 5)], $this->semStack[$this->stackPos - (6 - 6)], $this->startAttributeStack[$this->stackPos - (6 - 1)] + $this->endAttributes); |
|
1362 | 1362 | } |
1363 | 1363 | |
1364 | 1364 | protected function reduceRule137() { |
1365 | - $this->semValue = new Stmt\Throw_($this->semStack[$this->stackPos-(3-2)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
1365 | + $this->semValue = new Stmt\Throw_($this->semStack[$this->stackPos - (3 - 2)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
1366 | 1366 | } |
1367 | 1367 | |
1368 | 1368 | protected function reduceRule138() { |
1369 | - $this->semValue = new Stmt\Goto_($this->semStack[$this->stackPos-(3-2)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
1369 | + $this->semValue = new Stmt\Goto_($this->semStack[$this->stackPos - (3 - 2)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
1370 | 1370 | } |
1371 | 1371 | |
1372 | 1372 | protected function reduceRule139() { |
1373 | - $this->semValue = new Stmt\Label($this->semStack[$this->stackPos-(2-1)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes); |
|
1373 | + $this->semValue = new Stmt\Label($this->semStack[$this->stackPos - (2 - 1)], $this->startAttributeStack[$this->stackPos - (2 - 1)] + $this->endAttributes); |
|
1374 | 1374 | } |
1375 | 1375 | |
1376 | 1376 | protected function reduceRule140() { |
@@ -1382,11 +1382,11 @@ discard block |
||
1382 | 1382 | } |
1383 | 1383 | |
1384 | 1384 | protected function reduceRule142() { |
1385 | - $this->semStack[$this->stackPos-(2-1)][] = $this->semStack[$this->stackPos-(2-2)]; $this->semValue = $this->semStack[$this->stackPos-(2-1)]; |
|
1385 | + $this->semStack[$this->stackPos - (2 - 1)][] = $this->semStack[$this->stackPos - (2 - 2)]; $this->semValue = $this->semStack[$this->stackPos - (2 - 1)]; |
|
1386 | 1386 | } |
1387 | 1387 | |
1388 | 1388 | protected function reduceRule143() { |
1389 | - $this->semValue = new Stmt\Catch_($this->semStack[$this->stackPos-(8-3)], substr($this->semStack[$this->stackPos-(8-4)], 1), $this->semStack[$this->stackPos-(8-7)], $this->startAttributeStack[$this->stackPos-(8-1)] + $this->endAttributes); |
|
1389 | + $this->semValue = new Stmt\Catch_($this->semStack[$this->stackPos - (8 - 3)], substr($this->semStack[$this->stackPos - (8 - 4)], 1), $this->semStack[$this->stackPos - (8 - 7)], $this->startAttributeStack[$this->stackPos - (8 - 1)] + $this->endAttributes); |
|
1390 | 1390 | } |
1391 | 1391 | |
1392 | 1392 | protected function reduceRule144() { |
@@ -1394,15 +1394,15 @@ discard block |
||
1394 | 1394 | } |
1395 | 1395 | |
1396 | 1396 | protected function reduceRule145() { |
1397 | - $this->semValue = $this->semStack[$this->stackPos-(4-3)]; |
|
1397 | + $this->semValue = $this->semStack[$this->stackPos - (4 - 3)]; |
|
1398 | 1398 | } |
1399 | 1399 | |
1400 | 1400 | protected function reduceRule146() { |
1401 | - $this->semValue = array($this->semStack[$this->stackPos-(1-1)]); |
|
1401 | + $this->semValue = array($this->semStack[$this->stackPos - (1 - 1)]); |
|
1402 | 1402 | } |
1403 | 1403 | |
1404 | 1404 | protected function reduceRule147() { |
1405 | - $this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)]; |
|
1405 | + $this->semStack[$this->stackPos - (3 - 1)][] = $this->semStack[$this->stackPos - (3 - 3)]; $this->semValue = $this->semStack[$this->stackPos - (3 - 1)]; |
|
1406 | 1406 | } |
1407 | 1407 | |
1408 | 1408 | protected function reduceRule148() { |
@@ -1422,19 +1422,19 @@ discard block |
||
1422 | 1422 | } |
1423 | 1423 | |
1424 | 1424 | protected function reduceRule152() { |
1425 | - $this->semValue = new Stmt\Function_($this->semStack[$this->stackPos-(10-3)], ['byRef' => $this->semStack[$this->stackPos-(10-2)], 'params' => $this->semStack[$this->stackPos-(10-5)], 'returnType' => $this->semStack[$this->stackPos-(10-7)], 'stmts' => $this->semStack[$this->stackPos-(10-9)]], $this->startAttributeStack[$this->stackPos-(10-1)] + $this->endAttributes); |
|
1425 | + $this->semValue = new Stmt\Function_($this->semStack[$this->stackPos - (10 - 3)], ['byRef' => $this->semStack[$this->stackPos - (10 - 2)], 'params' => $this->semStack[$this->stackPos - (10 - 5)], 'returnType' => $this->semStack[$this->stackPos - (10 - 7)], 'stmts' => $this->semStack[$this->stackPos - (10 - 9)]], $this->startAttributeStack[$this->stackPos - (10 - 1)] + $this->endAttributes); |
|
1426 | 1426 | } |
1427 | 1427 | |
1428 | 1428 | protected function reduceRule153() { |
1429 | - $this->semValue = new Stmt\Class_($this->semStack[$this->stackPos-(7-2)], ['type' => $this->semStack[$this->stackPos-(7-1)], 'extends' => $this->semStack[$this->stackPos-(7-3)], 'implements' => $this->semStack[$this->stackPos-(7-4)], 'stmts' => $this->semStack[$this->stackPos-(7-6)]], $this->startAttributeStack[$this->stackPos-(7-1)] + $this->endAttributes); |
|
1429 | + $this->semValue = new Stmt\Class_($this->semStack[$this->stackPos - (7 - 2)], ['type' => $this->semStack[$this->stackPos - (7 - 1)], 'extends' => $this->semStack[$this->stackPos - (7 - 3)], 'implements' => $this->semStack[$this->stackPos - (7 - 4)], 'stmts' => $this->semStack[$this->stackPos - (7 - 6)]], $this->startAttributeStack[$this->stackPos - (7 - 1)] + $this->endAttributes); |
|
1430 | 1430 | } |
1431 | 1431 | |
1432 | 1432 | protected function reduceRule154() { |
1433 | - $this->semValue = new Stmt\Interface_($this->semStack[$this->stackPos-(6-2)], ['extends' => $this->semStack[$this->stackPos-(6-3)], 'stmts' => $this->semStack[$this->stackPos-(6-5)]], $this->startAttributeStack[$this->stackPos-(6-1)] + $this->endAttributes); |
|
1433 | + $this->semValue = new Stmt\Interface_($this->semStack[$this->stackPos - (6 - 2)], ['extends' => $this->semStack[$this->stackPos - (6 - 3)], 'stmts' => $this->semStack[$this->stackPos - (6 - 5)]], $this->startAttributeStack[$this->stackPos - (6 - 1)] + $this->endAttributes); |
|
1434 | 1434 | } |
1435 | 1435 | |
1436 | 1436 | protected function reduceRule155() { |
1437 | - $this->semValue = new Stmt\Trait_($this->semStack[$this->stackPos-(5-2)], $this->semStack[$this->stackPos-(5-4)], $this->startAttributeStack[$this->stackPos-(5-1)] + $this->endAttributes); |
|
1437 | + $this->semValue = new Stmt\Trait_($this->semStack[$this->stackPos - (5 - 2)], $this->semStack[$this->stackPos - (5 - 4)], $this->startAttributeStack[$this->stackPos - (5 - 1)] + $this->endAttributes); |
|
1438 | 1438 | } |
1439 | 1439 | |
1440 | 1440 | protected function reduceRule156() { |
@@ -1454,7 +1454,7 @@ discard block |
||
1454 | 1454 | } |
1455 | 1455 | |
1456 | 1456 | protected function reduceRule160() { |
1457 | - $this->semValue = $this->semStack[$this->stackPos-(2-2)]; |
|
1457 | + $this->semValue = $this->semStack[$this->stackPos - (2 - 2)]; |
|
1458 | 1458 | } |
1459 | 1459 | |
1460 | 1460 | protected function reduceRule161() { |
@@ -1462,7 +1462,7 @@ discard block |
||
1462 | 1462 | } |
1463 | 1463 | |
1464 | 1464 | protected function reduceRule162() { |
1465 | - $this->semValue = $this->semStack[$this->stackPos-(2-2)]; |
|
1465 | + $this->semValue = $this->semStack[$this->stackPos - (2 - 2)]; |
|
1466 | 1466 | } |
1467 | 1467 | |
1468 | 1468 | protected function reduceRule163() { |
@@ -1470,67 +1470,67 @@ discard block |
||
1470 | 1470 | } |
1471 | 1471 | |
1472 | 1472 | protected function reduceRule164() { |
1473 | - $this->semValue = $this->semStack[$this->stackPos-(2-2)]; |
|
1473 | + $this->semValue = $this->semStack[$this->stackPos - (2 - 2)]; |
|
1474 | 1474 | } |
1475 | 1475 | |
1476 | 1476 | protected function reduceRule165() { |
1477 | - $this->semValue = array($this->semStack[$this->stackPos-(1-1)]); |
|
1477 | + $this->semValue = array($this->semStack[$this->stackPos - (1 - 1)]); |
|
1478 | 1478 | } |
1479 | 1479 | |
1480 | 1480 | protected function reduceRule166() { |
1481 | - $this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)]; |
|
1481 | + $this->semStack[$this->stackPos - (3 - 1)][] = $this->semStack[$this->stackPos - (3 - 3)]; $this->semValue = $this->semStack[$this->stackPos - (3 - 1)]; |
|
1482 | 1482 | } |
1483 | 1483 | |
1484 | 1484 | protected function reduceRule167() { |
1485 | - $this->semValue = is_array($this->semStack[$this->stackPos-(1-1)]) ? $this->semStack[$this->stackPos-(1-1)] : array($this->semStack[$this->stackPos-(1-1)]); |
|
1485 | + $this->semValue = is_array($this->semStack[$this->stackPos - (1 - 1)]) ? $this->semStack[$this->stackPos - (1 - 1)] : array($this->semStack[$this->stackPos - (1 - 1)]); |
|
1486 | 1486 | } |
1487 | 1487 | |
1488 | 1488 | protected function reduceRule168() { |
1489 | - $this->semValue = $this->semStack[$this->stackPos-(4-2)]; |
|
1489 | + $this->semValue = $this->semStack[$this->stackPos - (4 - 2)]; |
|
1490 | 1490 | } |
1491 | 1491 | |
1492 | 1492 | protected function reduceRule169() { |
1493 | - $this->semValue = is_array($this->semStack[$this->stackPos-(1-1)]) ? $this->semStack[$this->stackPos-(1-1)] : array($this->semStack[$this->stackPos-(1-1)]); |
|
1493 | + $this->semValue = is_array($this->semStack[$this->stackPos - (1 - 1)]) ? $this->semStack[$this->stackPos - (1 - 1)] : array($this->semStack[$this->stackPos - (1 - 1)]); |
|
1494 | 1494 | } |
1495 | 1495 | |
1496 | 1496 | protected function reduceRule170() { |
1497 | - $this->semValue = $this->semStack[$this->stackPos-(4-2)]; |
|
1497 | + $this->semValue = $this->semStack[$this->stackPos - (4 - 2)]; |
|
1498 | 1498 | } |
1499 | 1499 | |
1500 | 1500 | protected function reduceRule171() { |
1501 | - $this->semValue = is_array($this->semStack[$this->stackPos-(1-1)]) ? $this->semStack[$this->stackPos-(1-1)] : array($this->semStack[$this->stackPos-(1-1)]); |
|
1501 | + $this->semValue = is_array($this->semStack[$this->stackPos - (1 - 1)]) ? $this->semStack[$this->stackPos - (1 - 1)] : array($this->semStack[$this->stackPos - (1 - 1)]); |
|
1502 | 1502 | } |
1503 | 1503 | |
1504 | 1504 | protected function reduceRule172() { |
1505 | - $this->semValue = $this->semStack[$this->stackPos-(4-2)]; |
|
1505 | + $this->semValue = $this->semStack[$this->stackPos - (4 - 2)]; |
|
1506 | 1506 | } |
1507 | 1507 | |
1508 | 1508 | protected function reduceRule173() { |
1509 | - $this->semValue = array($this->semStack[$this->stackPos-(1-1)]); |
|
1509 | + $this->semValue = array($this->semStack[$this->stackPos - (1 - 1)]); |
|
1510 | 1510 | } |
1511 | 1511 | |
1512 | 1512 | protected function reduceRule174() { |
1513 | - $this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)]; |
|
1513 | + $this->semStack[$this->stackPos - (3 - 1)][] = $this->semStack[$this->stackPos - (3 - 3)]; $this->semValue = $this->semStack[$this->stackPos - (3 - 1)]; |
|
1514 | 1514 | } |
1515 | 1515 | |
1516 | 1516 | protected function reduceRule175() { |
1517 | - $this->semValue = new Stmt\DeclareDeclare($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
1517 | + $this->semValue = new Stmt\DeclareDeclare($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
1518 | 1518 | } |
1519 | 1519 | |
1520 | 1520 | protected function reduceRule176() { |
1521 | - $this->semValue = $this->semStack[$this->stackPos-(3-2)]; |
|
1521 | + $this->semValue = $this->semStack[$this->stackPos - (3 - 2)]; |
|
1522 | 1522 | } |
1523 | 1523 | |
1524 | 1524 | protected function reduceRule177() { |
1525 | - $this->semValue = $this->semStack[$this->stackPos-(4-3)]; |
|
1525 | + $this->semValue = $this->semStack[$this->stackPos - (4 - 3)]; |
|
1526 | 1526 | } |
1527 | 1527 | |
1528 | 1528 | protected function reduceRule178() { |
1529 | - $this->semValue = $this->semStack[$this->stackPos-(4-2)]; |
|
1529 | + $this->semValue = $this->semStack[$this->stackPos - (4 - 2)]; |
|
1530 | 1530 | } |
1531 | 1531 | |
1532 | 1532 | protected function reduceRule179() { |
1533 | - $this->semValue = $this->semStack[$this->stackPos-(5-3)]; |
|
1533 | + $this->semValue = $this->semStack[$this->stackPos - (5 - 3)]; |
|
1534 | 1534 | } |
1535 | 1535 | |
1536 | 1536 | protected function reduceRule180() { |
@@ -1538,15 +1538,15 @@ discard block |
||
1538 | 1538 | } |
1539 | 1539 | |
1540 | 1540 | protected function reduceRule181() { |
1541 | - $this->semStack[$this->stackPos-(2-1)][] = $this->semStack[$this->stackPos-(2-2)]; $this->semValue = $this->semStack[$this->stackPos-(2-1)]; |
|
1541 | + $this->semStack[$this->stackPos - (2 - 1)][] = $this->semStack[$this->stackPos - (2 - 2)]; $this->semValue = $this->semStack[$this->stackPos - (2 - 1)]; |
|
1542 | 1542 | } |
1543 | 1543 | |
1544 | 1544 | protected function reduceRule182() { |
1545 | - $this->semValue = new Stmt\Case_($this->semStack[$this->stackPos-(4-2)], $this->semStack[$this->stackPos-(4-4)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes); |
|
1545 | + $this->semValue = new Stmt\Case_($this->semStack[$this->stackPos - (4 - 2)], $this->semStack[$this->stackPos - (4 - 4)], $this->startAttributeStack[$this->stackPos - (4 - 1)] + $this->endAttributes); |
|
1546 | 1546 | } |
1547 | 1547 | |
1548 | 1548 | protected function reduceRule183() { |
1549 | - $this->semValue = new Stmt\Case_(null, $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
1549 | + $this->semValue = new Stmt\Case_(null, $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
1550 | 1550 | } |
1551 | 1551 | |
1552 | 1552 | protected function reduceRule184() { |
@@ -1558,11 +1558,11 @@ discard block |
||
1558 | 1558 | } |
1559 | 1559 | |
1560 | 1560 | protected function reduceRule186() { |
1561 | - $this->semValue = is_array($this->semStack[$this->stackPos-(1-1)]) ? $this->semStack[$this->stackPos-(1-1)] : array($this->semStack[$this->stackPos-(1-1)]); |
|
1561 | + $this->semValue = is_array($this->semStack[$this->stackPos - (1 - 1)]) ? $this->semStack[$this->stackPos - (1 - 1)] : array($this->semStack[$this->stackPos - (1 - 1)]); |
|
1562 | 1562 | } |
1563 | 1563 | |
1564 | 1564 | protected function reduceRule187() { |
1565 | - $this->semValue = $this->semStack[$this->stackPos-(4-2)]; |
|
1565 | + $this->semValue = $this->semStack[$this->stackPos - (4 - 2)]; |
|
1566 | 1566 | } |
1567 | 1567 | |
1568 | 1568 | protected function reduceRule188() { |
@@ -1570,11 +1570,11 @@ discard block |
||
1570 | 1570 | } |
1571 | 1571 | |
1572 | 1572 | protected function reduceRule189() { |
1573 | - $this->semStack[$this->stackPos-(2-1)][] = $this->semStack[$this->stackPos-(2-2)]; $this->semValue = $this->semStack[$this->stackPos-(2-1)]; |
|
1573 | + $this->semStack[$this->stackPos - (2 - 1)][] = $this->semStack[$this->stackPos - (2 - 2)]; $this->semValue = $this->semStack[$this->stackPos - (2 - 1)]; |
|
1574 | 1574 | } |
1575 | 1575 | |
1576 | 1576 | protected function reduceRule190() { |
1577 | - $this->semValue = new Stmt\ElseIf_($this->semStack[$this->stackPos-(5-3)], is_array($this->semStack[$this->stackPos-(5-5)]) ? $this->semStack[$this->stackPos-(5-5)] : array($this->semStack[$this->stackPos-(5-5)]), $this->startAttributeStack[$this->stackPos-(5-1)] + $this->endAttributes); |
|
1577 | + $this->semValue = new Stmt\ElseIf_($this->semStack[$this->stackPos - (5 - 3)], is_array($this->semStack[$this->stackPos - (5 - 5)]) ? $this->semStack[$this->stackPos - (5 - 5)] : array($this->semStack[$this->stackPos - (5 - 5)]), $this->startAttributeStack[$this->stackPos - (5 - 1)] + $this->endAttributes); |
|
1578 | 1578 | } |
1579 | 1579 | |
1580 | 1580 | protected function reduceRule191() { |
@@ -1582,11 +1582,11 @@ discard block |
||
1582 | 1582 | } |
1583 | 1583 | |
1584 | 1584 | protected function reduceRule192() { |
1585 | - $this->semStack[$this->stackPos-(2-1)][] = $this->semStack[$this->stackPos-(2-2)]; $this->semValue = $this->semStack[$this->stackPos-(2-1)]; |
|
1585 | + $this->semStack[$this->stackPos - (2 - 1)][] = $this->semStack[$this->stackPos - (2 - 2)]; $this->semValue = $this->semStack[$this->stackPos - (2 - 1)]; |
|
1586 | 1586 | } |
1587 | 1587 | |
1588 | 1588 | protected function reduceRule193() { |
1589 | - $this->semValue = new Stmt\ElseIf_($this->semStack[$this->stackPos-(6-3)], $this->semStack[$this->stackPos-(6-6)], $this->startAttributeStack[$this->stackPos-(6-1)] + $this->endAttributes); |
|
1589 | + $this->semValue = new Stmt\ElseIf_($this->semStack[$this->stackPos - (6 - 3)], $this->semStack[$this->stackPos - (6 - 6)], $this->startAttributeStack[$this->stackPos - (6 - 1)] + $this->endAttributes); |
|
1590 | 1590 | } |
1591 | 1591 | |
1592 | 1592 | protected function reduceRule194() { |
@@ -1594,7 +1594,7 @@ discard block |
||
1594 | 1594 | } |
1595 | 1595 | |
1596 | 1596 | protected function reduceRule195() { |
1597 | - $this->semValue = new Stmt\Else_(is_array($this->semStack[$this->stackPos-(2-2)]) ? $this->semStack[$this->stackPos-(2-2)] : array($this->semStack[$this->stackPos-(2-2)]), $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes); |
|
1597 | + $this->semValue = new Stmt\Else_(is_array($this->semStack[$this->stackPos - (2 - 2)]) ? $this->semStack[$this->stackPos - (2 - 2)] : array($this->semStack[$this->stackPos - (2 - 2)]), $this->startAttributeStack[$this->stackPos - (2 - 1)] + $this->endAttributes); |
|
1598 | 1598 | } |
1599 | 1599 | |
1600 | 1600 | protected function reduceRule196() { |
@@ -1602,23 +1602,23 @@ discard block |
||
1602 | 1602 | } |
1603 | 1603 | |
1604 | 1604 | protected function reduceRule197() { |
1605 | - $this->semValue = new Stmt\Else_($this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
1605 | + $this->semValue = new Stmt\Else_($this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
1606 | 1606 | } |
1607 | 1607 | |
1608 | 1608 | protected function reduceRule198() { |
1609 | - $this->semValue = array($this->semStack[$this->stackPos-(1-1)], false); |
|
1609 | + $this->semValue = array($this->semStack[$this->stackPos - (1 - 1)], false); |
|
1610 | 1610 | } |
1611 | 1611 | |
1612 | 1612 | protected function reduceRule199() { |
1613 | - $this->semValue = array($this->semStack[$this->stackPos-(2-2)], true); |
|
1613 | + $this->semValue = array($this->semStack[$this->stackPos - (2 - 2)], true); |
|
1614 | 1614 | } |
1615 | 1615 | |
1616 | 1616 | protected function reduceRule200() { |
1617 | - $this->semValue = array($this->semStack[$this->stackPos-(1-1)], false); |
|
1617 | + $this->semValue = array($this->semStack[$this->stackPos - (1 - 1)], false); |
|
1618 | 1618 | } |
1619 | 1619 | |
1620 | 1620 | protected function reduceRule201() { |
1621 | - $this->semValue = $this->semStack[$this->stackPos-(1-1)]; |
|
1621 | + $this->semValue = $this->semStack[$this->stackPos - (1 - 1)]; |
|
1622 | 1622 | } |
1623 | 1623 | |
1624 | 1624 | protected function reduceRule202() { |
@@ -1626,23 +1626,23 @@ discard block |
||
1626 | 1626 | } |
1627 | 1627 | |
1628 | 1628 | protected function reduceRule203() { |
1629 | - $this->semValue = array($this->semStack[$this->stackPos-(1-1)]); |
|
1629 | + $this->semValue = array($this->semStack[$this->stackPos - (1 - 1)]); |
|
1630 | 1630 | } |
1631 | 1631 | |
1632 | 1632 | protected function reduceRule204() { |
1633 | - $this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)]; |
|
1633 | + $this->semStack[$this->stackPos - (3 - 1)][] = $this->semStack[$this->stackPos - (3 - 3)]; $this->semValue = $this->semStack[$this->stackPos - (3 - 1)]; |
|
1634 | 1634 | } |
1635 | 1635 | |
1636 | 1636 | protected function reduceRule205() { |
1637 | - $this->semValue = new Node\Param(substr($this->semStack[$this->stackPos-(4-4)], 1), null, $this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-2)], $this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes); |
|
1637 | + $this->semValue = new Node\Param(substr($this->semStack[$this->stackPos - (4 - 4)], 1), null, $this->semStack[$this->stackPos - (4 - 1)], $this->semStack[$this->stackPos - (4 - 2)], $this->semStack[$this->stackPos - (4 - 3)], $this->startAttributeStack[$this->stackPos - (4 - 1)] + $this->endAttributes); |
|
1638 | 1638 | } |
1639 | 1639 | |
1640 | 1640 | protected function reduceRule206() { |
1641 | - $this->semValue = new Node\Param(substr($this->semStack[$this->stackPos-(6-4)], 1), $this->semStack[$this->stackPos-(6-6)], $this->semStack[$this->stackPos-(6-1)], $this->semStack[$this->stackPos-(6-2)], $this->semStack[$this->stackPos-(6-3)], $this->startAttributeStack[$this->stackPos-(6-1)] + $this->endAttributes); |
|
1641 | + $this->semValue = new Node\Param(substr($this->semStack[$this->stackPos - (6 - 4)], 1), $this->semStack[$this->stackPos - (6 - 6)], $this->semStack[$this->stackPos - (6 - 1)], $this->semStack[$this->stackPos - (6 - 2)], $this->semStack[$this->stackPos - (6 - 3)], $this->startAttributeStack[$this->stackPos - (6 - 1)] + $this->endAttributes); |
|
1642 | 1642 | } |
1643 | 1643 | |
1644 | 1644 | protected function reduceRule207() { |
1645 | - $this->semValue = $this->handleScalarTypes($this->semStack[$this->stackPos-(1-1)]); |
|
1645 | + $this->semValue = $this->handleScalarTypes($this->semStack[$this->stackPos - (1 - 1)]); |
|
1646 | 1646 | } |
1647 | 1647 | |
1648 | 1648 | protected function reduceRule208() { |
@@ -1658,7 +1658,7 @@ discard block |
||
1658 | 1658 | } |
1659 | 1659 | |
1660 | 1660 | protected function reduceRule211() { |
1661 | - $this->semValue = $this->semStack[$this->stackPos-(1-1)]; |
|
1661 | + $this->semValue = $this->semStack[$this->stackPos - (1 - 1)]; |
|
1662 | 1662 | } |
1663 | 1663 | |
1664 | 1664 | protected function reduceRule212() { |
@@ -1666,7 +1666,7 @@ discard block |
||
1666 | 1666 | } |
1667 | 1667 | |
1668 | 1668 | protected function reduceRule213() { |
1669 | - $this->semValue = $this->semStack[$this->stackPos-(2-2)]; |
|
1669 | + $this->semValue = $this->semStack[$this->stackPos - (2 - 2)]; |
|
1670 | 1670 | } |
1671 | 1671 | |
1672 | 1672 | protected function reduceRule214() { |
@@ -1674,59 +1674,59 @@ discard block |
||
1674 | 1674 | } |
1675 | 1675 | |
1676 | 1676 | protected function reduceRule215() { |
1677 | - $this->semValue = $this->semStack[$this->stackPos-(3-2)]; |
|
1677 | + $this->semValue = $this->semStack[$this->stackPos - (3 - 2)]; |
|
1678 | 1678 | } |
1679 | 1679 | |
1680 | 1680 | protected function reduceRule216() { |
1681 | - $this->semValue = array($this->semStack[$this->stackPos-(1-1)]); |
|
1681 | + $this->semValue = array($this->semStack[$this->stackPos - (1 - 1)]); |
|
1682 | 1682 | } |
1683 | 1683 | |
1684 | 1684 | protected function reduceRule217() { |
1685 | - $this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)]; |
|
1685 | + $this->semStack[$this->stackPos - (3 - 1)][] = $this->semStack[$this->stackPos - (3 - 3)]; $this->semValue = $this->semStack[$this->stackPos - (3 - 1)]; |
|
1686 | 1686 | } |
1687 | 1687 | |
1688 | 1688 | protected function reduceRule218() { |
1689 | - $this->semValue = new Node\Arg($this->semStack[$this->stackPos-(1-1)], false, false, $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes); |
|
1689 | + $this->semValue = new Node\Arg($this->semStack[$this->stackPos - (1 - 1)], false, false, $this->startAttributeStack[$this->stackPos - (1 - 1)] + $this->endAttributes); |
|
1690 | 1690 | } |
1691 | 1691 | |
1692 | 1692 | protected function reduceRule219() { |
1693 | - $this->semValue = new Node\Arg($this->semStack[$this->stackPos-(2-2)], true, false, $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes); |
|
1693 | + $this->semValue = new Node\Arg($this->semStack[$this->stackPos - (2 - 2)], true, false, $this->startAttributeStack[$this->stackPos - (2 - 1)] + $this->endAttributes); |
|
1694 | 1694 | } |
1695 | 1695 | |
1696 | 1696 | protected function reduceRule220() { |
1697 | - $this->semValue = new Node\Arg($this->semStack[$this->stackPos-(2-2)], false, true, $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes); |
|
1697 | + $this->semValue = new Node\Arg($this->semStack[$this->stackPos - (2 - 2)], false, true, $this->startAttributeStack[$this->stackPos - (2 - 1)] + $this->endAttributes); |
|
1698 | 1698 | } |
1699 | 1699 | |
1700 | 1700 | protected function reduceRule221() { |
1701 | - $this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)]; |
|
1701 | + $this->semStack[$this->stackPos - (3 - 1)][] = $this->semStack[$this->stackPos - (3 - 3)]; $this->semValue = $this->semStack[$this->stackPos - (3 - 1)]; |
|
1702 | 1702 | } |
1703 | 1703 | |
1704 | 1704 | protected function reduceRule222() { |
1705 | - $this->semValue = array($this->semStack[$this->stackPos-(1-1)]); |
|
1705 | + $this->semValue = array($this->semStack[$this->stackPos - (1 - 1)]); |
|
1706 | 1706 | } |
1707 | 1707 | |
1708 | 1708 | protected function reduceRule223() { |
1709 | - $this->semValue = new Expr\Variable($this->semStack[$this->stackPos-(1-1)], $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes); |
|
1709 | + $this->semValue = new Expr\Variable($this->semStack[$this->stackPos - (1 - 1)], $this->startAttributeStack[$this->stackPos - (1 - 1)] + $this->endAttributes); |
|
1710 | 1710 | } |
1711 | 1711 | |
1712 | 1712 | protected function reduceRule224() { |
1713 | - $this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)]; |
|
1713 | + $this->semStack[$this->stackPos - (3 - 1)][] = $this->semStack[$this->stackPos - (3 - 3)]; $this->semValue = $this->semStack[$this->stackPos - (3 - 1)]; |
|
1714 | 1714 | } |
1715 | 1715 | |
1716 | 1716 | protected function reduceRule225() { |
1717 | - $this->semValue = array($this->semStack[$this->stackPos-(1-1)]); |
|
1717 | + $this->semValue = array($this->semStack[$this->stackPos - (1 - 1)]); |
|
1718 | 1718 | } |
1719 | 1719 | |
1720 | 1720 | protected function reduceRule226() { |
1721 | - $this->semValue = new Stmt\StaticVar(substr($this->semStack[$this->stackPos-(1-1)], 1), null, $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes); |
|
1721 | + $this->semValue = new Stmt\StaticVar(substr($this->semStack[$this->stackPos - (1 - 1)], 1), null, $this->startAttributeStack[$this->stackPos - (1 - 1)] + $this->endAttributes); |
|
1722 | 1722 | } |
1723 | 1723 | |
1724 | 1724 | protected function reduceRule227() { |
1725 | - $this->semValue = new Stmt\StaticVar(substr($this->semStack[$this->stackPos-(3-1)], 1), $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
1725 | + $this->semValue = new Stmt\StaticVar(substr($this->semStack[$this->stackPos - (3 - 1)], 1), $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
1726 | 1726 | } |
1727 | 1727 | |
1728 | 1728 | protected function reduceRule228() { |
1729 | - $this->semStack[$this->stackPos-(2-1)][] = $this->semStack[$this->stackPos-(2-2)]; $this->semValue = $this->semStack[$this->stackPos-(2-1)]; |
|
1729 | + $this->semStack[$this->stackPos - (2 - 1)][] = $this->semStack[$this->stackPos - (2 - 2)]; $this->semValue = $this->semStack[$this->stackPos - (2 - 1)]; |
|
1730 | 1730 | } |
1731 | 1731 | |
1732 | 1732 | protected function reduceRule229() { |
@@ -1734,19 +1734,19 @@ discard block |
||
1734 | 1734 | } |
1735 | 1735 | |
1736 | 1736 | protected function reduceRule230() { |
1737 | - $this->semValue = new Stmt\Property($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-2)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
1737 | + $this->semValue = new Stmt\Property($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 2)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
1738 | 1738 | } |
1739 | 1739 | |
1740 | 1740 | protected function reduceRule231() { |
1741 | - $this->semValue = new Stmt\ClassConst($this->semStack[$this->stackPos-(3-2)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
1741 | + $this->semValue = new Stmt\ClassConst($this->semStack[$this->stackPos - (3 - 2)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
1742 | 1742 | } |
1743 | 1743 | |
1744 | 1744 | protected function reduceRule232() { |
1745 | - $this->semValue = new Stmt\ClassMethod($this->semStack[$this->stackPos-(9-4)], ['type' => $this->semStack[$this->stackPos-(9-1)], 'byRef' => $this->semStack[$this->stackPos-(9-3)], 'params' => $this->semStack[$this->stackPos-(9-6)], 'returnType' => $this->semStack[$this->stackPos-(9-8)], 'stmts' => $this->semStack[$this->stackPos-(9-9)]], $this->startAttributeStack[$this->stackPos-(9-1)] + $this->endAttributes); |
|
1745 | + $this->semValue = new Stmt\ClassMethod($this->semStack[$this->stackPos - (9 - 4)], ['type' => $this->semStack[$this->stackPos - (9 - 1)], 'byRef' => $this->semStack[$this->stackPos - (9 - 3)], 'params' => $this->semStack[$this->stackPos - (9 - 6)], 'returnType' => $this->semStack[$this->stackPos - (9 - 8)], 'stmts' => $this->semStack[$this->stackPos - (9 - 9)]], $this->startAttributeStack[$this->stackPos - (9 - 1)] + $this->endAttributes); |
|
1746 | 1746 | } |
1747 | 1747 | |
1748 | 1748 | protected function reduceRule233() { |
1749 | - $this->semValue = new Stmt\TraitUse($this->semStack[$this->stackPos-(3-2)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
1749 | + $this->semValue = new Stmt\TraitUse($this->semStack[$this->stackPos - (3 - 2)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
1750 | 1750 | } |
1751 | 1751 | |
1752 | 1752 | protected function reduceRule234() { |
@@ -1754,7 +1754,7 @@ discard block |
||
1754 | 1754 | } |
1755 | 1755 | |
1756 | 1756 | protected function reduceRule235() { |
1757 | - $this->semValue = $this->semStack[$this->stackPos-(3-2)]; |
|
1757 | + $this->semValue = $this->semStack[$this->stackPos - (3 - 2)]; |
|
1758 | 1758 | } |
1759 | 1759 | |
1760 | 1760 | protected function reduceRule236() { |
@@ -1762,39 +1762,39 @@ discard block |
||
1762 | 1762 | } |
1763 | 1763 | |
1764 | 1764 | protected function reduceRule237() { |
1765 | - $this->semStack[$this->stackPos-(2-1)][] = $this->semStack[$this->stackPos-(2-2)]; $this->semValue = $this->semStack[$this->stackPos-(2-1)]; |
|
1765 | + $this->semStack[$this->stackPos - (2 - 1)][] = $this->semStack[$this->stackPos - (2 - 2)]; $this->semValue = $this->semStack[$this->stackPos - (2 - 1)]; |
|
1766 | 1766 | } |
1767 | 1767 | |
1768 | 1768 | protected function reduceRule238() { |
1769 | - $this->semValue = new Stmt\TraitUseAdaptation\Precedence($this->semStack[$this->stackPos-(4-1)][0], $this->semStack[$this->stackPos-(4-1)][1], $this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes); |
|
1769 | + $this->semValue = new Stmt\TraitUseAdaptation\Precedence($this->semStack[$this->stackPos - (4 - 1)][0], $this->semStack[$this->stackPos - (4 - 1)][1], $this->semStack[$this->stackPos - (4 - 3)], $this->startAttributeStack[$this->stackPos - (4 - 1)] + $this->endAttributes); |
|
1770 | 1770 | } |
1771 | 1771 | |
1772 | 1772 | protected function reduceRule239() { |
1773 | - $this->semValue = new Stmt\TraitUseAdaptation\Alias($this->semStack[$this->stackPos-(5-1)][0], $this->semStack[$this->stackPos-(5-1)][1], $this->semStack[$this->stackPos-(5-3)], $this->semStack[$this->stackPos-(5-4)], $this->startAttributeStack[$this->stackPos-(5-1)] + $this->endAttributes); |
|
1773 | + $this->semValue = new Stmt\TraitUseAdaptation\Alias($this->semStack[$this->stackPos - (5 - 1)][0], $this->semStack[$this->stackPos - (5 - 1)][1], $this->semStack[$this->stackPos - (5 - 3)], $this->semStack[$this->stackPos - (5 - 4)], $this->startAttributeStack[$this->stackPos - (5 - 1)] + $this->endAttributes); |
|
1774 | 1774 | } |
1775 | 1775 | |
1776 | 1776 | protected function reduceRule240() { |
1777 | - $this->semValue = new Stmt\TraitUseAdaptation\Alias($this->semStack[$this->stackPos-(4-1)][0], $this->semStack[$this->stackPos-(4-1)][1], $this->semStack[$this->stackPos-(4-3)], null, $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes); |
|
1777 | + $this->semValue = new Stmt\TraitUseAdaptation\Alias($this->semStack[$this->stackPos - (4 - 1)][0], $this->semStack[$this->stackPos - (4 - 1)][1], $this->semStack[$this->stackPos - (4 - 3)], null, $this->startAttributeStack[$this->stackPos - (4 - 1)] + $this->endAttributes); |
|
1778 | 1778 | } |
1779 | 1779 | |
1780 | 1780 | protected function reduceRule241() { |
1781 | - $this->semValue = new Stmt\TraitUseAdaptation\Alias($this->semStack[$this->stackPos-(4-1)][0], $this->semStack[$this->stackPos-(4-1)][1], null, $this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes); |
|
1781 | + $this->semValue = new Stmt\TraitUseAdaptation\Alias($this->semStack[$this->stackPos - (4 - 1)][0], $this->semStack[$this->stackPos - (4 - 1)][1], null, $this->semStack[$this->stackPos - (4 - 3)], $this->startAttributeStack[$this->stackPos - (4 - 1)] + $this->endAttributes); |
|
1782 | 1782 | } |
1783 | 1783 | |
1784 | 1784 | protected function reduceRule242() { |
1785 | - $this->semValue = new Stmt\TraitUseAdaptation\Alias($this->semStack[$this->stackPos-(4-1)][0], $this->semStack[$this->stackPos-(4-1)][1], null, $this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes); |
|
1785 | + $this->semValue = new Stmt\TraitUseAdaptation\Alias($this->semStack[$this->stackPos - (4 - 1)][0], $this->semStack[$this->stackPos - (4 - 1)][1], null, $this->semStack[$this->stackPos - (4 - 3)], $this->startAttributeStack[$this->stackPos - (4 - 1)] + $this->endAttributes); |
|
1786 | 1786 | } |
1787 | 1787 | |
1788 | 1788 | protected function reduceRule243() { |
1789 | - $this->semValue = array($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)]); |
|
1789 | + $this->semValue = array($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)]); |
|
1790 | 1790 | } |
1791 | 1791 | |
1792 | 1792 | protected function reduceRule244() { |
1793 | - $this->semValue = $this->semStack[$this->stackPos-(1-1)]; |
|
1793 | + $this->semValue = $this->semStack[$this->stackPos - (1 - 1)]; |
|
1794 | 1794 | } |
1795 | 1795 | |
1796 | 1796 | protected function reduceRule245() { |
1797 | - $this->semValue = array(null, $this->semStack[$this->stackPos-(1-1)]); |
|
1797 | + $this->semValue = array(null, $this->semStack[$this->stackPos - (1 - 1)]); |
|
1798 | 1798 | } |
1799 | 1799 | |
1800 | 1800 | protected function reduceRule246() { |
@@ -1802,11 +1802,11 @@ discard block |
||
1802 | 1802 | } |
1803 | 1803 | |
1804 | 1804 | protected function reduceRule247() { |
1805 | - $this->semValue = $this->semStack[$this->stackPos-(3-2)]; |
|
1805 | + $this->semValue = $this->semStack[$this->stackPos - (3 - 2)]; |
|
1806 | 1806 | } |
1807 | 1807 | |
1808 | 1808 | protected function reduceRule248() { |
1809 | - $this->semValue = $this->semStack[$this->stackPos-(1-1)]; |
|
1809 | + $this->semValue = $this->semStack[$this->stackPos - (1 - 1)]; |
|
1810 | 1810 | } |
1811 | 1811 | |
1812 | 1812 | protected function reduceRule249() { |
@@ -1818,15 +1818,15 @@ discard block |
||
1818 | 1818 | } |
1819 | 1819 | |
1820 | 1820 | protected function reduceRule251() { |
1821 | - $this->semValue = $this->semStack[$this->stackPos-(1-1)]; |
|
1821 | + $this->semValue = $this->semStack[$this->stackPos - (1 - 1)]; |
|
1822 | 1822 | } |
1823 | 1823 | |
1824 | 1824 | protected function reduceRule252() { |
1825 | - $this->semValue = $this->semStack[$this->stackPos-(1-1)]; |
|
1825 | + $this->semValue = $this->semStack[$this->stackPos - (1 - 1)]; |
|
1826 | 1826 | } |
1827 | 1827 | |
1828 | 1828 | protected function reduceRule253() { |
1829 | - Stmt\Class_::verifyModifier($this->semStack[$this->stackPos-(2-1)], $this->semStack[$this->stackPos-(2-2)]); $this->semValue = $this->semStack[$this->stackPos-(2-1)] | $this->semStack[$this->stackPos-(2-2)]; |
|
1829 | + Stmt\Class_::verifyModifier($this->semStack[$this->stackPos - (2 - 1)], $this->semStack[$this->stackPos - (2 - 2)]); $this->semValue = $this->semStack[$this->stackPos - (2 - 1)] | $this->semStack[$this->stackPos - (2 - 2)]; |
|
1830 | 1830 | } |
1831 | 1831 | |
1832 | 1832 | protected function reduceRule254() { |
@@ -1854,27 +1854,27 @@ discard block |
||
1854 | 1854 | } |
1855 | 1855 | |
1856 | 1856 | protected function reduceRule260() { |
1857 | - $this->semValue = array($this->semStack[$this->stackPos-(1-1)]); |
|
1857 | + $this->semValue = array($this->semStack[$this->stackPos - (1 - 1)]); |
|
1858 | 1858 | } |
1859 | 1859 | |
1860 | 1860 | protected function reduceRule261() { |
1861 | - $this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)]; |
|
1861 | + $this->semStack[$this->stackPos - (3 - 1)][] = $this->semStack[$this->stackPos - (3 - 3)]; $this->semValue = $this->semStack[$this->stackPos - (3 - 1)]; |
|
1862 | 1862 | } |
1863 | 1863 | |
1864 | 1864 | protected function reduceRule262() { |
1865 | - $this->semValue = new Stmt\PropertyProperty(substr($this->semStack[$this->stackPos-(1-1)], 1), null, $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes); |
|
1865 | + $this->semValue = new Stmt\PropertyProperty(substr($this->semStack[$this->stackPos - (1 - 1)], 1), null, $this->startAttributeStack[$this->stackPos - (1 - 1)] + $this->endAttributes); |
|
1866 | 1866 | } |
1867 | 1867 | |
1868 | 1868 | protected function reduceRule263() { |
1869 | - $this->semValue = new Stmt\PropertyProperty(substr($this->semStack[$this->stackPos-(3-1)], 1), $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
1869 | + $this->semValue = new Stmt\PropertyProperty(substr($this->semStack[$this->stackPos - (3 - 1)], 1), $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
1870 | 1870 | } |
1871 | 1871 | |
1872 | 1872 | protected function reduceRule264() { |
1873 | - $this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)]; |
|
1873 | + $this->semStack[$this->stackPos - (3 - 1)][] = $this->semStack[$this->stackPos - (3 - 3)]; $this->semValue = $this->semStack[$this->stackPos - (3 - 1)]; |
|
1874 | 1874 | } |
1875 | 1875 | |
1876 | 1876 | protected function reduceRule265() { |
1877 | - $this->semValue = array($this->semStack[$this->stackPos-(1-1)]); |
|
1877 | + $this->semValue = array($this->semStack[$this->stackPos - (1 - 1)]); |
|
1878 | 1878 | } |
1879 | 1879 | |
1880 | 1880 | protected function reduceRule266() { |
@@ -1882,351 +1882,351 @@ discard block |
||
1882 | 1882 | } |
1883 | 1883 | |
1884 | 1884 | protected function reduceRule267() { |
1885 | - $this->semValue = $this->semStack[$this->stackPos-(1-1)]; |
|
1885 | + $this->semValue = $this->semStack[$this->stackPos - (1 - 1)]; |
|
1886 | 1886 | } |
1887 | 1887 | |
1888 | 1888 | protected function reduceRule268() { |
1889 | - $this->semValue = $this->semStack[$this->stackPos-(1-1)]; |
|
1889 | + $this->semValue = $this->semStack[$this->stackPos - (1 - 1)]; |
|
1890 | 1890 | } |
1891 | 1891 | |
1892 | 1892 | protected function reduceRule269() { |
1893 | - $this->semValue = new Expr\Assign($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
1893 | + $this->semValue = new Expr\Assign($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
1894 | 1894 | } |
1895 | 1895 | |
1896 | 1896 | protected function reduceRule270() { |
1897 | - $this->semValue = new Expr\Assign($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
1897 | + $this->semValue = new Expr\Assign($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
1898 | 1898 | } |
1899 | 1899 | |
1900 | 1900 | protected function reduceRule271() { |
1901 | - $this->semValue = new Expr\AssignRef($this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-4)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes); |
|
1901 | + $this->semValue = new Expr\AssignRef($this->semStack[$this->stackPos - (4 - 1)], $this->semStack[$this->stackPos - (4 - 4)], $this->startAttributeStack[$this->stackPos - (4 - 1)] + $this->endAttributes); |
|
1902 | 1902 | } |
1903 | 1903 | |
1904 | 1904 | protected function reduceRule272() { |
1905 | - $this->semValue = new Expr\AssignRef($this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-4)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes); |
|
1905 | + $this->semValue = new Expr\AssignRef($this->semStack[$this->stackPos - (4 - 1)], $this->semStack[$this->stackPos - (4 - 4)], $this->startAttributeStack[$this->stackPos - (4 - 1)] + $this->endAttributes); |
|
1906 | 1906 | } |
1907 | 1907 | |
1908 | 1908 | protected function reduceRule273() { |
1909 | - $this->semValue = $this->semStack[$this->stackPos-(1-1)]; |
|
1909 | + $this->semValue = $this->semStack[$this->stackPos - (1 - 1)]; |
|
1910 | 1910 | } |
1911 | 1911 | |
1912 | 1912 | protected function reduceRule274() { |
1913 | - $this->semValue = new Expr\Clone_($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes); |
|
1913 | + $this->semValue = new Expr\Clone_($this->semStack[$this->stackPos - (2 - 2)], $this->startAttributeStack[$this->stackPos - (2 - 1)] + $this->endAttributes); |
|
1914 | 1914 | } |
1915 | 1915 | |
1916 | 1916 | protected function reduceRule275() { |
1917 | - $this->semValue = new Expr\AssignOp\Plus($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
1917 | + $this->semValue = new Expr\AssignOp\Plus($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
1918 | 1918 | } |
1919 | 1919 | |
1920 | 1920 | protected function reduceRule276() { |
1921 | - $this->semValue = new Expr\AssignOp\Minus($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
1921 | + $this->semValue = new Expr\AssignOp\Minus($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
1922 | 1922 | } |
1923 | 1923 | |
1924 | 1924 | protected function reduceRule277() { |
1925 | - $this->semValue = new Expr\AssignOp\Mul($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
1925 | + $this->semValue = new Expr\AssignOp\Mul($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
1926 | 1926 | } |
1927 | 1927 | |
1928 | 1928 | protected function reduceRule278() { |
1929 | - $this->semValue = new Expr\AssignOp\Div($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
1929 | + $this->semValue = new Expr\AssignOp\Div($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
1930 | 1930 | } |
1931 | 1931 | |
1932 | 1932 | protected function reduceRule279() { |
1933 | - $this->semValue = new Expr\AssignOp\Concat($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
1933 | + $this->semValue = new Expr\AssignOp\Concat($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
1934 | 1934 | } |
1935 | 1935 | |
1936 | 1936 | protected function reduceRule280() { |
1937 | - $this->semValue = new Expr\AssignOp\Mod($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
1937 | + $this->semValue = new Expr\AssignOp\Mod($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
1938 | 1938 | } |
1939 | 1939 | |
1940 | 1940 | protected function reduceRule281() { |
1941 | - $this->semValue = new Expr\AssignOp\BitwiseAnd($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
1941 | + $this->semValue = new Expr\AssignOp\BitwiseAnd($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
1942 | 1942 | } |
1943 | 1943 | |
1944 | 1944 | protected function reduceRule282() { |
1945 | - $this->semValue = new Expr\AssignOp\BitwiseOr($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
1945 | + $this->semValue = new Expr\AssignOp\BitwiseOr($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
1946 | 1946 | } |
1947 | 1947 | |
1948 | 1948 | protected function reduceRule283() { |
1949 | - $this->semValue = new Expr\AssignOp\BitwiseXor($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
1949 | + $this->semValue = new Expr\AssignOp\BitwiseXor($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
1950 | 1950 | } |
1951 | 1951 | |
1952 | 1952 | protected function reduceRule284() { |
1953 | - $this->semValue = new Expr\AssignOp\ShiftLeft($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
1953 | + $this->semValue = new Expr\AssignOp\ShiftLeft($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
1954 | 1954 | } |
1955 | 1955 | |
1956 | 1956 | protected function reduceRule285() { |
1957 | - $this->semValue = new Expr\AssignOp\ShiftRight($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
1957 | + $this->semValue = new Expr\AssignOp\ShiftRight($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
1958 | 1958 | } |
1959 | 1959 | |
1960 | 1960 | protected function reduceRule286() { |
1961 | - $this->semValue = new Expr\AssignOp\Pow($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
1961 | + $this->semValue = new Expr\AssignOp\Pow($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
1962 | 1962 | } |
1963 | 1963 | |
1964 | 1964 | protected function reduceRule287() { |
1965 | - $this->semValue = new Expr\PostInc($this->semStack[$this->stackPos-(2-1)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes); |
|
1965 | + $this->semValue = new Expr\PostInc($this->semStack[$this->stackPos - (2 - 1)], $this->startAttributeStack[$this->stackPos - (2 - 1)] + $this->endAttributes); |
|
1966 | 1966 | } |
1967 | 1967 | |
1968 | 1968 | protected function reduceRule288() { |
1969 | - $this->semValue = new Expr\PreInc($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes); |
|
1969 | + $this->semValue = new Expr\PreInc($this->semStack[$this->stackPos - (2 - 2)], $this->startAttributeStack[$this->stackPos - (2 - 1)] + $this->endAttributes); |
|
1970 | 1970 | } |
1971 | 1971 | |
1972 | 1972 | protected function reduceRule289() { |
1973 | - $this->semValue = new Expr\PostDec($this->semStack[$this->stackPos-(2-1)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes); |
|
1973 | + $this->semValue = new Expr\PostDec($this->semStack[$this->stackPos - (2 - 1)], $this->startAttributeStack[$this->stackPos - (2 - 1)] + $this->endAttributes); |
|
1974 | 1974 | } |
1975 | 1975 | |
1976 | 1976 | protected function reduceRule290() { |
1977 | - $this->semValue = new Expr\PreDec($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes); |
|
1977 | + $this->semValue = new Expr\PreDec($this->semStack[$this->stackPos - (2 - 2)], $this->startAttributeStack[$this->stackPos - (2 - 1)] + $this->endAttributes); |
|
1978 | 1978 | } |
1979 | 1979 | |
1980 | 1980 | protected function reduceRule291() { |
1981 | - $this->semValue = new Expr\BinaryOp\BooleanOr($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
1981 | + $this->semValue = new Expr\BinaryOp\BooleanOr($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
1982 | 1982 | } |
1983 | 1983 | |
1984 | 1984 | protected function reduceRule292() { |
1985 | - $this->semValue = new Expr\BinaryOp\BooleanAnd($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
1985 | + $this->semValue = new Expr\BinaryOp\BooleanAnd($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
1986 | 1986 | } |
1987 | 1987 | |
1988 | 1988 | protected function reduceRule293() { |
1989 | - $this->semValue = new Expr\BinaryOp\LogicalOr($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
1989 | + $this->semValue = new Expr\BinaryOp\LogicalOr($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
1990 | 1990 | } |
1991 | 1991 | |
1992 | 1992 | protected function reduceRule294() { |
1993 | - $this->semValue = new Expr\BinaryOp\LogicalAnd($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
1993 | + $this->semValue = new Expr\BinaryOp\LogicalAnd($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
1994 | 1994 | } |
1995 | 1995 | |
1996 | 1996 | protected function reduceRule295() { |
1997 | - $this->semValue = new Expr\BinaryOp\LogicalXor($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
1997 | + $this->semValue = new Expr\BinaryOp\LogicalXor($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
1998 | 1998 | } |
1999 | 1999 | |
2000 | 2000 | protected function reduceRule296() { |
2001 | - $this->semValue = new Expr\BinaryOp\BitwiseOr($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2001 | + $this->semValue = new Expr\BinaryOp\BitwiseOr($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2002 | 2002 | } |
2003 | 2003 | |
2004 | 2004 | protected function reduceRule297() { |
2005 | - $this->semValue = new Expr\BinaryOp\BitwiseAnd($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2005 | + $this->semValue = new Expr\BinaryOp\BitwiseAnd($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2006 | 2006 | } |
2007 | 2007 | |
2008 | 2008 | protected function reduceRule298() { |
2009 | - $this->semValue = new Expr\BinaryOp\BitwiseXor($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2009 | + $this->semValue = new Expr\BinaryOp\BitwiseXor($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2010 | 2010 | } |
2011 | 2011 | |
2012 | 2012 | protected function reduceRule299() { |
2013 | - $this->semValue = new Expr\BinaryOp\Concat($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2013 | + $this->semValue = new Expr\BinaryOp\Concat($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2014 | 2014 | } |
2015 | 2015 | |
2016 | 2016 | protected function reduceRule300() { |
2017 | - $this->semValue = new Expr\BinaryOp\Plus($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2017 | + $this->semValue = new Expr\BinaryOp\Plus($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2018 | 2018 | } |
2019 | 2019 | |
2020 | 2020 | protected function reduceRule301() { |
2021 | - $this->semValue = new Expr\BinaryOp\Minus($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2021 | + $this->semValue = new Expr\BinaryOp\Minus($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2022 | 2022 | } |
2023 | 2023 | |
2024 | 2024 | protected function reduceRule302() { |
2025 | - $this->semValue = new Expr\BinaryOp\Mul($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2025 | + $this->semValue = new Expr\BinaryOp\Mul($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2026 | 2026 | } |
2027 | 2027 | |
2028 | 2028 | protected function reduceRule303() { |
2029 | - $this->semValue = new Expr\BinaryOp\Div($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2029 | + $this->semValue = new Expr\BinaryOp\Div($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2030 | 2030 | } |
2031 | 2031 | |
2032 | 2032 | protected function reduceRule304() { |
2033 | - $this->semValue = new Expr\BinaryOp\Mod($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2033 | + $this->semValue = new Expr\BinaryOp\Mod($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2034 | 2034 | } |
2035 | 2035 | |
2036 | 2036 | protected function reduceRule305() { |
2037 | - $this->semValue = new Expr\BinaryOp\ShiftLeft($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2037 | + $this->semValue = new Expr\BinaryOp\ShiftLeft($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2038 | 2038 | } |
2039 | 2039 | |
2040 | 2040 | protected function reduceRule306() { |
2041 | - $this->semValue = new Expr\BinaryOp\ShiftRight($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2041 | + $this->semValue = new Expr\BinaryOp\ShiftRight($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2042 | 2042 | } |
2043 | 2043 | |
2044 | 2044 | protected function reduceRule307() { |
2045 | - $this->semValue = new Expr\BinaryOp\Pow($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2045 | + $this->semValue = new Expr\BinaryOp\Pow($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2046 | 2046 | } |
2047 | 2047 | |
2048 | 2048 | protected function reduceRule308() { |
2049 | - $this->semValue = new Expr\UnaryPlus($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes); |
|
2049 | + $this->semValue = new Expr\UnaryPlus($this->semStack[$this->stackPos - (2 - 2)], $this->startAttributeStack[$this->stackPos - (2 - 1)] + $this->endAttributes); |
|
2050 | 2050 | } |
2051 | 2051 | |
2052 | 2052 | protected function reduceRule309() { |
2053 | - $this->semValue = new Expr\UnaryMinus($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes); |
|
2053 | + $this->semValue = new Expr\UnaryMinus($this->semStack[$this->stackPos - (2 - 2)], $this->startAttributeStack[$this->stackPos - (2 - 1)] + $this->endAttributes); |
|
2054 | 2054 | } |
2055 | 2055 | |
2056 | 2056 | protected function reduceRule310() { |
2057 | - $this->semValue = new Expr\BooleanNot($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes); |
|
2057 | + $this->semValue = new Expr\BooleanNot($this->semStack[$this->stackPos - (2 - 2)], $this->startAttributeStack[$this->stackPos - (2 - 1)] + $this->endAttributes); |
|
2058 | 2058 | } |
2059 | 2059 | |
2060 | 2060 | protected function reduceRule311() { |
2061 | - $this->semValue = new Expr\BitwiseNot($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes); |
|
2061 | + $this->semValue = new Expr\BitwiseNot($this->semStack[$this->stackPos - (2 - 2)], $this->startAttributeStack[$this->stackPos - (2 - 1)] + $this->endAttributes); |
|
2062 | 2062 | } |
2063 | 2063 | |
2064 | 2064 | protected function reduceRule312() { |
2065 | - $this->semValue = new Expr\BinaryOp\Identical($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2065 | + $this->semValue = new Expr\BinaryOp\Identical($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2066 | 2066 | } |
2067 | 2067 | |
2068 | 2068 | protected function reduceRule313() { |
2069 | - $this->semValue = new Expr\BinaryOp\NotIdentical($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2069 | + $this->semValue = new Expr\BinaryOp\NotIdentical($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2070 | 2070 | } |
2071 | 2071 | |
2072 | 2072 | protected function reduceRule314() { |
2073 | - $this->semValue = new Expr\BinaryOp\Equal($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2073 | + $this->semValue = new Expr\BinaryOp\Equal($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2074 | 2074 | } |
2075 | 2075 | |
2076 | 2076 | protected function reduceRule315() { |
2077 | - $this->semValue = new Expr\BinaryOp\NotEqual($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2077 | + $this->semValue = new Expr\BinaryOp\NotEqual($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2078 | 2078 | } |
2079 | 2079 | |
2080 | 2080 | protected function reduceRule316() { |
2081 | - $this->semValue = new Expr\BinaryOp\Spaceship($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2081 | + $this->semValue = new Expr\BinaryOp\Spaceship($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2082 | 2082 | } |
2083 | 2083 | |
2084 | 2084 | protected function reduceRule317() { |
2085 | - $this->semValue = new Expr\BinaryOp\Smaller($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2085 | + $this->semValue = new Expr\BinaryOp\Smaller($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2086 | 2086 | } |
2087 | 2087 | |
2088 | 2088 | protected function reduceRule318() { |
2089 | - $this->semValue = new Expr\BinaryOp\SmallerOrEqual($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2089 | + $this->semValue = new Expr\BinaryOp\SmallerOrEqual($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2090 | 2090 | } |
2091 | 2091 | |
2092 | 2092 | protected function reduceRule319() { |
2093 | - $this->semValue = new Expr\BinaryOp\Greater($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2093 | + $this->semValue = new Expr\BinaryOp\Greater($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2094 | 2094 | } |
2095 | 2095 | |
2096 | 2096 | protected function reduceRule320() { |
2097 | - $this->semValue = new Expr\BinaryOp\GreaterOrEqual($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2097 | + $this->semValue = new Expr\BinaryOp\GreaterOrEqual($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2098 | 2098 | } |
2099 | 2099 | |
2100 | 2100 | protected function reduceRule321() { |
2101 | - $this->semValue = new Expr\Instanceof_($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2101 | + $this->semValue = new Expr\Instanceof_($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2102 | 2102 | } |
2103 | 2103 | |
2104 | 2104 | protected function reduceRule322() { |
2105 | - $this->semValue = $this->semStack[$this->stackPos-(3-2)]; |
|
2105 | + $this->semValue = $this->semStack[$this->stackPos - (3 - 2)]; |
|
2106 | 2106 | } |
2107 | 2107 | |
2108 | 2108 | protected function reduceRule323() { |
2109 | - $this->semValue = new Expr\Ternary($this->semStack[$this->stackPos-(5-1)], $this->semStack[$this->stackPos-(5-3)], $this->semStack[$this->stackPos-(5-5)], $this->startAttributeStack[$this->stackPos-(5-1)] + $this->endAttributes); |
|
2109 | + $this->semValue = new Expr\Ternary($this->semStack[$this->stackPos - (5 - 1)], $this->semStack[$this->stackPos - (5 - 3)], $this->semStack[$this->stackPos - (5 - 5)], $this->startAttributeStack[$this->stackPos - (5 - 1)] + $this->endAttributes); |
|
2110 | 2110 | } |
2111 | 2111 | |
2112 | 2112 | protected function reduceRule324() { |
2113 | - $this->semValue = new Expr\Ternary($this->semStack[$this->stackPos-(4-1)], null, $this->semStack[$this->stackPos-(4-4)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes); |
|
2113 | + $this->semValue = new Expr\Ternary($this->semStack[$this->stackPos - (4 - 1)], null, $this->semStack[$this->stackPos - (4 - 4)], $this->startAttributeStack[$this->stackPos - (4 - 1)] + $this->endAttributes); |
|
2114 | 2114 | } |
2115 | 2115 | |
2116 | 2116 | protected function reduceRule325() { |
2117 | - $this->semValue = new Expr\BinaryOp\Coalesce($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2117 | + $this->semValue = new Expr\BinaryOp\Coalesce($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2118 | 2118 | } |
2119 | 2119 | |
2120 | 2120 | protected function reduceRule326() { |
2121 | - $this->semValue = new Expr\Isset_($this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes); |
|
2121 | + $this->semValue = new Expr\Isset_($this->semStack[$this->stackPos - (4 - 3)], $this->startAttributeStack[$this->stackPos - (4 - 1)] + $this->endAttributes); |
|
2122 | 2122 | } |
2123 | 2123 | |
2124 | 2124 | protected function reduceRule327() { |
2125 | - $this->semValue = new Expr\Empty_($this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes); |
|
2125 | + $this->semValue = new Expr\Empty_($this->semStack[$this->stackPos - (4 - 3)], $this->startAttributeStack[$this->stackPos - (4 - 1)] + $this->endAttributes); |
|
2126 | 2126 | } |
2127 | 2127 | |
2128 | 2128 | protected function reduceRule328() { |
2129 | - $this->semValue = new Expr\Include_($this->semStack[$this->stackPos-(2-2)], Expr\Include_::TYPE_INCLUDE, $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes); |
|
2129 | + $this->semValue = new Expr\Include_($this->semStack[$this->stackPos - (2 - 2)], Expr\Include_::TYPE_INCLUDE, $this->startAttributeStack[$this->stackPos - (2 - 1)] + $this->endAttributes); |
|
2130 | 2130 | } |
2131 | 2131 | |
2132 | 2132 | protected function reduceRule329() { |
2133 | - $this->semValue = new Expr\Include_($this->semStack[$this->stackPos-(2-2)], Expr\Include_::TYPE_INCLUDE_ONCE, $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes); |
|
2133 | + $this->semValue = new Expr\Include_($this->semStack[$this->stackPos - (2 - 2)], Expr\Include_::TYPE_INCLUDE_ONCE, $this->startAttributeStack[$this->stackPos - (2 - 1)] + $this->endAttributes); |
|
2134 | 2134 | } |
2135 | 2135 | |
2136 | 2136 | protected function reduceRule330() { |
2137 | - $this->semValue = new Expr\Eval_($this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes); |
|
2137 | + $this->semValue = new Expr\Eval_($this->semStack[$this->stackPos - (4 - 3)], $this->startAttributeStack[$this->stackPos - (4 - 1)] + $this->endAttributes); |
|
2138 | 2138 | } |
2139 | 2139 | |
2140 | 2140 | protected function reduceRule331() { |
2141 | - $this->semValue = new Expr\Include_($this->semStack[$this->stackPos-(2-2)], Expr\Include_::TYPE_REQUIRE, $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes); |
|
2141 | + $this->semValue = new Expr\Include_($this->semStack[$this->stackPos - (2 - 2)], Expr\Include_::TYPE_REQUIRE, $this->startAttributeStack[$this->stackPos - (2 - 1)] + $this->endAttributes); |
|
2142 | 2142 | } |
2143 | 2143 | |
2144 | 2144 | protected function reduceRule332() { |
2145 | - $this->semValue = new Expr\Include_($this->semStack[$this->stackPos-(2-2)], Expr\Include_::TYPE_REQUIRE_ONCE, $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes); |
|
2145 | + $this->semValue = new Expr\Include_($this->semStack[$this->stackPos - (2 - 2)], Expr\Include_::TYPE_REQUIRE_ONCE, $this->startAttributeStack[$this->stackPos - (2 - 1)] + $this->endAttributes); |
|
2146 | 2146 | } |
2147 | 2147 | |
2148 | 2148 | protected function reduceRule333() { |
2149 | - $this->semValue = new Expr\Cast\Int_($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes); |
|
2149 | + $this->semValue = new Expr\Cast\Int_($this->semStack[$this->stackPos - (2 - 2)], $this->startAttributeStack[$this->stackPos - (2 - 1)] + $this->endAttributes); |
|
2150 | 2150 | } |
2151 | 2151 | |
2152 | 2152 | protected function reduceRule334() { |
2153 | - $this->semValue = new Expr\Cast\Double($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes); |
|
2153 | + $this->semValue = new Expr\Cast\Double($this->semStack[$this->stackPos - (2 - 2)], $this->startAttributeStack[$this->stackPos - (2 - 1)] + $this->endAttributes); |
|
2154 | 2154 | } |
2155 | 2155 | |
2156 | 2156 | protected function reduceRule335() { |
2157 | - $this->semValue = new Expr\Cast\String_($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes); |
|
2157 | + $this->semValue = new Expr\Cast\String_($this->semStack[$this->stackPos - (2 - 2)], $this->startAttributeStack[$this->stackPos - (2 - 1)] + $this->endAttributes); |
|
2158 | 2158 | } |
2159 | 2159 | |
2160 | 2160 | protected function reduceRule336() { |
2161 | - $this->semValue = new Expr\Cast\Array_($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes); |
|
2161 | + $this->semValue = new Expr\Cast\Array_($this->semStack[$this->stackPos - (2 - 2)], $this->startAttributeStack[$this->stackPos - (2 - 1)] + $this->endAttributes); |
|
2162 | 2162 | } |
2163 | 2163 | |
2164 | 2164 | protected function reduceRule337() { |
2165 | - $this->semValue = new Expr\Cast\Object_($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes); |
|
2165 | + $this->semValue = new Expr\Cast\Object_($this->semStack[$this->stackPos - (2 - 2)], $this->startAttributeStack[$this->stackPos - (2 - 1)] + $this->endAttributes); |
|
2166 | 2166 | } |
2167 | 2167 | |
2168 | 2168 | protected function reduceRule338() { |
2169 | - $this->semValue = new Expr\Cast\Bool_($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes); |
|
2169 | + $this->semValue = new Expr\Cast\Bool_($this->semStack[$this->stackPos - (2 - 2)], $this->startAttributeStack[$this->stackPos - (2 - 1)] + $this->endAttributes); |
|
2170 | 2170 | } |
2171 | 2171 | |
2172 | 2172 | protected function reduceRule339() { |
2173 | - $this->semValue = new Expr\Cast\Unset_($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes); |
|
2173 | + $this->semValue = new Expr\Cast\Unset_($this->semStack[$this->stackPos - (2 - 2)], $this->startAttributeStack[$this->stackPos - (2 - 1)] + $this->endAttributes); |
|
2174 | 2174 | } |
2175 | 2175 | |
2176 | 2176 | protected function reduceRule340() { |
2177 | - $this->semValue = new Expr\Exit_($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes); |
|
2177 | + $this->semValue = new Expr\Exit_($this->semStack[$this->stackPos - (2 - 2)], $this->startAttributeStack[$this->stackPos - (2 - 1)] + $this->endAttributes); |
|
2178 | 2178 | } |
2179 | 2179 | |
2180 | 2180 | protected function reduceRule341() { |
2181 | - $this->semValue = new Expr\ErrorSuppress($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes); |
|
2181 | + $this->semValue = new Expr\ErrorSuppress($this->semStack[$this->stackPos - (2 - 2)], $this->startAttributeStack[$this->stackPos - (2 - 1)] + $this->endAttributes); |
|
2182 | 2182 | } |
2183 | 2183 | |
2184 | 2184 | protected function reduceRule342() { |
2185 | - $this->semValue = $this->semStack[$this->stackPos-(1-1)]; |
|
2185 | + $this->semValue = $this->semStack[$this->stackPos - (1 - 1)]; |
|
2186 | 2186 | } |
2187 | 2187 | |
2188 | 2188 | protected function reduceRule343() { |
2189 | - $this->semValue = new Expr\ShellExec($this->semStack[$this->stackPos-(3-2)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2189 | + $this->semValue = new Expr\ShellExec($this->semStack[$this->stackPos - (3 - 2)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2190 | 2190 | } |
2191 | 2191 | |
2192 | 2192 | protected function reduceRule344() { |
2193 | - $this->semValue = new Expr\Print_($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes); |
|
2193 | + $this->semValue = new Expr\Print_($this->semStack[$this->stackPos - (2 - 2)], $this->startAttributeStack[$this->stackPos - (2 - 1)] + $this->endAttributes); |
|
2194 | 2194 | } |
2195 | 2195 | |
2196 | 2196 | protected function reduceRule345() { |
2197 | - $this->semValue = new Expr\Yield_(null, null, $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes); |
|
2197 | + $this->semValue = new Expr\Yield_(null, null, $this->startAttributeStack[$this->stackPos - (1 - 1)] + $this->endAttributes); |
|
2198 | 2198 | } |
2199 | 2199 | |
2200 | 2200 | protected function reduceRule346() { |
2201 | - $this->semValue = new Expr\Yield_($this->semStack[$this->stackPos-(2-2)], null, $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes); |
|
2201 | + $this->semValue = new Expr\Yield_($this->semStack[$this->stackPos - (2 - 2)], null, $this->startAttributeStack[$this->stackPos - (2 - 1)] + $this->endAttributes); |
|
2202 | 2202 | } |
2203 | 2203 | |
2204 | 2204 | protected function reduceRule347() { |
2205 | - $this->semValue = new Expr\Yield_($this->semStack[$this->stackPos-(4-4)], $this->semStack[$this->stackPos-(4-2)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes); |
|
2205 | + $this->semValue = new Expr\Yield_($this->semStack[$this->stackPos - (4 - 4)], $this->semStack[$this->stackPos - (4 - 2)], $this->startAttributeStack[$this->stackPos - (4 - 1)] + $this->endAttributes); |
|
2206 | 2206 | } |
2207 | 2207 | |
2208 | 2208 | protected function reduceRule348() { |
2209 | - $this->semValue = new Expr\YieldFrom($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes); |
|
2209 | + $this->semValue = new Expr\YieldFrom($this->semStack[$this->stackPos - (2 - 2)], $this->startAttributeStack[$this->stackPos - (2 - 1)] + $this->endAttributes); |
|
2210 | 2210 | } |
2211 | 2211 | |
2212 | 2212 | protected function reduceRule349() { |
2213 | - $this->semValue = new Expr\Closure(['static' => false, 'byRef' => $this->semStack[$this->stackPos-(10-2)], 'params' => $this->semStack[$this->stackPos-(10-4)], 'uses' => $this->semStack[$this->stackPos-(10-6)], 'returnType' => $this->semStack[$this->stackPos-(10-7)], 'stmts' => $this->semStack[$this->stackPos-(10-9)]], $this->startAttributeStack[$this->stackPos-(10-1)] + $this->endAttributes); |
|
2213 | + $this->semValue = new Expr\Closure(['static' => false, 'byRef' => $this->semStack[$this->stackPos - (10 - 2)], 'params' => $this->semStack[$this->stackPos - (10 - 4)], 'uses' => $this->semStack[$this->stackPos - (10 - 6)], 'returnType' => $this->semStack[$this->stackPos - (10 - 7)], 'stmts' => $this->semStack[$this->stackPos - (10 - 9)]], $this->startAttributeStack[$this->stackPos - (10 - 1)] + $this->endAttributes); |
|
2214 | 2214 | } |
2215 | 2215 | |
2216 | 2216 | protected function reduceRule350() { |
2217 | - $this->semValue = new Expr\Closure(['static' => true, 'byRef' => $this->semStack[$this->stackPos-(11-3)], 'params' => $this->semStack[$this->stackPos-(11-5)], 'uses' => $this->semStack[$this->stackPos-(11-7)], 'returnType' => $this->semStack[$this->stackPos-(11-8)], 'stmts' => $this->semStack[$this->stackPos-(11-10)]], $this->startAttributeStack[$this->stackPos-(11-1)] + $this->endAttributes); |
|
2217 | + $this->semValue = new Expr\Closure(['static' => true, 'byRef' => $this->semStack[$this->stackPos - (11 - 3)], 'params' => $this->semStack[$this->stackPos - (11 - 5)], 'uses' => $this->semStack[$this->stackPos - (11 - 7)], 'returnType' => $this->semStack[$this->stackPos - (11 - 8)], 'stmts' => $this->semStack[$this->stackPos - (11 - 10)]], $this->startAttributeStack[$this->stackPos - (11 - 1)] + $this->endAttributes); |
|
2218 | 2218 | } |
2219 | 2219 | |
2220 | 2220 | protected function reduceRule351() { |
2221 | - $this->semValue = array(new Stmt\Class_(null, ['type' => 0, 'extends' => $this->semStack[$this->stackPos-(7-3)], 'implements' => $this->semStack[$this->stackPos-(7-4)], 'stmts' => $this->semStack[$this->stackPos-(7-6)]], $this->startAttributeStack[$this->stackPos-(7-1)] + $this->endAttributes), $this->semStack[$this->stackPos-(7-2)]); |
|
2221 | + $this->semValue = array(new Stmt\Class_(null, ['type' => 0, 'extends' => $this->semStack[$this->stackPos - (7 - 3)], 'implements' => $this->semStack[$this->stackPos - (7 - 4)], 'stmts' => $this->semStack[$this->stackPos - (7 - 6)]], $this->startAttributeStack[$this->stackPos - (7 - 1)] + $this->endAttributes), $this->semStack[$this->stackPos - (7 - 2)]); |
|
2222 | 2222 | } |
2223 | 2223 | |
2224 | 2224 | protected function reduceRule352() { |
2225 | - $this->semValue = new Expr\New_($this->semStack[$this->stackPos-(3-2)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2225 | + $this->semValue = new Expr\New_($this->semStack[$this->stackPos - (3 - 2)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2226 | 2226 | } |
2227 | 2227 | |
2228 | 2228 | protected function reduceRule353() { |
2229 | - list($class, $ctorArgs) = $this->semStack[$this->stackPos-(2-2)]; $this->semValue = new Expr\New_($class, $ctorArgs, $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes); |
|
2229 | + list($class, $ctorArgs) = $this->semStack[$this->stackPos - (2 - 2)]; $this->semValue = new Expr\New_($class, $ctorArgs, $this->startAttributeStack[$this->stackPos - (2 - 1)] + $this->endAttributes); |
|
2230 | 2230 | } |
2231 | 2231 | |
2232 | 2232 | protected function reduceRule354() { |
@@ -2234,67 +2234,67 @@ discard block |
||
2234 | 2234 | } |
2235 | 2235 | |
2236 | 2236 | protected function reduceRule355() { |
2237 | - $this->semValue = $this->semStack[$this->stackPos-(4-3)]; |
|
2237 | + $this->semValue = $this->semStack[$this->stackPos - (4 - 3)]; |
|
2238 | 2238 | } |
2239 | 2239 | |
2240 | 2240 | protected function reduceRule356() { |
2241 | - $this->semValue = array($this->semStack[$this->stackPos-(1-1)]); |
|
2241 | + $this->semValue = array($this->semStack[$this->stackPos - (1 - 1)]); |
|
2242 | 2242 | } |
2243 | 2243 | |
2244 | 2244 | protected function reduceRule357() { |
2245 | - $this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)]; |
|
2245 | + $this->semStack[$this->stackPos - (3 - 1)][] = $this->semStack[$this->stackPos - (3 - 3)]; $this->semValue = $this->semStack[$this->stackPos - (3 - 1)]; |
|
2246 | 2246 | } |
2247 | 2247 | |
2248 | 2248 | protected function reduceRule358() { |
2249 | - $this->semValue = new Expr\ClosureUse(substr($this->semStack[$this->stackPos-(2-2)], 1), $this->semStack[$this->stackPos-(2-1)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes); |
|
2249 | + $this->semValue = new Expr\ClosureUse(substr($this->semStack[$this->stackPos - (2 - 2)], 1), $this->semStack[$this->stackPos - (2 - 1)], $this->startAttributeStack[$this->stackPos - (2 - 1)] + $this->endAttributes); |
|
2250 | 2250 | } |
2251 | 2251 | |
2252 | 2252 | protected function reduceRule359() { |
2253 | - $this->semValue = new Expr\FuncCall($this->semStack[$this->stackPos-(2-1)], $this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes); |
|
2253 | + $this->semValue = new Expr\FuncCall($this->semStack[$this->stackPos - (2 - 1)], $this->semStack[$this->stackPos - (2 - 2)], $this->startAttributeStack[$this->stackPos - (2 - 1)] + $this->endAttributes); |
|
2254 | 2254 | } |
2255 | 2255 | |
2256 | 2256 | protected function reduceRule360() { |
2257 | - $this->semValue = new Expr\FuncCall($this->semStack[$this->stackPos-(2-1)], $this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes); |
|
2257 | + $this->semValue = new Expr\FuncCall($this->semStack[$this->stackPos - (2 - 1)], $this->semStack[$this->stackPos - (2 - 2)], $this->startAttributeStack[$this->stackPos - (2 - 1)] + $this->endAttributes); |
|
2258 | 2258 | } |
2259 | 2259 | |
2260 | 2260 | protected function reduceRule361() { |
2261 | - $this->semValue = new Expr\StaticCall($this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-3)], $this->semStack[$this->stackPos-(4-4)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes); |
|
2261 | + $this->semValue = new Expr\StaticCall($this->semStack[$this->stackPos - (4 - 1)], $this->semStack[$this->stackPos - (4 - 3)], $this->semStack[$this->stackPos - (4 - 4)], $this->startAttributeStack[$this->stackPos - (4 - 1)] + $this->endAttributes); |
|
2262 | 2262 | } |
2263 | 2263 | |
2264 | 2264 | protected function reduceRule362() { |
2265 | - $this->semValue = new Name($this->semStack[$this->stackPos-(1-1)], $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes); |
|
2265 | + $this->semValue = new Name($this->semStack[$this->stackPos - (1 - 1)], $this->startAttributeStack[$this->stackPos - (1 - 1)] + $this->endAttributes); |
|
2266 | 2266 | } |
2267 | 2267 | |
2268 | 2268 | protected function reduceRule363() { |
2269 | - $this->semValue = $this->semStack[$this->stackPos-(1-1)]; |
|
2269 | + $this->semValue = $this->semStack[$this->stackPos - (1 - 1)]; |
|
2270 | 2270 | } |
2271 | 2271 | |
2272 | 2272 | protected function reduceRule364() { |
2273 | - $this->semValue = new Name($this->semStack[$this->stackPos-(1-1)], $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes); |
|
2273 | + $this->semValue = new Name($this->semStack[$this->stackPos - (1 - 1)], $this->startAttributeStack[$this->stackPos - (1 - 1)] + $this->endAttributes); |
|
2274 | 2274 | } |
2275 | 2275 | |
2276 | 2276 | protected function reduceRule365() { |
2277 | - $this->semValue = new Name\FullyQualified($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes); |
|
2277 | + $this->semValue = new Name\FullyQualified($this->semStack[$this->stackPos - (2 - 2)], $this->startAttributeStack[$this->stackPos - (2 - 1)] + $this->endAttributes); |
|
2278 | 2278 | } |
2279 | 2279 | |
2280 | 2280 | protected function reduceRule366() { |
2281 | - $this->semValue = new Name\Relative($this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2281 | + $this->semValue = new Name\Relative($this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2282 | 2282 | } |
2283 | 2283 | |
2284 | 2284 | protected function reduceRule367() { |
2285 | - $this->semValue = $this->semStack[$this->stackPos-(1-1)]; |
|
2285 | + $this->semValue = $this->semStack[$this->stackPos - (1 - 1)]; |
|
2286 | 2286 | } |
2287 | 2287 | |
2288 | 2288 | protected function reduceRule368() { |
2289 | - $this->semValue = $this->semStack[$this->stackPos-(1-1)]; |
|
2289 | + $this->semValue = $this->semStack[$this->stackPos - (1 - 1)]; |
|
2290 | 2290 | } |
2291 | 2291 | |
2292 | 2292 | protected function reduceRule369() { |
2293 | - $this->semValue = $this->semStack[$this->stackPos-(1-1)]; |
|
2293 | + $this->semValue = $this->semStack[$this->stackPos - (1 - 1)]; |
|
2294 | 2294 | } |
2295 | 2295 | |
2296 | 2296 | protected function reduceRule370() { |
2297 | - $this->semValue = $this->semStack[$this->stackPos-(1-1)]; |
|
2297 | + $this->semValue = $this->semStack[$this->stackPos - (1 - 1)]; |
|
2298 | 2298 | } |
2299 | 2299 | |
2300 | 2300 | protected function reduceRule371() { |
@@ -2302,7 +2302,7 @@ discard block |
||
2302 | 2302 | } |
2303 | 2303 | |
2304 | 2304 | protected function reduceRule372() { |
2305 | - $this->semValue = $this->semStack[$this->stackPos-(3-2)]; |
|
2305 | + $this->semValue = $this->semStack[$this->stackPos - (3 - 2)]; |
|
2306 | 2306 | } |
2307 | 2307 | |
2308 | 2308 | protected function reduceRule373() { |
@@ -2310,11 +2310,11 @@ discard block |
||
2310 | 2310 | } |
2311 | 2311 | |
2312 | 2312 | protected function reduceRule374() { |
2313 | - $this->semValue = array(Scalar\String_::parseEscapeSequences($this->semStack[$this->stackPos-(1-1)], '`')); |
|
2313 | + $this->semValue = array(Scalar\String_::parseEscapeSequences($this->semStack[$this->stackPos - (1 - 1)], '`')); |
|
2314 | 2314 | } |
2315 | 2315 | |
2316 | 2316 | protected function reduceRule375() { |
2317 | - foreach ($this->semStack[$this->stackPos-(1-1)] as &$s) { if (is_string($s)) { $s = Node\Scalar\String_::parseEscapeSequences($s, '`', true); } }; $this->semValue = $this->semStack[$this->stackPos-(1-1)]; |
|
2317 | + foreach ($this->semStack[$this->stackPos - (1 - 1)] as &$s) { if (is_string($s)) { $s = Node\Scalar\String_::parseEscapeSequences($s, '`', true); } }; $this->semValue = $this->semStack[$this->stackPos - (1 - 1)]; |
|
2318 | 2318 | } |
2319 | 2319 | |
2320 | 2320 | protected function reduceRule376() { |
@@ -2322,91 +2322,91 @@ discard block |
||
2322 | 2322 | } |
2323 | 2323 | |
2324 | 2324 | protected function reduceRule377() { |
2325 | - $this->semValue = $this->semStack[$this->stackPos-(1-1)]; |
|
2325 | + $this->semValue = $this->semStack[$this->stackPos - (1 - 1)]; |
|
2326 | 2326 | } |
2327 | 2327 | |
2328 | 2328 | protected function reduceRule378() { |
2329 | - $this->semValue = new Expr\ConstFetch($this->semStack[$this->stackPos-(1-1)], $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes); |
|
2329 | + $this->semValue = new Expr\ConstFetch($this->semStack[$this->stackPos - (1 - 1)], $this->startAttributeStack[$this->stackPos - (1 - 1)] + $this->endAttributes); |
|
2330 | 2330 | } |
2331 | 2331 | |
2332 | 2332 | protected function reduceRule379() { |
2333 | - $this->semValue = new Expr\ClassConstFetch($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2333 | + $this->semValue = new Expr\ClassConstFetch($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2334 | 2334 | } |
2335 | 2335 | |
2336 | 2336 | protected function reduceRule380() { |
2337 | - $this->semValue = new Expr\Array_($this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes); |
|
2337 | + $this->semValue = new Expr\Array_($this->semStack[$this->stackPos - (4 - 3)], $this->startAttributeStack[$this->stackPos - (4 - 1)] + $this->endAttributes); |
|
2338 | 2338 | } |
2339 | 2339 | |
2340 | 2340 | protected function reduceRule381() { |
2341 | - $this->semValue = new Expr\Array_($this->semStack[$this->stackPos-(3-2)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2341 | + $this->semValue = new Expr\Array_($this->semStack[$this->stackPos - (3 - 2)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2342 | 2342 | } |
2343 | 2343 | |
2344 | 2344 | protected function reduceRule382() { |
2345 | - $this->semValue = new Scalar\String_(Scalar\String_::parse($this->semStack[$this->stackPos-(1-1)]), $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes); |
|
2345 | + $this->semValue = new Scalar\String_(Scalar\String_::parse($this->semStack[$this->stackPos - (1 - 1)]), $this->startAttributeStack[$this->stackPos - (1 - 1)] + $this->endAttributes); |
|
2346 | 2346 | } |
2347 | 2347 | |
2348 | 2348 | protected function reduceRule383() { |
2349 | - $this->semValue = new Scalar\LNumber(Scalar\LNumber::parse($this->semStack[$this->stackPos-(1-1)]), $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes); |
|
2349 | + $this->semValue = new Scalar\LNumber(Scalar\LNumber::parse($this->semStack[$this->stackPos - (1 - 1)]), $this->startAttributeStack[$this->stackPos - (1 - 1)] + $this->endAttributes); |
|
2350 | 2350 | } |
2351 | 2351 | |
2352 | 2352 | protected function reduceRule384() { |
2353 | - $this->semValue = new Scalar\DNumber(Scalar\DNumber::parse($this->semStack[$this->stackPos-(1-1)]), $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes); |
|
2353 | + $this->semValue = new Scalar\DNumber(Scalar\DNumber::parse($this->semStack[$this->stackPos - (1 - 1)]), $this->startAttributeStack[$this->stackPos - (1 - 1)] + $this->endAttributes); |
|
2354 | 2354 | } |
2355 | 2355 | |
2356 | 2356 | protected function reduceRule385() { |
2357 | - $this->semValue = new Scalar\MagicConst\Line($this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes); |
|
2357 | + $this->semValue = new Scalar\MagicConst\Line($this->startAttributeStack[$this->stackPos - (1 - 1)] + $this->endAttributes); |
|
2358 | 2358 | } |
2359 | 2359 | |
2360 | 2360 | protected function reduceRule386() { |
2361 | - $this->semValue = new Scalar\MagicConst\File($this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes); |
|
2361 | + $this->semValue = new Scalar\MagicConst\File($this->startAttributeStack[$this->stackPos - (1 - 1)] + $this->endAttributes); |
|
2362 | 2362 | } |
2363 | 2363 | |
2364 | 2364 | protected function reduceRule387() { |
2365 | - $this->semValue = new Scalar\MagicConst\Dir($this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes); |
|
2365 | + $this->semValue = new Scalar\MagicConst\Dir($this->startAttributeStack[$this->stackPos - (1 - 1)] + $this->endAttributes); |
|
2366 | 2366 | } |
2367 | 2367 | |
2368 | 2368 | protected function reduceRule388() { |
2369 | - $this->semValue = new Scalar\MagicConst\Class_($this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes); |
|
2369 | + $this->semValue = new Scalar\MagicConst\Class_($this->startAttributeStack[$this->stackPos - (1 - 1)] + $this->endAttributes); |
|
2370 | 2370 | } |
2371 | 2371 | |
2372 | 2372 | protected function reduceRule389() { |
2373 | - $this->semValue = new Scalar\MagicConst\Trait_($this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes); |
|
2373 | + $this->semValue = new Scalar\MagicConst\Trait_($this->startAttributeStack[$this->stackPos - (1 - 1)] + $this->endAttributes); |
|
2374 | 2374 | } |
2375 | 2375 | |
2376 | 2376 | protected function reduceRule390() { |
2377 | - $this->semValue = new Scalar\MagicConst\Method($this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes); |
|
2377 | + $this->semValue = new Scalar\MagicConst\Method($this->startAttributeStack[$this->stackPos - (1 - 1)] + $this->endAttributes); |
|
2378 | 2378 | } |
2379 | 2379 | |
2380 | 2380 | protected function reduceRule391() { |
2381 | - $this->semValue = new Scalar\MagicConst\Function_($this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes); |
|
2381 | + $this->semValue = new Scalar\MagicConst\Function_($this->startAttributeStack[$this->stackPos - (1 - 1)] + $this->endAttributes); |
|
2382 | 2382 | } |
2383 | 2383 | |
2384 | 2384 | protected function reduceRule392() { |
2385 | - $this->semValue = new Scalar\MagicConst\Namespace_($this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes); |
|
2385 | + $this->semValue = new Scalar\MagicConst\Namespace_($this->startAttributeStack[$this->stackPos - (1 - 1)] + $this->endAttributes); |
|
2386 | 2386 | } |
2387 | 2387 | |
2388 | 2388 | protected function reduceRule393() { |
2389 | - $this->semValue = $this->semStack[$this->stackPos-(1-1)]; |
|
2389 | + $this->semValue = $this->semStack[$this->stackPos - (1 - 1)]; |
|
2390 | 2390 | } |
2391 | 2391 | |
2392 | 2392 | protected function reduceRule394() { |
2393 | - $this->semValue = $this->semStack[$this->stackPos-(1-1)]; |
|
2393 | + $this->semValue = $this->semStack[$this->stackPos - (1 - 1)]; |
|
2394 | 2394 | } |
2395 | 2395 | |
2396 | 2396 | protected function reduceRule395() { |
2397 | - $this->semValue = new Scalar\String_(Scalar\String_::parseDocString($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-2)]), $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2397 | + $this->semValue = new Scalar\String_(Scalar\String_::parseDocString($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 2)]), $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2398 | 2398 | } |
2399 | 2399 | |
2400 | 2400 | protected function reduceRule396() { |
2401 | - $this->semValue = new Scalar\String_('', $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes); |
|
2401 | + $this->semValue = new Scalar\String_('', $this->startAttributeStack[$this->stackPos - (2 - 1)] + $this->endAttributes); |
|
2402 | 2402 | } |
2403 | 2403 | |
2404 | 2404 | protected function reduceRule397() { |
2405 | - foreach ($this->semStack[$this->stackPos-(3-2)] as &$s) { if (is_string($s)) { $s = Node\Scalar\String_::parseEscapeSequences($s, '"', true); } }; $this->semValue = new Scalar\Encapsed($this->semStack[$this->stackPos-(3-2)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2405 | + foreach ($this->semStack[$this->stackPos - (3 - 2)] as &$s) { if (is_string($s)) { $s = Node\Scalar\String_::parseEscapeSequences($s, '"', true); } }; $this->semValue = new Scalar\Encapsed($this->semStack[$this->stackPos - (3 - 2)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2406 | 2406 | } |
2407 | 2407 | |
2408 | 2408 | protected function reduceRule398() { |
2409 | - foreach ($this->semStack[$this->stackPos-(3-2)] as &$s) { if (is_string($s)) { $s = Node\Scalar\String_::parseEscapeSequences($s, null, true); } } $s = preg_replace('~(\r\n|\n|\r)\z~', '', $s); if ('' === $s) array_pop($this->semStack[$this->stackPos-(3-2)]);; $this->semValue = new Scalar\Encapsed($this->semStack[$this->stackPos-(3-2)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2409 | + foreach ($this->semStack[$this->stackPos - (3 - 2)] as &$s) { if (is_string($s)) { $s = Node\Scalar\String_::parseEscapeSequences($s, null, true); } } $s = preg_replace('~(\r\n|\n|\r)\z~', '', $s); if ('' === $s) array_pop($this->semStack[$this->stackPos - (3 - 2)]); ; $this->semValue = new Scalar\Encapsed($this->semStack[$this->stackPos - (3 - 2)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2410 | 2410 | } |
2411 | 2411 | |
2412 | 2412 | protected function reduceRule399() { |
@@ -2422,151 +2422,151 @@ discard block |
||
2422 | 2422 | } |
2423 | 2423 | |
2424 | 2424 | protected function reduceRule402() { |
2425 | - $this->semValue = $this->semStack[$this->stackPos-(1-1)]; |
|
2425 | + $this->semValue = $this->semStack[$this->stackPos - (1 - 1)]; |
|
2426 | 2426 | } |
2427 | 2427 | |
2428 | 2428 | protected function reduceRule403() { |
2429 | - $this->semValue = $this->semStack[$this->stackPos-(1-1)]; |
|
2429 | + $this->semValue = $this->semStack[$this->stackPos - (1 - 1)]; |
|
2430 | 2430 | } |
2431 | 2431 | |
2432 | 2432 | protected function reduceRule404() { |
2433 | - $this->semValue = $this->semStack[$this->stackPos-(3-2)]; |
|
2433 | + $this->semValue = $this->semStack[$this->stackPos - (3 - 2)]; |
|
2434 | 2434 | } |
2435 | 2435 | |
2436 | 2436 | protected function reduceRule405() { |
2437 | - $this->semValue = $this->semStack[$this->stackPos-(1-1)]; |
|
2437 | + $this->semValue = $this->semStack[$this->stackPos - (1 - 1)]; |
|
2438 | 2438 | } |
2439 | 2439 | |
2440 | 2440 | protected function reduceRule406() { |
2441 | - $this->semValue = $this->semStack[$this->stackPos-(1-1)]; |
|
2441 | + $this->semValue = $this->semStack[$this->stackPos - (1 - 1)]; |
|
2442 | 2442 | } |
2443 | 2443 | |
2444 | 2444 | protected function reduceRule407() { |
2445 | - $this->semValue = $this->semStack[$this->stackPos-(3-2)]; |
|
2445 | + $this->semValue = $this->semStack[$this->stackPos - (3 - 2)]; |
|
2446 | 2446 | } |
2447 | 2447 | |
2448 | 2448 | protected function reduceRule408() { |
2449 | - $this->semValue = $this->semStack[$this->stackPos-(1-1)]; |
|
2449 | + $this->semValue = $this->semStack[$this->stackPos - (1 - 1)]; |
|
2450 | 2450 | } |
2451 | 2451 | |
2452 | 2452 | protected function reduceRule409() { |
2453 | - $this->semValue = new Expr\Variable($this->semStack[$this->stackPos-(1-1)], $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes); |
|
2453 | + $this->semValue = new Expr\Variable($this->semStack[$this->stackPos - (1 - 1)], $this->startAttributeStack[$this->stackPos - (1 - 1)] + $this->endAttributes); |
|
2454 | 2454 | } |
2455 | 2455 | |
2456 | 2456 | protected function reduceRule410() { |
2457 | - $this->semValue = new Expr\ArrayDimFetch($this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes); |
|
2457 | + $this->semValue = new Expr\ArrayDimFetch($this->semStack[$this->stackPos - (4 - 1)], $this->semStack[$this->stackPos - (4 - 3)], $this->startAttributeStack[$this->stackPos - (4 - 1)] + $this->endAttributes); |
|
2458 | 2458 | } |
2459 | 2459 | |
2460 | 2460 | protected function reduceRule411() { |
2461 | - $this->semValue = new Expr\ArrayDimFetch($this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes); |
|
2461 | + $this->semValue = new Expr\ArrayDimFetch($this->semStack[$this->stackPos - (4 - 1)], $this->semStack[$this->stackPos - (4 - 3)], $this->startAttributeStack[$this->stackPos - (4 - 1)] + $this->endAttributes); |
|
2462 | 2462 | } |
2463 | 2463 | |
2464 | 2464 | protected function reduceRule412() { |
2465 | - $this->semValue = new Expr\ArrayDimFetch($this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes); |
|
2465 | + $this->semValue = new Expr\ArrayDimFetch($this->semStack[$this->stackPos - (4 - 1)], $this->semStack[$this->stackPos - (4 - 3)], $this->startAttributeStack[$this->stackPos - (4 - 1)] + $this->endAttributes); |
|
2466 | 2466 | } |
2467 | 2467 | |
2468 | 2468 | protected function reduceRule413() { |
2469 | - $this->semValue = $this->semStack[$this->stackPos-(1-1)]; |
|
2469 | + $this->semValue = $this->semStack[$this->stackPos - (1 - 1)]; |
|
2470 | 2470 | } |
2471 | 2471 | |
2472 | 2472 | protected function reduceRule414() { |
2473 | - $this->semValue = new Expr\MethodCall($this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-3)], $this->semStack[$this->stackPos-(4-4)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes); |
|
2473 | + $this->semValue = new Expr\MethodCall($this->semStack[$this->stackPos - (4 - 1)], $this->semStack[$this->stackPos - (4 - 3)], $this->semStack[$this->stackPos - (4 - 4)], $this->startAttributeStack[$this->stackPos - (4 - 1)] + $this->endAttributes); |
|
2474 | 2474 | } |
2475 | 2475 | |
2476 | 2476 | protected function reduceRule415() { |
2477 | - $this->semValue = $this->semStack[$this->stackPos-(1-1)]; |
|
2477 | + $this->semValue = $this->semStack[$this->stackPos - (1 - 1)]; |
|
2478 | 2478 | } |
2479 | 2479 | |
2480 | 2480 | protected function reduceRule416() { |
2481 | - $this->semValue = $this->semStack[$this->stackPos-(1-1)]; |
|
2481 | + $this->semValue = $this->semStack[$this->stackPos - (1 - 1)]; |
|
2482 | 2482 | } |
2483 | 2483 | |
2484 | 2484 | protected function reduceRule417() { |
2485 | - $this->semValue = new Expr\PropertyFetch($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2485 | + $this->semValue = new Expr\PropertyFetch($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2486 | 2486 | } |
2487 | 2487 | |
2488 | 2488 | protected function reduceRule418() { |
2489 | - $this->semValue = substr($this->semStack[$this->stackPos-(1-1)], 1); |
|
2489 | + $this->semValue = substr($this->semStack[$this->stackPos - (1 - 1)], 1); |
|
2490 | 2490 | } |
2491 | 2491 | |
2492 | 2492 | protected function reduceRule419() { |
2493 | - $this->semValue = $this->semStack[$this->stackPos-(4-3)]; |
|
2493 | + $this->semValue = $this->semStack[$this->stackPos - (4 - 3)]; |
|
2494 | 2494 | } |
2495 | 2495 | |
2496 | 2496 | protected function reduceRule420() { |
2497 | - $this->semValue = new Expr\Variable($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes); |
|
2497 | + $this->semValue = new Expr\Variable($this->semStack[$this->stackPos - (2 - 2)], $this->startAttributeStack[$this->stackPos - (2 - 1)] + $this->endAttributes); |
|
2498 | 2498 | } |
2499 | 2499 | |
2500 | 2500 | protected function reduceRule421() { |
2501 | - $this->semValue = new Expr\StaticPropertyFetch($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2501 | + $this->semValue = new Expr\StaticPropertyFetch($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2502 | 2502 | } |
2503 | 2503 | |
2504 | 2504 | protected function reduceRule422() { |
2505 | - $this->semValue = new Expr\Variable($this->semStack[$this->stackPos-(1-1)], $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes); |
|
2505 | + $this->semValue = new Expr\Variable($this->semStack[$this->stackPos - (1 - 1)], $this->startAttributeStack[$this->stackPos - (1 - 1)] + $this->endAttributes); |
|
2506 | 2506 | } |
2507 | 2507 | |
2508 | 2508 | protected function reduceRule423() { |
2509 | - $this->semValue = new Expr\ArrayDimFetch($this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes); |
|
2509 | + $this->semValue = new Expr\ArrayDimFetch($this->semStack[$this->stackPos - (4 - 1)], $this->semStack[$this->stackPos - (4 - 3)], $this->startAttributeStack[$this->stackPos - (4 - 1)] + $this->endAttributes); |
|
2510 | 2510 | } |
2511 | 2511 | |
2512 | 2512 | protected function reduceRule424() { |
2513 | - $this->semValue = new Expr\ArrayDimFetch($this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes); |
|
2513 | + $this->semValue = new Expr\ArrayDimFetch($this->semStack[$this->stackPos - (4 - 1)], $this->semStack[$this->stackPos - (4 - 3)], $this->startAttributeStack[$this->stackPos - (4 - 1)] + $this->endAttributes); |
|
2514 | 2514 | } |
2515 | 2515 | |
2516 | 2516 | protected function reduceRule425() { |
2517 | - $this->semValue = new Expr\PropertyFetch($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2517 | + $this->semValue = new Expr\PropertyFetch($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2518 | 2518 | } |
2519 | 2519 | |
2520 | 2520 | protected function reduceRule426() { |
2521 | - $this->semValue = new Expr\StaticPropertyFetch($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2521 | + $this->semValue = new Expr\StaticPropertyFetch($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2522 | 2522 | } |
2523 | 2523 | |
2524 | 2524 | protected function reduceRule427() { |
2525 | - $this->semValue = new Expr\StaticPropertyFetch($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2525 | + $this->semValue = new Expr\StaticPropertyFetch($this->semStack[$this->stackPos - (3 - 1)], $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2526 | 2526 | } |
2527 | 2527 | |
2528 | 2528 | protected function reduceRule428() { |
2529 | - $this->semValue = $this->semStack[$this->stackPos-(1-1)]; |
|
2529 | + $this->semValue = $this->semStack[$this->stackPos - (1 - 1)]; |
|
2530 | 2530 | } |
2531 | 2531 | |
2532 | 2532 | protected function reduceRule429() { |
2533 | - $this->semValue = $this->semStack[$this->stackPos-(3-2)]; |
|
2533 | + $this->semValue = $this->semStack[$this->stackPos - (3 - 2)]; |
|
2534 | 2534 | } |
2535 | 2535 | |
2536 | 2536 | protected function reduceRule430() { |
2537 | - $this->semValue = new Expr\Variable($this->semStack[$this->stackPos-(1-1)], $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes); |
|
2537 | + $this->semValue = new Expr\Variable($this->semStack[$this->stackPos - (1 - 1)], $this->startAttributeStack[$this->stackPos - (1 - 1)] + $this->endAttributes); |
|
2538 | 2538 | } |
2539 | 2539 | |
2540 | 2540 | protected function reduceRule431() { |
2541 | - $this->semValue = $this->semStack[$this->stackPos-(1-1)]; |
|
2541 | + $this->semValue = $this->semStack[$this->stackPos - (1 - 1)]; |
|
2542 | 2542 | } |
2543 | 2543 | |
2544 | 2544 | protected function reduceRule432() { |
2545 | - $this->semValue = $this->semStack[$this->stackPos-(3-2)]; |
|
2545 | + $this->semValue = $this->semStack[$this->stackPos - (3 - 2)]; |
|
2546 | 2546 | } |
2547 | 2547 | |
2548 | 2548 | protected function reduceRule433() { |
2549 | - $this->semValue = new Expr\Variable($this->semStack[$this->stackPos-(1-1)], $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes); |
|
2549 | + $this->semValue = new Expr\Variable($this->semStack[$this->stackPos - (1 - 1)], $this->startAttributeStack[$this->stackPos - (1 - 1)] + $this->endAttributes); |
|
2550 | 2550 | } |
2551 | 2551 | |
2552 | 2552 | protected function reduceRule434() { |
2553 | - $this->semValue = new Expr\List_($this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes); |
|
2553 | + $this->semValue = new Expr\List_($this->semStack[$this->stackPos - (4 - 3)], $this->startAttributeStack[$this->stackPos - (4 - 1)] + $this->endAttributes); |
|
2554 | 2554 | } |
2555 | 2555 | |
2556 | 2556 | protected function reduceRule435() { |
2557 | - $this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)]; |
|
2557 | + $this->semStack[$this->stackPos - (3 - 1)][] = $this->semStack[$this->stackPos - (3 - 3)]; $this->semValue = $this->semStack[$this->stackPos - (3 - 1)]; |
|
2558 | 2558 | } |
2559 | 2559 | |
2560 | 2560 | protected function reduceRule436() { |
2561 | - $this->semValue = array($this->semStack[$this->stackPos-(1-1)]); |
|
2561 | + $this->semValue = array($this->semStack[$this->stackPos - (1 - 1)]); |
|
2562 | 2562 | } |
2563 | 2563 | |
2564 | 2564 | protected function reduceRule437() { |
2565 | - $this->semValue = $this->semStack[$this->stackPos-(1-1)]; |
|
2565 | + $this->semValue = $this->semStack[$this->stackPos - (1 - 1)]; |
|
2566 | 2566 | } |
2567 | 2567 | |
2568 | 2568 | protected function reduceRule438() { |
2569 | - $this->semValue = $this->semStack[$this->stackPos-(1-1)]; |
|
2569 | + $this->semValue = $this->semStack[$this->stackPos - (1 - 1)]; |
|
2570 | 2570 | } |
2571 | 2571 | |
2572 | 2572 | protected function reduceRule439() { |
@@ -2578,86 +2578,86 @@ discard block |
||
2578 | 2578 | } |
2579 | 2579 | |
2580 | 2580 | protected function reduceRule441() { |
2581 | - $this->semValue = $this->semStack[$this->stackPos-(2-1)]; |
|
2581 | + $this->semValue = $this->semStack[$this->stackPos - (2 - 1)]; |
|
2582 | 2582 | } |
2583 | 2583 | |
2584 | 2584 | protected function reduceRule442() { |
2585 | - $this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)]; |
|
2585 | + $this->semStack[$this->stackPos - (3 - 1)][] = $this->semStack[$this->stackPos - (3 - 3)]; $this->semValue = $this->semStack[$this->stackPos - (3 - 1)]; |
|
2586 | 2586 | } |
2587 | 2587 | |
2588 | 2588 | protected function reduceRule443() { |
2589 | - $this->semValue = array($this->semStack[$this->stackPos-(1-1)]); |
|
2589 | + $this->semValue = array($this->semStack[$this->stackPos - (1 - 1)]); |
|
2590 | 2590 | } |
2591 | 2591 | |
2592 | 2592 | protected function reduceRule444() { |
2593 | - $this->semValue = new Expr\ArrayItem($this->semStack[$this->stackPos-(3-3)], $this->semStack[$this->stackPos-(3-1)], false, $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2593 | + $this->semValue = new Expr\ArrayItem($this->semStack[$this->stackPos - (3 - 3)], $this->semStack[$this->stackPos - (3 - 1)], false, $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2594 | 2594 | } |
2595 | 2595 | |
2596 | 2596 | protected function reduceRule445() { |
2597 | - $this->semValue = new Expr\ArrayItem($this->semStack[$this->stackPos-(1-1)], null, false, $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes); |
|
2597 | + $this->semValue = new Expr\ArrayItem($this->semStack[$this->stackPos - (1 - 1)], null, false, $this->startAttributeStack[$this->stackPos - (1 - 1)] + $this->endAttributes); |
|
2598 | 2598 | } |
2599 | 2599 | |
2600 | 2600 | protected function reduceRule446() { |
2601 | - $this->semValue = new Expr\ArrayItem($this->semStack[$this->stackPos-(4-4)], $this->semStack[$this->stackPos-(4-1)], true, $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes); |
|
2601 | + $this->semValue = new Expr\ArrayItem($this->semStack[$this->stackPos - (4 - 4)], $this->semStack[$this->stackPos - (4 - 1)], true, $this->startAttributeStack[$this->stackPos - (4 - 1)] + $this->endAttributes); |
|
2602 | 2602 | } |
2603 | 2603 | |
2604 | 2604 | protected function reduceRule447() { |
2605 | - $this->semValue = new Expr\ArrayItem($this->semStack[$this->stackPos-(2-2)], null, true, $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes); |
|
2605 | + $this->semValue = new Expr\ArrayItem($this->semStack[$this->stackPos - (2 - 2)], null, true, $this->startAttributeStack[$this->stackPos - (2 - 1)] + $this->endAttributes); |
|
2606 | 2606 | } |
2607 | 2607 | |
2608 | 2608 | protected function reduceRule448() { |
2609 | - $this->semStack[$this->stackPos-(2-1)][] = $this->semStack[$this->stackPos-(2-2)]; $this->semValue = $this->semStack[$this->stackPos-(2-1)]; |
|
2609 | + $this->semStack[$this->stackPos - (2 - 1)][] = $this->semStack[$this->stackPos - (2 - 2)]; $this->semValue = $this->semStack[$this->stackPos - (2 - 1)]; |
|
2610 | 2610 | } |
2611 | 2611 | |
2612 | 2612 | protected function reduceRule449() { |
2613 | - $this->semStack[$this->stackPos-(2-1)][] = $this->semStack[$this->stackPos-(2-2)]; $this->semValue = $this->semStack[$this->stackPos-(2-1)]; |
|
2613 | + $this->semStack[$this->stackPos - (2 - 1)][] = $this->semStack[$this->stackPos - (2 - 2)]; $this->semValue = $this->semStack[$this->stackPos - (2 - 1)]; |
|
2614 | 2614 | } |
2615 | 2615 | |
2616 | 2616 | protected function reduceRule450() { |
2617 | - $this->semValue = array($this->semStack[$this->stackPos-(1-1)]); |
|
2617 | + $this->semValue = array($this->semStack[$this->stackPos - (1 - 1)]); |
|
2618 | 2618 | } |
2619 | 2619 | |
2620 | 2620 | protected function reduceRule451() { |
2621 | - $this->semValue = array($this->semStack[$this->stackPos-(2-1)], $this->semStack[$this->stackPos-(2-2)]); |
|
2621 | + $this->semValue = array($this->semStack[$this->stackPos - (2 - 1)], $this->semStack[$this->stackPos - (2 - 2)]); |
|
2622 | 2622 | } |
2623 | 2623 | |
2624 | 2624 | protected function reduceRule452() { |
2625 | - $this->semValue = new Expr\Variable(substr($this->semStack[$this->stackPos-(1-1)], 1), $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes); |
|
2625 | + $this->semValue = new Expr\Variable(substr($this->semStack[$this->stackPos - (1 - 1)], 1), $this->startAttributeStack[$this->stackPos - (1 - 1)] + $this->endAttributes); |
|
2626 | 2626 | } |
2627 | 2627 | |
2628 | 2628 | protected function reduceRule453() { |
2629 | - $this->semValue = new Expr\ArrayDimFetch(new Expr\Variable(substr($this->semStack[$this->stackPos-(4-1)], 1), $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes), $this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes); |
|
2629 | + $this->semValue = new Expr\ArrayDimFetch(new Expr\Variable(substr($this->semStack[$this->stackPos - (4 - 1)], 1), $this->startAttributeStack[$this->stackPos - (4 - 1)] + $this->endAttributes), $this->semStack[$this->stackPos - (4 - 3)], $this->startAttributeStack[$this->stackPos - (4 - 1)] + $this->endAttributes); |
|
2630 | 2630 | } |
2631 | 2631 | |
2632 | 2632 | protected function reduceRule454() { |
2633 | - $this->semValue = new Expr\PropertyFetch(new Expr\Variable(substr($this->semStack[$this->stackPos-(3-1)], 1), $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes), $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2633 | + $this->semValue = new Expr\PropertyFetch(new Expr\Variable(substr($this->semStack[$this->stackPos - (3 - 1)], 1), $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes), $this->semStack[$this->stackPos - (3 - 3)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2634 | 2634 | } |
2635 | 2635 | |
2636 | 2636 | protected function reduceRule455() { |
2637 | - $this->semValue = new Expr\Variable($this->semStack[$this->stackPos-(3-2)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2637 | + $this->semValue = new Expr\Variable($this->semStack[$this->stackPos - (3 - 2)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2638 | 2638 | } |
2639 | 2639 | |
2640 | 2640 | protected function reduceRule456() { |
2641 | - $this->semValue = new Expr\Variable($this->semStack[$this->stackPos-(3-2)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); |
|
2641 | + $this->semValue = new Expr\Variable($this->semStack[$this->stackPos - (3 - 2)], $this->startAttributeStack[$this->stackPos - (3 - 1)] + $this->endAttributes); |
|
2642 | 2642 | } |
2643 | 2643 | |
2644 | 2644 | protected function reduceRule457() { |
2645 | - $this->semValue = new Expr\ArrayDimFetch(new Expr\Variable($this->semStack[$this->stackPos-(6-2)], $this->startAttributeStack[$this->stackPos-(6-1)] + $this->endAttributes), $this->semStack[$this->stackPos-(6-4)], $this->startAttributeStack[$this->stackPos-(6-1)] + $this->endAttributes); |
|
2645 | + $this->semValue = new Expr\ArrayDimFetch(new Expr\Variable($this->semStack[$this->stackPos - (6 - 2)], $this->startAttributeStack[$this->stackPos - (6 - 1)] + $this->endAttributes), $this->semStack[$this->stackPos - (6 - 4)], $this->startAttributeStack[$this->stackPos - (6 - 1)] + $this->endAttributes); |
|
2646 | 2646 | } |
2647 | 2647 | |
2648 | 2648 | protected function reduceRule458() { |
2649 | - $this->semValue = $this->semStack[$this->stackPos-(3-2)]; |
|
2649 | + $this->semValue = $this->semStack[$this->stackPos - (3 - 2)]; |
|
2650 | 2650 | } |
2651 | 2651 | |
2652 | 2652 | protected function reduceRule459() { |
2653 | - $this->semValue = new Scalar\String_($this->semStack[$this->stackPos-(1-1)], $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes); |
|
2653 | + $this->semValue = new Scalar\String_($this->semStack[$this->stackPos - (1 - 1)], $this->startAttributeStack[$this->stackPos - (1 - 1)] + $this->endAttributes); |
|
2654 | 2654 | } |
2655 | 2655 | |
2656 | 2656 | protected function reduceRule460() { |
2657 | - $this->semValue = new Scalar\String_($this->semStack[$this->stackPos-(1-1)], $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes); |
|
2657 | + $this->semValue = new Scalar\String_($this->semStack[$this->stackPos - (1 - 1)], $this->startAttributeStack[$this->stackPos - (1 - 1)] + $this->endAttributes); |
|
2658 | 2658 | } |
2659 | 2659 | |
2660 | 2660 | protected function reduceRule461() { |
2661 | - $this->semValue = new Expr\Variable(substr($this->semStack[$this->stackPos-(1-1)], 1), $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes); |
|
2661 | + $this->semValue = new Expr\Variable(substr($this->semStack[$this->stackPos - (1 - 1)], 1), $this->startAttributeStack[$this->stackPos - (1 - 1)] + $this->endAttributes); |
|
2662 | 2662 | } |
2663 | 2663 | } |
@@ -184,7 +184,7 @@ discard block |
||
184 | 184 | |
185 | 185 | // This is necessary to assign some meaningful attributes to /* empty */ productions. They'll get |
186 | 186 | // the attributes of the next token, even though they don't contain it themselves. |
187 | - $this->startAttributeStack[$this->stackPos+1] = $startAttributes; |
|
187 | + $this->startAttributeStack[$this->stackPos + 1] = $startAttributes; |
|
188 | 188 | |
189 | 189 | //$this->traceRead($symbol); |
190 | 190 | } |
@@ -426,11 +426,11 @@ discard block |
||
426 | 426 | } else { |
427 | 427 | // For semicolon namespaces we have to move the statements after a namespace declaration into ->stmts |
428 | 428 | $resultStmts = array(); |
429 | - $targetStmts =& $resultStmts; |
|
429 | + $targetStmts = & $resultStmts; |
|
430 | 430 | foreach ($stmts as $stmt) { |
431 | 431 | if ($stmt instanceof Node\Stmt\Namespace_) { |
432 | 432 | $stmt->stmts = array(); |
433 | - $targetStmts =& $stmt->stmts; |
|
433 | + $targetStmts = & $stmt->stmts; |
|
434 | 434 | $resultStmts[] = $stmt; |
435 | 435 | } elseif ($stmt instanceof Node\Stmt\HaltCompiler) { |
436 | 436 | // __halt_compiler() is not moved into the namespace |