⭐️ A friendly language for building type-safe, scalable systems!

remove debug printing

authored by giacomocavalieri.me and committed by Louis Pilfold 824e6029 aa27a823

Changed files
-3
compiler-core
src
-3
compiler-core/src/parse.rs
··· 633 633 // Give a better error when there is two consecutive spreads 634 634 // like `[..wibble, ..wabble, woo]`. However, if there's other 635 635 // elements after the tail of the list 636 - println!("{:#?}", self.tok0); 637 - println!("{:#?}", elements_after_tail); 638 - 639 636 if let Some((second_start, second_end)) = self.maybe_one(&Token::DotDot) { 640 637 let _second_tail = self.parse_expression(); 641 638