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 committed by Holger Vogt
parent 0f693a55d0
commit 9ad729ec15
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;}