Home | History | Annotate | Download | only in tools

Lines Matching refs:iftrue

754     def __init__(self,cond,iftrue,iffalse):
757 self.iftrue = iftrue
761 return "(?: %s %s %s)" % (repr(self.cond),repr(self.iftrue),repr(self.iffalse))
764 return "(%s) ? (%s) : (%s)" % (self.cond, self.iftrue, self.iffalse)