[fine] Starting on lists, god help me

This commit is contained in:
John Doty 2024-01-17 15:58:48 -08:00
parent 106f2eb30f
commit 9ee8d39963
5 changed files with 190 additions and 35 deletions

View file

@ -6,10 +6,10 @@ pub enum TokenKind {
Whitespace,
Comment,
LeftBrace,
RightBrace,
LeftBracket,
RightBracket,
LeftBrace, // TODO: LeftCurly
RightBrace, // TODO: RightCurly
LeftBracket, // TODO: LeftSquare
RightBracket, // TODO: RightSquare
LeftParen,
RightParen,
Comma,