]> rethought.computer Git - sorel-lang.git/commitdiff
fix line comments keep/c446d7ba45332fcf36e9a8e8377af9e092b99429
authorBryan English <bryan@rethought.computer>
Thu, 29 Jan 2026 04:46:35 +0000 (23:46 -0500)
committerBryan English <bryan@rethought.computer>
Tue, 10 Feb 2026 04:08:54 +0000 (04:08 +0000)
hylo-lang/hyloc/src/tokenizer.rs

index 9ac92a53a5a6609ea6cfc061cc8a4ecf3c34a9f9..093c0124707bf2a31958cd4859542686f6a0a416 100644 (file)
@@ -90,6 +90,7 @@ pub fn tokenize<'a>(input: &'a str) -> Result<Vec<Token<'a>>> {
                 in_line_comment = false;
                 last_is_whitespace = true; // not really true, but means don't need space after
             }
+            continue;
         }
 
         if char == '"' {