Returns `true` if the current token is the start of an expression.
(&self)
| 135 | |
| 136 | /// Returns `true` if the current token is the start of an expression. |
| 137 | pub(super) fn at_expr(&self) -> bool { |
| 138 | self.at_ts(EXPR_SET) || self.at_soft_keyword() |
| 139 | } |
| 140 | |
| 141 | /// Returns `true` if the current token ends a sequence. |
| 142 | pub(super) fn at_sequence_end(&self) -> bool { |
no test coverage detected