public AddBreakpointResult addBreakpoint()

in src/com/jetbrains/clion/bugeater/debugger/BugEaterDriver.java [272:279]


    public AddBreakpointResult addBreakpoint(@NotNull String path, int line, @Nullable String condition, boolean ignoreSourceHash) throws ExecutionException, DebuggerCommandException {
        //todo
        LLBreakpoint breakpoint = new LLBreakpoint(lastId.incrementAndGet(), path, line, condition);

        LLBreakpointLocation location = new LLBreakpointLocation(path + "#" + line, Address.fromUnsignedLong(line * 256L),
                new FileLocation(path, line));
        return new AddBreakpointResult(breakpoint, Collections.singletonList(location));
    }