Expressions

- Implemented E9:operator_negate, the unary -.
This commit is contained in:
Paul Beckingham
2011-09-11 00:47:11 -04:00
parent d9fa6fbac8
commit 22e9d84074
2 changed files with 33 additions and 13 deletions

View File

@@ -47,7 +47,8 @@ private:
bool eval_match (Arg&, Arg&, bool);
// Unary.
void operator_not (Arg&, Arg&);
void operator_not (Arg&, Arg&);
void operator_negate (Arg&, Arg&);
// Binary.
void operator_and (Arg&, Arg&, Arg&);