fix: cleaned up comments, removed getPosition from ident

This commit is contained in:
Barf-Vader
2025-02-07 13:33:25 +00:00
parent b6d8eb31e3
commit a09d38a40f
2 changed files with 1 additions and 4 deletions

View File

@@ -87,7 +87,6 @@ object lexer {
lexer.nonlexeme.integer.decimal32[Int].map(n => s"integer $n"),
(lexer.nonlexeme.character.ascii).map(c => s"character literal \'$c\'"),
lexer.nonlexeme.string.ascii.map(s => s"string literal \"$s\""),
// lexer.nonlexeme.symbol("()").as("function call, bruh use keyword 'call' to call functions"),
character.whitespace.map(_ => "")
) ++ desc.symbolDesc.hardKeywords.map { k =>
lexer.nonlexeme.symbol(k).as(s"keyword $k")