Lines Matching refs:action
157 var symbol, preErrorSymbol, state, action, a, r, yyval={},p,len,newState, expected;
164 action = this.defaultActions[state];
168 // read action for current state and first input
169 action = table[state] && table[state][symbol];
174 if (typeof action === 'undefined' || !action.length || !action[0]) {
224 action = table[state] && table[state][TERROR];
229 if (action[0] instanceof Array && action.length > 1) {
233 switch (action[0]) {
241 stack.push(action[1]); // push state
259 len = this.productions_[action[1]][1];
261 // perform semantic action
270 r = this.performAction.call(yyval, yytext, yyleng, yylineno, this.yy, action[1], vstack, lstack);
283 stack.push(this.productions_[action[1]][0]); // push nonterminal (reduce)