(tokens: &[Token], position: &usize, expected_kind: TokenKind)
| 3953 | |
| 3954 | #[inline(always)] |
| 3955 | pub(crate) fn is_next_token(tokens: &[Token], position: &usize, expected_kind: TokenKind) -> bool { |
| 3956 | *position + 1 < tokens.len() && tokens[*position + 1].kind == expected_kind |
| 3957 | } |
| 3958 | |
| 3959 | #[inline(always)] |
| 3960 | pub(crate) fn is_current_token_with_condition( |
no test coverage detected
searching dependent graphs…