From 3e3ccae003ad0990555d17590588672aedc428c4 Mon Sep 17 00:00:00 2001 From: "Chloe M." Date: Sat, 23 May 2026 08:09:05 -0400 Subject: core: lexer: Add comment skipping Signed-off-by: Chloe M. --- include/cescal/token.h | 1 + 1 file changed, 1 insertion(+) (limited to 'include') diff --git a/include/cescal/token.h b/include/cescal/token.h index 990df77..eb9fc39 100644 --- a/include/cescal/token.h +++ b/include/cescal/token.h @@ -12,6 +12,7 @@ typedef enum { TT_NONE, /* [none] */ TT_IDENT, /* [identifier] */ + TT_COMMENT, /* [comment : ignored] */ TT_INTLIT, /* [0-9]+ */ TT_LPAREN, /* '(' */ TT_RPAREN, /* '( */ -- cgit v1.2.3