1
2
3
4
5
6
7
8
use crate::parser::predule::Parser;

impl Parser {
    #[allow(dead_code)]
    pub(crate) fn show_tokens(&self) {
        println!("{:?}", self);
    }
}