From 4014d8a70bd41115bccc0dcac33c6dd35c98502c Mon Sep 17 00:00:00 2001 From: Anthony DePasquale Date: Tue, 1 Oct 2024 21:52:51 +0200 Subject: [PATCH] Trying to fix test --- Sources/Lexer.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Sources/Lexer.swift b/Sources/Lexer.swift index 3506081..c1eaee5 100644 --- a/Sources/Lexer.swift +++ b/Sources/Lexer.swift @@ -72,8 +72,8 @@ let keywords: [String: TokenType] = [ "not": .not, "true": .booleanLiteral, "false": .booleanLiteral, - "none": .nullLiteral, - "None": .nullLiteral, +// "none": .nullLiteral, +// "None": .nullLiteral, ] func isWord(char: String) -> Bool {