-
Notifications
You must be signed in to change notification settings - Fork 29.7k
/
inspector_protocol_config.json
48 lines (46 loc) · 1.38 KB
/
inspector_protocol_config.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"protocol": {
"path": "js_protocol.pdl",
"package": "src/inspector/protocol",
"output": "protocol",
"namespace": ["v8_inspector", "protocol"],
"options": [
{
"domain": "Schema",
"exported": ["Domain"]
},
{
"domain": "Runtime",
"async": ["evaluate", "awaitPromise", "callFunctionOn", "runScript", "terminateExecution"],
"exported": ["StackTrace", "StackTraceId", "RemoteObject", "ExecutionContextId"]
},
{
"domain": "Debugger",
"exported": ["SearchMatch", "paused.reason"]
},
{
"domain": "Console"
},
{
"domain": "Profiler"
},
{
"domain": "HeapProfiler"
}
]
},
"exported": {
"package": "include/inspector",
"output": "../../include/inspector",
"string_header": "v8-inspector.h",
"string_in": "StringView",
"string_out": "std::unique_ptr<StringBuffer>",
"to_string_out": "StringBufferImpl::adopt(%s)",
"export_macro": "V8_EXPORT"
},
"lib": {
"package": "src/inspector/protocol",
"output": "protocol",
"string_header": "src/inspector/string-util.h"
}
}