DevSpec:lex: Remove annotation comment by GPT
This commit is contained in:
@@ -26,7 +26,7 @@
|
|||||||
"|" { return PIPE; }
|
"|" { return PIPE; }
|
||||||
"(" { return LPAREN; }
|
"(" { return LPAREN; }
|
||||||
")" { return RPAREN; }
|
")" { return RPAREN; }
|
||||||
"=" { return EQUALS; } // Match "=" on its own
|
"=" { return EQUALS; }
|
||||||
(\\.|[^=\|\(\) \t\r\n])+ {
|
(\\.|[^=\|\(\) \t\r\n])+ {
|
||||||
std::string token(yytext);
|
std::string token(yytext);
|
||||||
std::string unescaped;
|
std::string unescaped;
|
||||||
|
|||||||
Reference in New Issue
Block a user