We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4a9be13 commit 9d42d50Copy full SHA for 9d42d50
src/code.l
@@ -1727,11 +1727,16 @@ ENDQopt ("const"|"volatile"|"sealed"|"override")({BN}+("const"|"volatile"|"seale
1727
}
1728
1729
<MemberCall,MemberCall2,FuncCall>[;:] { // recover from unexpected end of call
1730
- if (yytext[0]==';' || yyextra->bracketCount<=0)
+ //if (yytext[0]==';' || yyextra->bracketCount<=0)
1731
+ if (yyextra->bracketCount<=0)
1732
{
1733
unput(*yytext);
1734
BEGIN(CallEnd);
1735
1736
+ else
1737
+ {
1738
+ yyextra->code->codify(yytext);
1739
+ }
1740
1741
<CallEnd>[ \t\n]* { codifyLines(yyscanner,yytext); }
1742
<CallEnd>[;:] {
0 commit comments