Lines Matching defs:ToPython
127 def ToPython(self) -> str:
271 def ToPython(self):
272 return (f'{self.Bracket(self.lhs, self.lhs.ToPython())} {self.operator} '
273 f'{self.Bracket(self.rhs, self.rhs.ToPython(), True)}')
341 def ToPython(self):
342 return (f'Select({self.true_val.ToPython()}, {self.cond.ToPython()}, '
343 f'{self.false_val.ToPython()})')
392 def ToPython(self):
394 return f'{self.fn}({self.lhs.ToPython()}, {self.rhs.ToPython()})'
395 return f'{self.fn}({self.lhs.ToPython()})'
459 def ToPython(self):
481 def ToPython(self):
511 def ToPython(self):
536 def ToPython(self):