(self, cond, then_stmts, else_cond)
| 356 | """.strip() |
| 357 | |
| 358 | def BuildConditionWithElseCond(self, cond, then_stmts, else_cond): |
| 359 | return f""" |
| 360 | if({cond}) |
| 361 | {' '.join(then_stmts)} |
| 362 | else{else_cond} |
| 363 | """.strip() |
| 364 | |
| 365 | def BuildParenthesizedOperation(self, operation): |
| 366 | return ''.join(['(', operation, ')']) |