diff --git a/src/parser.rs b/src/parser.rs index e826015..2b0e4dc 100644 --- a/src/parser.rs +++ b/src/parser.rs @@ -434,6 +434,7 @@ fn is_word_char(c: char) -> bool { } fn parse_string(s: &'static str, span: SimpleSpan) -> Result>, String> { + println!("parsing string pattern: {s}"); let mut parts = vec![]; let mut current_part = String::new(); let mut start = span.start; @@ -502,6 +503,12 @@ fn parse_string(s: &'static str, span: SimpleSpan) -> Result