import * as nls from "../../../../nls.js"; import { ILocalizedString } from "../../../../platform/action/common/action.js"; import { IDataBreakpointInfoResponse } from "../common/debug.js"; export declare const ADD_CONFIGURATION_ID = "debug.addConfiguration"; export declare const COPY_ADDRESS_ID = "editor.debug.action.copyAddress"; export declare const TOGGLE_BREAKPOINT_ID = "editor.debug.action.toggleBreakpoint"; export declare const TOGGLE_INLINE_BREAKPOINT_ID = "editor.debug.action.toggleInlineBreakpoint"; export declare const COPY_STACK_TRACE_ID = "debug.copyStackTrace"; export declare const REVERSE_CONTINUE_ID = "workbench.action.debug.reverseContinue"; export declare const STEP_BACK_ID = "workbench.action.debug.stepBack"; export declare const RESTART_SESSION_ID = "workbench.action.debug.restart"; export declare const TERMINATE_THREAD_ID = "workbench.action.debug.terminateThread"; export declare const STEP_OVER_ID = "workbench.action.debug.stepOver"; export declare const STEP_INTO_ID = "workbench.action.debug.stepInto"; export declare const STEP_INTO_TARGET_ID = "workbench.action.debug.stepIntoTarget"; export declare const STEP_OUT_ID = "workbench.action.debug.stepOut"; export declare const PAUSE_ID = "workbench.action.debug.pause"; export declare const DISCONNECT_ID = "workbench.action.debug.disconnect"; export declare const DISCONNECT_AND_SUSPEND_ID = "workbench.action.debug.disconnectAndSuspend"; export declare const STOP_ID = "workbench.action.debug.stop"; export declare const RESTART_FRAME_ID = "workbench.action.debug.restartFrame"; export declare const CONTINUE_ID = "workbench.action.debug.continue"; export declare const FOCUS_REPL_ID = "workbench.debug.action.focusRepl"; export declare const JUMP_TO_CURSOR_ID = "debug.jumpToCursor"; export declare const FOCUS_SESSION_ID = "workbench.action.debug.focusProcess"; export declare const SELECT_AND_START_ID = "workbench.action.debug.selectandstart"; export declare const SELECT_DEBUG_CONSOLE_ID = "workbench.action.debug.selectDebugConsole"; export declare const SELECT_DEBUG_SESSION_ID = "workbench.action.debug.selectDebugSession"; export declare const DEBUG_CONFIGURE_COMMAND_ID = "workbench.action.debug.configure"; export declare const DEBUG_START_COMMAND_ID = "workbench.action.debug.start"; export declare const DEBUG_RUN_COMMAND_ID = "workbench.action.debug.run"; export declare const EDIT_EXPRESSION_COMMAND_ID = "debug.renameWatchExpression"; export declare const COPY_WATCH_EXPRESSION_COMMAND_ID = "debug.copyWatchExpression"; export declare const SET_EXPRESSION_COMMAND_ID = "debug.setWatchExpression"; export declare const REMOVE_EXPRESSION_COMMAND_ID = "debug.removeWatchExpression"; export declare const NEXT_DEBUG_CONSOLE_ID = "workbench.action.debug.nextConsole"; export declare const PREV_DEBUG_CONSOLE_ID = "workbench.action.debug.prevConsole"; export declare const SHOW_LOADED_SCRIPTS_ID = "workbench.action.debug.showLoadedScripts"; export declare const CALLSTACK_TOP_ID = "workbench.action.debug.callStackTop"; export declare const CALLSTACK_BOTTOM_ID = "workbench.action.debug.callStackBottom"; export declare const CALLSTACK_UP_ID = "workbench.action.debug.callStackUp"; export declare const CALLSTACK_DOWN_ID = "workbench.action.debug.callStackDown"; export declare const ADD_TO_WATCH_ID = "debug.addToWatchExpressions"; export declare const COPY_EVALUATE_PATH_ID = "debug.copyEvaluatePath"; export declare const COPY_VALUE_ID = "workbench.debug.viewlet.action.copyValue"; export declare const BREAK_WHEN_VALUE_CHANGES_ID = "debug.breakWhenValueChanges"; export declare const BREAK_WHEN_VALUE_IS_ACCESSED_ID = "debug.breakWhenValueIsAccessed"; export declare const BREAK_WHEN_VALUE_IS_READ_ID = "debug.breakWhenValueIsRead"; export declare const TOGGLE_EXCEPTION_BREAKPOINTS_ID = "debug.toggleExceptionBreakpoints"; export declare const ATTACH_TO_CURRENT_CODE_RENDERER = "debug.attachToCurrentCodeRenderer"; export declare const DEBUG_COMMAND_CATEGORY: ILocalizedString; export declare const RESTART_LABEL: nls.ILocalizedString; export declare const STEP_OVER_LABEL: nls.ILocalizedString; export declare const STEP_INTO_LABEL: nls.ILocalizedString; export declare const STEP_INTO_TARGET_LABEL: nls.ILocalizedString; export declare const STEP_OUT_LABEL: nls.ILocalizedString; export declare const PAUSE_LABEL: nls.ILocalizedString; export declare const DISCONNECT_LABEL: nls.ILocalizedString; export declare const DISCONNECT_AND_SUSPEND_LABEL: nls.ILocalizedString; export declare const STOP_LABEL: nls.ILocalizedString; export declare const CONTINUE_LABEL: nls.ILocalizedString; export declare const FOCUS_SESSION_LABEL: nls.ILocalizedString; export declare const SELECT_AND_START_LABEL: nls.ILocalizedString; export declare const DEBUG_CONFIGURE_LABEL: string; export declare const DEBUG_START_LABEL: nls.ILocalizedString; export declare const DEBUG_RUN_LABEL: nls.ILocalizedString; export declare const NEXT_DEBUG_CONSOLE_LABEL: nls.ILocalizedString; export declare const PREV_DEBUG_CONSOLE_LABEL: nls.ILocalizedString; export declare const OPEN_LOADED_SCRIPTS_LABEL: nls.ILocalizedString; export declare const CALLSTACK_TOP_LABEL: nls.ILocalizedString; export declare const CALLSTACK_BOTTOM_LABEL: nls.ILocalizedString; export declare const CALLSTACK_UP_LABEL: nls.ILocalizedString; export declare const CALLSTACK_DOWN_LABEL: nls.ILocalizedString; export declare const COPY_EVALUATE_PATH_LABEL: nls.ILocalizedString; export declare const COPY_VALUE_LABEL: nls.ILocalizedString; export declare const COPY_ADDRESS_LABEL: nls.ILocalizedString; export declare const ADD_TO_WATCH_LABEL: nls.ILocalizedString; export declare const SELECT_DEBUG_CONSOLE_LABEL: nls.ILocalizedString; export declare const SELECT_DEBUG_SESSION_LABEL: nls.ILocalizedString; export declare const DEBUG_QUICK_ACCESS_PREFIX = "debug "; export declare const DEBUG_CONSOLE_QUICK_ACCESS_PREFIX = "debug consoles "; export declare function setDataBreakpointInfoResponse(resp: IDataBreakpointInfoResponse | undefined): void;