aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_syntax/src/string_lexing/byte.rs
blob: b3228d6ca150da5f6faf8d81f8620abdead1cd70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
use super::parser::Parser;
use super::CharComponent;

pub fn parse_byte_literal(src: &str) -> ByteComponentIterator {
    ByteComponentIterator {
        parser: Parser::new(src),
        has_closing_quote: false,
    }
}

pub struct ByteComponentIterator<'a> {
    parser: Parser<'a>,
    pub has_closing_quote: bool,
}

impl<'a> Iterator for ByteComponentIterator<'a> {
    type Item = CharComponent;
    fn next(&mut self) -> Option<CharComponent> {
        if self.parser.pos == 0 {
            assert!(
                self.parser.advance() == 'b',
                "Byte literal should start with a `b`"
            );

            assert!(
                self.parser.advance() == '\'',
                "Byte literal should start with a `b`, followed by a quote"
            );
        }

        if let Some(component) = self.parser.parse_char_component() {
            return Some(component);
        }

        // We get here when there are no char components left to parse
        if self.parser.peek() == Some('\'') {
            self.parser.advance();
            self.has_closing_quote = true;
        }

        assert!(
            self.parser.peek() == None,
            "byte literal should leave no unparsed input: src = {:?}, pos = {}, length = {}",
            self.parser.src,
            self.parser.pos,
            self.parser.src.len()
        );

        None
    }
}