| OLD | NEW |
| 1 { | 1 { |
| 2 "protocol": { | 2 "protocol": { |
| 3 "path": "js_protocol.json", | 3 "path": "js_protocol.json", |
| 4 "package": "src/inspector/protocol", | 4 "package": "src/inspector/protocol", |
| 5 "output": "protocol", | 5 "output": "protocol", |
| 6 "namespace": ["v8_inspector", "protocol"], | 6 "namespace": ["v8_inspector", "protocol"], |
| 7 "options": [ | 7 "options": [ |
| 8 { | 8 { |
| 9 "domain": "Schema", | 9 "domain": "Schema", |
| 10 "exported": ["Domain"] | 10 "exported": ["Domain"] |
| 11 }, | 11 }, |
| 12 { | 12 { |
| 13 "domain": "Runtime", | 13 "domain": "Runtime", |
| 14 "async": ["evaluate", "awaitPromise", "callFunctionOn", "runScri
pt"], | 14 "async": ["evaluate", "awaitPromise", "callFunctionOn", "runScri
pt"], |
| 15 "exported": ["StackTrace", "RemoteObject"] | 15 "exported": ["StackTrace", "RemoteObject"] |
| 16 }, | 16 }, |
| 17 { | 17 { |
| 18 "domain": "Debugger", | 18 "domain": "Debugger", |
| 19 "async": [ "scheduleStepIntoAsync" ], |
| 19 "exported": ["SearchMatch", "paused.reason"] | 20 "exported": ["SearchMatch", "paused.reason"] |
| 20 }, | 21 }, |
| 21 { | 22 { |
| 22 "domain": "Console" | 23 "domain": "Console" |
| 23 }, | 24 }, |
| 24 { | 25 { |
| 25 "domain": "Profiler" | 26 "domain": "Profiler" |
| 26 }, | 27 }, |
| 27 { | 28 { |
| 28 "domain": "HeapProfiler" | 29 "domain": "HeapProfiler" |
| (...skipping 10 matching lines...) Expand all Loading... |
| 39 "to_string_out": "StringBufferImpl::adopt(%s)", | 40 "to_string_out": "StringBufferImpl::adopt(%s)", |
| 40 "export_macro": "V8_EXPORT" | 41 "export_macro": "V8_EXPORT" |
| 41 }, | 42 }, |
| 42 | 43 |
| 43 "lib": { | 44 "lib": { |
| 44 "package": "src/inspector/protocol", | 45 "package": "src/inspector/protocol", |
| 45 "output": "protocol", | 46 "output": "protocol", |
| 46 "string_header": "src/inspector/string-util.h" | 47 "string_header": "src/inspector/string-util.h" |
| 47 } | 48 } |
| 48 } | 49 } |
| OLD | NEW |