1 | <?php |
||
18 | class Parser extends BaseParser |
||
19 | { |
||
20 | protected $tokenToSymbolMapSize = 266; |
||
21 | protected $actionTableSize = 23; |
||
22 | protected $gotoTableSize = 4; |
||
23 | |||
24 | protected $invalidSymbol = 11; |
||
25 | protected $errorSymbol = 1; |
||
26 | protected $defaultAction = -32766; |
||
27 | protected $unexpectedTokenRule = 32767; |
||
28 | |||
29 | protected $numNonLeafStates = 15; |
||
30 | |||
31 | protected $YY2TBLSTATE = 8; |
||
32 | protected $YYNLSTATES = 15; |
||
33 | |||
34 | protected $symbolToName = array( |
||
35 | "EOF", |
||
36 | "error", |
||
37 | "T_START", |
||
38 | "T_END", |
||
39 | "T_LINE_START", |
||
40 | "T_AT", |
||
41 | "T_COLON", |
||
42 | "T_STRING", |
||
43 | "T_CHAR", |
||
44 | "T_CRLF", |
||
45 | "T_WHITESPACE" |
||
46 | ); |
||
47 | |||
48 | protected $tokenToSymbol = array( |
||
49 | 0, 11, 11, 11, 11, 11, 11, 11, 11, 11, |
||
50 | 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, |
||
51 | 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, |
||
52 | 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, |
||
53 | 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, |
||
54 | 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, |
||
55 | 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, |
||
56 | 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, |
||
57 | 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, |
||
58 | 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, |
||
59 | 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, |
||
60 | 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, |
||
61 | 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, |
||
62 | 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, |
||
63 | 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, |
||
64 | 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, |
||
65 | 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, |
||
66 | 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, |
||
67 | 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, |
||
68 | 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, |
||
69 | 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, |
||
70 | 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, |
||
71 | 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, |
||
72 | 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, |
||
73 | 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, |
||
74 | 11, 11, 11, 11, 11, 11, 1, 2, 3, 4, |
||
75 | 5, 6, 7, 8, 9, 10 |
||
76 | ); |
||
77 | |||
78 | protected $action = array( |
||
79 | 24, 25, 26, 0, 27, 16, 1, 8, 12, 17, |
||
80 | 18, 0, 0, 11, 0, 14, 0, 13, 22, 0, |
||
81 | 0, 29, 30 |
||
82 | ); |
||
83 | |||
84 | protected $actionCheck = array( |
||
85 | 6, 7, 8, 0, 10, 3, 4, 2, 4, 3, |
||
86 | 3, -1, -1, 5, -1, 6, -1, 7, 7, -1, |
||
87 | -1, 9, 9 |
||
88 | ); |
||
89 | |||
90 | protected $actionBase = array( |
||
91 | 5, 8, -6, -6, 2, 4, 6, 7, 12, 12, |
||
92 | 3, 10, 8, 9, 11, 0, -6, 0, 0, 13, |
||
93 | 12, 13, 13 |
||
94 | ); |
||
95 | |||
96 | protected $actionDefault = array( |
||
97 | 32767,32767, 8, 13,32767, 16,32767,32767, 16, 16, |
||
98 | 32767,32767,32767, 6,32767 |
||
99 | ); |
||
100 | |||
101 | protected $goto = array( |
||
102 | 4, 6, 2, 20 |
||
103 | ); |
||
104 | |||
105 | protected $gotoCheck = array( |
||
106 | 2, 2, 6, 5 |
||
107 | ); |
||
108 | |||
109 | protected $gotoBase = array( |
||
110 | 0, 0, -8, 0, 0, -2, 1 |
||
111 | ); |
||
112 | |||
113 | protected $gotoDefault = array( |
||
114 | -32768, 10, 7, 9, 5, 19, 3 |
||
115 | ); |
||
116 | |||
117 | protected $ruleToNonTerminal = array( |
||
118 | 0, 1, 1, 1, 4, 4, 5, 5, 3, 6, |
||
119 | 6, 6, 6, 6, 2, 2, 2 |
||
120 | ); |
||
121 | |||
122 | protected $ruleToLength = array( |
||
123 | 1, 3, 5, 5, 1, 2, 3, 5, 2, 1, |
||
124 | 1, 1, 1, 2, 1, 2, 0 |
||
125 | ); |
||
126 | |||
127 | protected function initReduceCallbacks() { |
||
182 | } |
||
183 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.