We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 90efe2b commit 6c3fb0bCopy full SHA for 6c3fb0b
1 file changed
scripts/genksyms/lex.l
@@ -176,10 +176,10 @@ repeat:
176
switch (lexstate)
177
{
178
case ST_NORMAL:
179
+ APP;
180
switch (token)
181
182
case IDENT:
- APP;
183
184
int r = is_reserved_word(yytext, yyleng);
185
if (r >= 0)
@@ -224,26 +224,22 @@ repeat:
224
break;
225
226
case '[':
227
228
lexstate = ST_BRACKET;
229
count = 1;
230
goto repeat;
231
232
case '{':
233
234
if (dont_want_brace_phrase)
235
236
lexstate = ST_BRACE;
237
238
239
240
case '=': case ':':
241
242
lexstate = ST_EXPRESSION;
243
244
245
default:
246
247
248
}
249
0 commit comments