Returns `true` if the current token is the start of a simple statement, including expressions.
(&self)
| 87 | /// Returns `true` if the current token is the start of a simple statement, |
| 88 | /// including expressions. |
| 89 | fn at_simple_stmt(&self) -> bool { |
| 90 | self.at_ts(SIMPLE_STMT_WITH_EXPR_SET) || self.at_soft_keyword() |
| 91 | } |
| 92 | |
| 93 | /// Returns `true` if the current token is the start of a simple, compound or expression |
| 94 | /// statement. |
no test coverage detected