* Expand the next token only once (if possible), and return the resulting * top token on the stack (without removing anything from the stack). * Similar in behavior to TeX's `\expandafter\futurelet`. * Equivalent to expandOnce() followed by future().
()
| 14046 | |
| 14047 | |
| 14048 | expandAfterFuture() { |
| 14049 | this.expandOnce(); |
| 14050 | return this.future(); |
| 14051 | } |
| 14052 | /** |
| 14053 | * Recursively expand first token, then return first non-expandable token. |
| 14054 | */ |
no test coverage detected