make it obvious in lexer to ignore comments

This commit is contained in:
2025-06-03 13:59:04 +01:00
parent 604839d324
commit c23f9c22e1

View File

@@ -103,7 +103,7 @@ int yywrap(void *) {
COLUMN_NO += yyleng;
}
#[^\n]* {}
#[^\n]* { /* skip comment */ }
. {
GET_STATE