Returns `true` if the current token ends a sequence.
(&self)
| 140 | |
| 141 | /// Returns `true` if the current token ends a sequence. |
| 142 | pub(super) fn at_sequence_end(&self) -> bool { |
| 143 | self.at_ts(END_SEQUENCE_SET) |
| 144 | } |
| 145 | |
| 146 | /// Parses every Python expression. |
| 147 | /// |
no test coverage detected