Home | History | Annotate | Download | only in yacc

Lines Matching refs:Row

340 type Row struct {
345 var stateTable []Row
2199 stateTable = make([]Row, nstate)
2421 stateTable[i] = Row{actions, defaultAction}
3013 row := stateTable[state]
3019 action := row.actions[c]
3021 action = row.defaultAction