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 a9158c5 commit b8e8e34Copy full SHA for b8e8e34
parser/scanner.re
@@ -485,11 +485,11 @@ int xx_get_token(xx_scanner_state *s, xx_scanner_token *token) {
485
return 0;
486
}
487
488
- // interned strings, allowing to instantiate strings
+ /* interned strings, allowing to instantiate strings */
489
ISTRING = ([~]["] ([\\]["]|[\\].|[\001-\377]\[\\"])* ["]);
490
ISTRING {
491
- start++; // ~
492
- start++; // "
+ start++; /* ~ */
+ start++; /* " */
493
token->opcode = XX_T_ISTRING;
494
token->value = estrndup(start, YYCURSOR - start - 1);
495
token->len = YYCURSOR - start - 1;
0 commit comments