Lines Matching defs:ToPython
17 def ToPython(self) -> str:
157 def ToPython(self):
158 return (f'{self.Bracket(self.lhs, self.lhs.ToPython())} {self.operator} '
159 f'{self.Bracket(self.rhs, self.rhs.ToPython(), True)}')
224 def ToPython(self):
225 return (f'Select({self.true_val.ToPython()}, {self.cond.ToPython()}, '
226 f'{self.false_val.ToPython()})')
271 def ToPython(self):
273 return f'{self.fn}({self.lhs.ToPython()}, {self.rhs.ToPython()})'
274 return f'{self.fn}({self.lhs.ToPython()})'
322 def ToPython(self):
349 def ToPython(self):
371 def ToPython(self):