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
use super::Printer;
use crate::lexer::Lexeme;

use calypso_diagnostic::prelude::*;
use calypso_diagnostic::reporting::files::Files;

impl Printer {
    /// Print a token
    ///
    /// # Errors
    ///
    /// This function errors when it can't get the line/col location of a token from the byte span.
    pub fn print_token(&mut self, tok: &Lexeme<'_>) -> CalResult<String> {
        let value = tok.value();
        let span = tok.span();
        let lo = span.lo();
        let hi = span.hi();

        let sourcemgr = self.gcx.sourcemgr.read();
        let lo_loc = sourcemgr
            .location(self.file_id, lo as usize)
            .map_err(DiagnosticError::from)?;
        let hi_loc = sourcemgr
            .location(self.file_id, hi as usize)
            .map_err(DiagnosticError::from)?;
        drop(sourcemgr);

        Ok(format!(
            "text: `{}` @ {}..{} (a.k.a. {}:{}..{}:{}), type: {:?}",
            value.1,
            lo,
            hi,
            lo_loc.line_number,
            lo_loc.column_number,
            hi_loc.line_number,
            hi_loc.column_number,
            value.0,
        ))
    }
}