We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd218f0 commit c94df5fCopy full SHA for c94df5f
generator/parser/parser.cpp
@@ -1055,6 +1055,15 @@ bool Parser::parseOperator(OperatorAST *&node)
1055
ast->close = token_stream.cursor();
1056
nextToken();
1057
}
1058
+ else if (token_stream.lookAhead() == Token_string_literal
1059
+ && token_stream.lookAhead(1) == Token_identifier)
1060
+ {
1061
+ // string literal operator
1062
+ ast->op = token_stream.cursor();
1063
+ nextToken();
1064
+ // skip string literal suffix for now
1065
1066
+ }
1067
else
1068
{
1069
return false;
0 commit comments