Lines Matching refs:action
144 var symbol, preErrorSymbol, state, action, a, r, yyval={},p,len,newState, expected;
151 action = this.defaultActions[state];
155 // read action for current state and first input
156 action = table[state] && table[state][symbol];
161 if (typeof action === 'undefined' || !action.length || !action[0]) {
211 action = table[state] && table[state][TERROR];
216 if (action[0] instanceof Array && action.length > 1) {
220 switch (action[0]) {
228 stack.push(action[1]); // push state
246 len = this.productions_[action[1]][1];
248 // perform semantic action
257 r = this.performAction.call(yyval, yytext, yyleng, yylineno, this.yy, action[1], vstack, lstack);
270 stack.push(this.productions_[action[1]][0]); // push nonterminal (reduce)