* Add a given token to the token stack. In particular, this get be used * to put back a token returned from one of the other methods.
(token)
| 13891 | |
| 13892 | |
| 13893 | pushToken(token) { |
| 13894 | this.stack.push(token); |
| 13895 | } |
| 13896 | /** |
| 13897 | * Append an array of tokens to the token stack. |
| 13898 | */ |
no outgoing calls
no test coverage detected