(tokens: &[Token], position: usize)
| 4003 | |
| 4004 | #[inline(always)] |
| 4005 | pub(crate) fn calculate_safe_location(tokens: &[Token], position: usize) -> SourceLocation { |
| 4006 | if position < tokens.len() { |
| 4007 | return tokens[position].location; |
| 4008 | } |
| 4009 | tokens[tokens.len() - 1].location |
| 4010 | } |
| 4011 | |
| 4012 | #[inline(always)] |
| 4013 | pub(crate) fn is_logical_or_operator(tokens: &[Token], position: &usize) -> bool { |
no test coverage detected
searching dependent graphs…