microsoft/vscode-react-native
Publicmirrored from https://github.com/microsoft/vscode-react-nativeAvailable
src/cdp-proxy/CDPMessageHandlers/CDPAPINames.ts
13lines · modeblame
b7451aefRedMickey6 years ago | 1 | // Copyright (c) Microsoft Corporation. All rights reserved. |
| 2 | // Licensed under the MIT license. See LICENSE file in the project root for details. | |
| 3 | | |
| 4 | export const CDP_API_NAMES = { | |
| 5 | DEBUGGER_SET_BREAKPOINT: "Debugger.setBreakpoint", | |
| 6 | RUNTIME_CALL_FUNCTION_ON: "Runtime.callFunctionOn", | |
| 7 | DEBUGGER_PAUSED: "Debugger.paused", | |
259c018fYuri Skorokhodov5 years ago | 8 | RUNTIME_ENABLE: "Runtime.enable", |
| 9 | CONSOLE_MESSAGE_ADDED: "Console.messageAdded", | |
| 10 | RUNTIME_CONSOLE_API_CALLED: "Runtime.consoleAPICalled", | |
f5b444ffRedMickey5 years ago | 11 | EXECUTION_CONTEXT_CREATED: "Runtime.executionContextCreated", |
b7451aefRedMickey6 years ago | 12 | CLOSE: "close", |
| 13 | }; |