CMPP: also skip over single-quoted strings in code-model source.

This commit is contained in:
Giles Atkinson 2026-04-16 10:42:04 +01:00
parent dc8794925c
commit 8e2f72f129
1 changed files with 1 additions and 0 deletions

View File

@ -90,6 +90,7 @@ Z [0-9A-Za-z_]
}
\"(\\.|[^"\\])*\" {return TOK_IDENTIFIER;} /* Literal string. */
\'(\\.|[^'\\])*\' {return TOK_IDENTIFIER;}
ARGS {return TOK_ARGS;}
INIT {return TOK_INIT;}