Returns `true` if the current token is the start of a compound statement.
(&self)
| 81 | impl<'src> Parser<'src> { |
| 82 | /// Returns `true` if the current token is the start of a compound statement. |
| 83 | pub(super) fn at_compound_stmt(&self) -> bool { |
| 84 | self.at_ts(COMPOUND_STMT_SET) |
| 85 | } |
| 86 | |
| 87 | /// Returns `true` if the current token is the start of a simple statement, |
| 88 | /// including expressions. |
no test coverage detected