parol_runtime 4.3.0

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