@Override
 public void setBreakpointWithFuncName(
     @NotNull String typeId,
     @NotNull String file,
     int line,
     @Nullable String condition,
     @Nullable String logExpression,
     @Nullable String funcName) {
   for (ProcessDebugger d : allDebuggers()) {
     d.setBreakpointWithFuncName(typeId, file, line, condition, logExpression, funcName);
   }
 }