OP_PREFIX flag for ~ and !

This commit is contained in:
Wolfgang (Blub) Bumiller 2012-08-16 14:24:12 +02:00
parent c4730b405b
commit c1bafe3d09

View file

@ -134,8 +134,8 @@ static const oper_info operators[] = {
{ ".", 2, opid1('.'), ASSOC_LEFT, 15, 0 }, { ".", 2, opid1('.'), ASSOC_LEFT, 15, 0 },
{ "!", 1, opid2('!', 'P'), ASSOC_RIGHT, 14, 0 }, { "!", 1, opid2('!', 'P'), ASSOC_RIGHT, 14, OP_PREFIX },
{ "~", 1, opid2('~', 'P'), ASSOC_RIGHT, 14, 0 }, { "~", 1, opid2('~', 'P'), ASSOC_RIGHT, 14, OP_PREFIX },
{ "+", 1, opid2('+','P'), ASSOC_RIGHT, 14, OP_PREFIX }, { "+", 1, opid2('+','P'), ASSOC_RIGHT, 14, OP_PREFIX },
{ "-", 1, opid2('-','P'), ASSOC_RIGHT, 14, OP_PREFIX }, { "-", 1, opid2('-','P'), ASSOC_RIGHT, 14, OP_PREFIX },
{ "++", 1, opid3('+','+','P'), ASSOC_RIGHT, 14, OP_PREFIX }, { "++", 1, opid3('+','+','P'), ASSOC_RIGHT, 14, OP_PREFIX },