(&self, kws: &[Keyword])
| 1753 | } |
| 1754 | |
| 1755 | fn peek_one_of_keywords(&self, kws: &[Keyword]) -> bool { |
| 1756 | match self.peek_token() { |
| 1757 | Some(Token::Keyword(k)) => kws.contains(&k), |
| 1758 | _ => false, |
| 1759 | } |
| 1760 | } |
| 1761 | |
| 1762 | /// Returns whether the sequence of keywords is found at any point before |
| 1763 | /// the end of the unprocessed tokens. |
no test coverage detected