* Remove and return the next unexpanded token.
()
| 13880 | |
| 13881 | |
| 13882 | popToken() { |
| 13883 | this.future(); // ensure non-empty stack |
| 13884 | |
| 13885 | return this.stack.pop(); |
| 13886 | } |
| 13887 | /** |
| 13888 | * Add a given token to the token stack. In particular, this get be used |
| 13889 | * to put back a token returned from one of the other methods. |
no test coverage detected