@Override
 public DataType visitBreak_stmt(@NotNull PythonParser.Break_stmtContext ctx) {
   if (!scope.inLoop()) throw new CompileException("Break is out of loop " + ctx.getText());
   mv.visitJumpInsn(GOTO, scope.getBreakLabel());
   return null;
 }