(self, cond, then_stmts)
| 341 | return f'list(REMOVE_ITEM {self._SourceVar(target)} {sources})' |
| 342 | |
| 343 | def BuildCondition(self, cond, then_stmts): |
| 344 | return f""" |
| 345 | if({cond}) |
| 346 | {' '.join(then_stmts)} |
| 347 | endif() |
| 348 | """.strip() |
| 349 | |
| 350 | def BuildConditionWithElseStmts(self, cond, then_stmts, else_stmts): |
| 351 | return f""" |