Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 309 Bytes

debug.md

File metadata and controls

14 lines (10 loc) · 309 Bytes

Debugging

Some hints to debug the Shiika compiler.

Debug parser

Uncomment this in src/parser/base.rs

    /// Print parser debug log (uncomment to enable)
    pub(super) fn debug_log(&self, _msg: &str) {
        //println!("{}{} {}", self.lv_space(), _msg, self.lexer.debug_info());
    }