Returns `true` if the parser is at a soft keyword token.
(&self)
| 130 | |
| 131 | /// Returns `true` if the parser is at a soft keyword token. |
| 132 | pub(super) fn at_soft_keyword(&self) -> bool { |
| 133 | self.current_token_kind().is_soft_keyword() |
| 134 | } |
| 135 | |
| 136 | /// Returns `true` if the current token is the start of an expression. |
| 137 | pub(super) fn at_expr(&self) -> bool { |
no test coverage detected