def BREAK_LOOP(self, instr): self.ast_stack.append(_ast.Break(lineno=instr.lineno, col_offset=0))
def BREAK_LOOP(self, instr): self.push_ast_item(_ast.Break(lineno=instr.lineno, col_offset=0))
def build_break(): add_ast_node(_ast.Break())