lexer.l (jq-1.5) | : | lexer.l (jq-1.6) | ||
---|---|---|---|---|
skipping to change at line 73 | skipping to change at line 73 | |||
"|=" { return SETPIPE; } | "|=" { return SETPIPE; } | |||
"+=" { return SETPLUS; } | "+=" { return SETPLUS; } | |||
"-=" { return SETMINUS; } | "-=" { return SETMINUS; } | |||
"*=" { return SETMULT; } | "*=" { return SETMULT; } | |||
"/=" { return SETDIV; } | "/=" { return SETDIV; } | |||
"%=" { return SETMOD; } | "%=" { return SETMOD; } | |||
"//=" { return SETDEFINEDOR; } | "//=" { return SETDEFINEDOR; } | |||
"<=" { return LESSEQ; } | "<=" { return LESSEQ; } | |||
">=" { return GREATEREQ; } | ">=" { return GREATEREQ; } | |||
".." { return REC; } | ".." { return REC; } | |||
"?//" { return ALTERNATION; } | ||||
"."|"?"|"="|";"|","|":"|"|"|"+"|"-"|"*"|"/"|"%"|"\$"|"<"|">" { return yytext[0]; } | "."|"?"|"="|";"|","|":"|"|"|"+"|"-"|"*"|"/"|"%"|"\$"|"<"|">" { return yytext[0]; } | |||
"["|"{"|"(" { | "["|"{"|"(" { | |||
return enter(yytext[0], YY_START, yyscanner); | return enter(yytext[0], YY_START, yyscanner); | |||
} | } | |||
"]"|"}"|")" { | "]"|"}"|")" { | |||
return try_exit(yytext[0], YY_START, yyscanner); | return try_exit(yytext[0], YY_START, yyscanner); | |||
} | } | |||
End of changes. 1 change blocks. | ||||
0 lines changed or deleted | 1 lines changed or added |