(chars: &[char], pos: &mut usize)
| 73 | } |
| 74 | |
| 75 | fn skip_ws(chars: &[char], pos: &mut usize) { |
| 76 | while *pos < chars.len() && chars[*pos].is_ascii_whitespace() { |
| 77 | *pos += 1; |
| 78 | } |
| 79 | } |
| 80 | |
| 81 | fn parse_ident(chars: &[char], pos: &mut usize) -> String { |
| 82 | let mut s = String::new(); |
no test coverage detected