From: Jay Freeman (saurik) Date: Wed, 16 Dec 2015 00:34:26 +0000 (-0800) Subject: Precedence and RightHand have to represent Output. X-Git-Tag: v0.9.590~207 X-Git-Url: https://git.saurik.com/cycript.git/commitdiff_plain/42520424373a78ce16295e28f2131a36749a6ea1?ds=inline Precedence and RightHand have to represent Output. --- diff --git a/Syntax.hpp b/Syntax.hpp index 7bc5bbe..f11c2f2 100644 --- a/Syntax.hpp +++ b/Syntax.hpp @@ -896,6 +896,12 @@ struct CYThis : struct CYBoolean : CYTrivial { + CYPrecedence(4) + + virtual bool RightHand() const { + return true; + } + virtual bool Value() const = 0; virtual void Output(CYOutput &out, CYFlags flags) const; };