** Test whether next token is 'c'; if so, skip it. */
| 93 | ** Test whether next token is 'c'; if so, skip it. |
| 94 | */ |
| 95 | static int testnext (LexState *ls, int c) { |
| 96 | if (ls->t.token == c) { |
| 97 | luaX_next(ls); |
| 98 | return 1; |
| 99 | } |
| 100 | else return 0; |
| 101 | } |
| 102 | |
| 103 | |
| 104 | /* |