parol_runtime/lexer/
format_token.rs

1///
2/// Common formatting for Token and OwnedToken
3///
4pub trait FormatToken {
5    ///
6    /// Generates a formatted position which an editor can follow via mouse click.
7    ///
8    fn format(&self, terminal_names: &'static [&'static str]) -> String;
9}