OLD | NEW |
1 { | 1 { |
2 "version": { "major": "1", "minor": "2" }, | 2 "version": { "major": "1", "minor": "2" }, |
3 "domains": [ | 3 "domains": [ |
4 { | 4 { |
5 "domain": "Schema", | 5 "domain": "Schema", |
6 "description": "Provides information about the protocol schema.", | 6 "description": "Provides information about the protocol schema.", |
7 "types": [ | 7 "types": [ |
8 { | 8 { |
9 "id": "Domain", | 9 "id": "Domain", |
10 "type": "object", | 10 "type": "object", |
(...skipping 884 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
895 "name": "start" | 895 "name": "start" |
896 }, | 896 }, |
897 { | 897 { |
898 "name": "stop", | 898 "name": "stop", |
899 "returns": [ | 899 "returns": [ |
900 { "name": "profile", "$ref": "Profile", "description": "Reco
rded profile." } | 900 { "name": "profile", "$ref": "Profile", "description": "Reco
rded profile." } |
901 ] | 901 ] |
902 }, | 902 }, |
903 { | 903 { |
904 "name": "startPreciseCoverage", | 904 "name": "startPreciseCoverage", |
| 905 "parameters": [ |
| 906 { "name": "callCount", "type": "boolean", "optional": true,
"description": "Collect accurate call counts beyond simple 'covered' or 'not cov
ered'." } |
| 907 ], |
905 "description": "Enable precise code coverage. Coverage data for
JavaScript executed before enabling precise code coverage may be incomplete. Ena
bling prevents running optimized code and resets execution counters.", | 908 "description": "Enable precise code coverage. Coverage data for
JavaScript executed before enabling precise code coverage may be incomplete. Ena
bling prevents running optimized code and resets execution counters.", |
906 "experimental": true | 909 "experimental": true |
907 }, | 910 }, |
908 { | 911 { |
909 "name": "stopPreciseCoverage", | 912 "name": "stopPreciseCoverage", |
910 "description": "Disable precise code coverage. Disabling release
s unnecessary execution count records and allows executing optimized code.", | 913 "description": "Disable precise code coverage. Disabling release
s unnecessary execution count records and allows executing optimized code.", |
911 "experimental": true | 914 "experimental": true |
912 }, | 915 }, |
913 { | 916 { |
914 "name": "takePreciseCoverage", | 917 "name": "takePreciseCoverage", |
(...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1073 { | 1076 { |
1074 "name": "heapStatsUpdate", | 1077 "name": "heapStatsUpdate", |
1075 "description": "If heap objects tracking has been started then b
ackend may send update for one or more fragments", | 1078 "description": "If heap objects tracking has been started then b
ackend may send update for one or more fragments", |
1076 "parameters": [ | 1079 "parameters": [ |
1077 { "name": "statsUpdate", "type": "array", "items": { "type":
"integer" }, "description": "An array of triplets. Each triplet describes a fra
gment. The first integer is the fragment index, the second integer is a total co
unt of objects for the fragment, the third integer is a total size of the object
s for the fragment."} | 1080 { "name": "statsUpdate", "type": "array", "items": { "type":
"integer" }, "description": "An array of triplets. Each triplet describes a fra
gment. The first integer is the fragment index, the second integer is a total co
unt of objects for the fragment, the third integer is a total size of the object
s for the fragment."} |
1078 ] | 1081 ] |
1079 } | 1082 } |
1080 ] | 1083 ] |
1081 }] | 1084 }] |
1082 } | 1085 } |
OLD | NEW |