From c446d7ba45332fcf36e9a8e8377af9e092b99429 Mon Sep 17 00:00:00 2001 From: Bryan English Date: Wed, 28 Jan 2026 23:46:35 -0500 Subject: [PATCH] fix line comments --- hylo-lang/hyloc/src/tokenizer.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/hylo-lang/hyloc/src/tokenizer.rs b/hylo-lang/hyloc/src/tokenizer.rs index 9ac92a5..093c012 100644 --- a/hylo-lang/hyloc/src/tokenizer.rs +++ b/hylo-lang/hyloc/src/tokenizer.rs @@ -90,6 +90,7 @@ pub fn tokenize<'a>(input: &'a str) -> Result>> { in_line_comment = false; last_is_whitespace = true; // not really true, but means don't need space after } + continue; } if char == '"' { -- 2.43.0