Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(71)

Side by Side Diff: src/inspector/js_protocol.json

Issue 2655253004: [inspector] introduced stepIntoAsync for chained callbacks (Closed)
Patch Set: fixed async/await and added tests Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/debug/debug-interface.h ('k') | src/inspector/v8-debugger.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 540 matching lines...) Expand 10 before | Expand all | Expand 10 after
551 }, 551 },
552 { 552 {
553 "name": "stepOver", 553 "name": "stepOver",
554 "description": "Steps over the statement." 554 "description": "Steps over the statement."
555 }, 555 },
556 { 556 {
557 "name": "stepInto", 557 "name": "stepInto",
558 "description": "Steps into the function call." 558 "description": "Steps into the function call."
559 }, 559 },
560 { 560 {
561 "name": "stepIntoAsync",
562 "description": "Steps into the scheduled callback."
563 },
564 {
561 "name": "stepOut", 565 "name": "stepOut",
562 "description": "Steps out of the function call." 566 "description": "Steps out of the function call."
563 }, 567 },
564 { 568 {
565 "name": "pause", 569 "name": "pause",
566 "description": "Stops on the next JavaScript statement." 570 "description": "Stops on the next JavaScript statement."
567 }, 571 },
568 { 572 {
569 "name": "resume", 573 "name": "resume",
570 "description": "Resumes JavaScript execution." 574 "description": "Resumes JavaScript execution."
(...skipping 425 matching lines...) Expand 10 before | Expand all | Expand 10 after
996 { 1000 {
997 "name": "heapStatsUpdate", 1001 "name": "heapStatsUpdate",
998 "description": "If heap objects tracking has been started then b ackend may send update for one or more fragments", 1002 "description": "If heap objects tracking has been started then b ackend may send update for one or more fragments",
999 "parameters": [ 1003 "parameters": [
1000 { "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."} 1004 { "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."}
1001 ] 1005 ]
1002 } 1006 }
1003 ] 1007 ]
1004 }] 1008 }]
1005 } 1009 }
OLDNEW
« no previous file with comments | « src/debug/debug-interface.h ('k') | src/inspector/v8-debugger.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698