From 9521ba6f5f86dfc9c02cdbb7775273dd4f492bec Mon Sep 17 00:00:00 2001 From: Slendi Date: Wed, 28 Feb 2024 16:22:20 +0200 Subject: [PATCH] Did the funny golang thing Signed-off-by: Slendi --- src/lexer.odin | 1 - 1 file changed, 1 deletion(-) diff --git a/src/lexer.odin b/src/lexer.odin index fdd0f62..e25300e 100644 --- a/src/lexer.odin +++ b/src/lexer.odin @@ -80,7 +80,6 @@ lexer_should_not_emit_semicolon :: proc(lexer: ^Lexer) -> bool { @(private = "file") lexer_skip_whitespace :: proc(lexer: ^Lexer) { - // FIXME: Do the funny golang thing where newlines are semicolons based on some rules for lexer.char == ' ' || lexer.char == '\t' || lexer.char == '\r' || lexer.char == '\n' { if lexer.char == '\n' { if !lexer_should_not_emit_semicolon(lexer) {