From c1bafe3d097b2af1dfa2ec5484878bc2e01e1445 Mon Sep 17 00:00:00 2001 From: "Wolfgang (Blub) Bumiller" Date: Thu, 16 Aug 2012 14:24:12 +0200 Subject: [PATCH] OP_PREFIX flag for ~ and ! --- lexer.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lexer.h b/lexer.h index ae8812b..c224c87 100644 --- a/lexer.h +++ b/lexer.h @@ -134,8 +134,8 @@ static const oper_info operators[] = { { ".", 2, opid1('.'), ASSOC_LEFT, 15, 0 }, - { "!", 1, opid2('!', 'P'), ASSOC_RIGHT, 14, 0 }, - { "~", 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, opid3('+','+','P'), ASSOC_RIGHT, 14, OP_PREFIX }, -- 2.39.2