X-Git-Url: https://git.xonotic.org/?p=xonotic%2Fgmqcc.git;a=blobdiff_plain;f=lexer.h;h=71ff198eed024b66c1932830d26148cd45e0d514;hp=5d7b7f611bd0ef8166ed8e70ad432c7173ea6e3b;hb=d1def27dbb06344242a7e4ee4ee870a089560abb;hpb=9edae7fa0a06516a94b411f5d6220bd25157cee7 diff --git a/lexer.h b/lexer.h index 5d7b7f6..71ff198 100644 --- a/lexer.h +++ b/lexer.h @@ -250,6 +250,9 @@ static const oper_info fte_operators[] = { { "+", 2, opid1('+'), ASSOC_LEFT, 12, 0 }, { "-", 2, opid1('-'), ASSOC_LEFT, 12, 0 }, + { "<<", 2, opid2('<','<'), ASSOC_LEFT, 11, 0 }, + { ">>", 2, opid2('>','>'), ASSOC_LEFT, 11, 0 }, + { "<", 2, opid1('<'), ASSOC_LEFT, 10, 0 }, { ">", 2, opid1('>'), ASSOC_LEFT, 10, 0 }, { "<=", 2, opid2('<','='), ASSOC_LEFT, 10, 0 },