summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/code.l10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/code.l b/src/code.l
index 4a9b0da..60d6c7e 100644
--- a/src/code.l
+++ b/src/code.l
@@ -2362,6 +2362,16 @@ RAWEND ")"[^ \t\(\)\\]{0,16}\"
if (--g_sharpCount<=0)
BEGIN ( Bases );
}
+<SkipSharp>"\"" {
+ g_code->codify(yytext);
+ g_lastStringContext=YY_START;
+ BEGIN(SkipString);
+ }
+<SkipSharp>"\'" {
+ g_code->codify(yytext);
+ g_lastStringContext=YY_START;
+ BEGIN(SkipStringS);
+ }
<Bases>"(" {
g_code->codify(yytext);
g_sharpCount=1;