feat: Atom parsing

This commit is contained in:
Tibo De Peuter 2025-04-16 14:04:39 +02:00
parent bd5c825ca2
commit e749f8c6cb
Signed by: tdpeuter
GPG key ID: 38297DE43F75FFE2
8 changed files with 212 additions and 11 deletions

View file

@ -127,12 +127,12 @@ class ScanTests {
assertEquals(3, tokens.size)
assertEquals(
TokenType.LEFT_PARENTHESES,
TokenType.LEFT_PARENTHESIS,
tokens[0].type,
"Expected LEFT_PARENTHESES token, got ${tokens[0].type}"
)
assertEquals(
TokenType.RIGHT_PARENTHESES,
TokenType.RIGHT_PARENTHESIS,
tokens[1].type,
"Expected RIGHT_PARENTHESES token, got ${tokens[1].type}"
)