From 15b78dc0b6b90b9dac10549f47fe05cc891f8509 Mon Sep 17 00:00:00 2001 From: Dummi26 Date: Sun, 12 Mar 2023 13:27:50 +0100 Subject: [PATCH] removed leftover debug prints --- src/parse/parse.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/parse/parse.rs b/src/parse/parse.rs index f6e0bf6..4108298 100644 --- a/src/parse/parse.rs +++ b/src/parse/parse.rs @@ -382,7 +382,6 @@ fn parse_type_adv(file: &mut File, in_fn_args: bool) -> Result<(VType, bool), Pa let mut count = 0; loop { count += 1; - eprintln!("count: {count}"); let (st, closed_bracket) = parse_single_type_adv(file, in_fn_args)?; types.push(st); if closed_bracket { @@ -392,11 +391,9 @@ fn parse_type_adv(file: &mut File, in_fn_args: bool) -> Result<(VType, bool), Pa file.skip_whitespaces(); match file.peek() { Some('/') => { - eprintln!("/ YAY"); file.next(); } Some(ch) => { - eprintln!("Ch: {ch}"); break; } _ => break,