microsoft/vscode-react-native

Public

mirrored from https://github.com/microsoft/vscode-react-nativeAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
1.5.0

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

src/cdp-proxy/CDPMessageHandlers/CDPAPINames.ts

13lines · modeblame

b7451aefRedMickey6 years ago1// Copyright (c) Microsoft Corporation. All rights reserved.
2// Licensed under the MIT license. See LICENSE file in the project root for details.
3
4export const CDP_API_NAMES = {
5DEBUGGER_SET_BREAKPOINT: "Debugger.setBreakpoint",
6RUNTIME_CALL_FUNCTION_ON: "Runtime.callFunctionOn",
7DEBUGGER_PAUSED: "Debugger.paused",
259c018fYuri Skorokhodov5 years ago8RUNTIME_ENABLE: "Runtime.enable",
9CONSOLE_MESSAGE_ADDED: "Console.messageAdded",
10RUNTIME_CONSOLE_API_CALLED: "Runtime.consoleAPICalled",
f5b444ffRedMickey5 years ago11EXECUTION_CONTEXT_CREATED: "Runtime.executionContextCreated",
b7451aefRedMickey6 years ago12CLOSE: "close",
13};