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

Side by Side Diff: Source/devtools/protocol.json

Issue 738733006: DevTools: Support harmony variable scopes. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: addressed Created 6 years, 1 month 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 | Annotate | Revision Log
« no previous file with comments | « Source/devtools/front_end/sources/ScopeChainSidebarPane.js ('k') | no next file » | 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": "1" }, 2 "version": { "major": "1", "minor": "1" },
3 "domains": [{ 3 "domains": [{
4 "domain": "Inspector", 4 "domain": "Inspector",
5 "hidden": true, 5 "hidden": true,
6 "types": [], 6 "types": [],
7 "commands": [ 7 "commands": [
8 { 8 {
9 "name": "enable", 9 "name": "enable",
10 "description": "Enables inspector domain notifications." 10 "description": "Enables inspector domain notifications."
(...skipping 3120 matching lines...) Expand 10 before | Expand all | Expand 10 after
3131 { "name": "description", "type": "string", "optional": true, "description": "String label of this stack trace. For async traces this may be a name of the function that initiated the async call." }, 3131 { "name": "description", "type": "string", "optional": true, "description": "String label of this stack trace. For async traces this may be a name of the function that initiated the async call." },
3132 { "name": "asyncStackTrace", "$ref": "StackTrace", "optional ": true, "description": "Async stack trace, if any." } 3132 { "name": "asyncStackTrace", "$ref": "StackTrace", "optional ": true, "description": "Async stack trace, if any." }
3133 ], 3133 ],
3134 "description": "JavaScript call stack, including async stack tra ces.", 3134 "description": "JavaScript call stack, including async stack tra ces.",
3135 "hidden": true 3135 "hidden": true
3136 }, 3136 },
3137 { 3137 {
3138 "id": "Scope", 3138 "id": "Scope",
3139 "type": "object", 3139 "type": "object",
3140 "properties": [ 3140 "properties": [
3141 { "name": "type", "type": "string", "enum": ["global", "loca l", "with", "closure", "catch"], "description": "Scope type." }, 3141 { "name": "type", "type": "string", "enum": ["global", "loca l", "with", "closure", "catch", "block", "script"], "description": "Scope type." },
3142 { "name": "object", "$ref": "Runtime.RemoteObject", "descrip tion": "Object representing the scope. For <code>global</code> and <code>with</c ode> scopes it represents the actual object; for the rest of the scopes, it is a rtificial transient object enumerating scope variables as its properties." } 3142 { "name": "object", "$ref": "Runtime.RemoteObject", "descrip tion": "Object representing the scope. For <code>global</code> and <code>with</c ode> scopes it represents the actual object; for the rest of the scopes, it is a rtificial transient object enumerating scope variables as its properties." }
3143 ], 3143 ],
3144 "description": "Scope description." 3144 "description": "Scope description."
3145 }, 3145 },
3146 { 3146 {
3147 "id": "ExceptionDetails", 3147 "id": "ExceptionDetails",
3148 "type": "object", 3148 "type": "object",
3149 "description": "Detailed information on exception (or error) tha t was thrown during script compilation or execution.", 3149 "description": "Detailed information on exception (or error) tha t was thrown during script compilation or execution.",
3150 "properties": [ 3150 "properties": [
3151 { "name": "text", "type": "string", "description": "Exceptio n text." }, 3151 { "name": "text", "type": "string", "description": "Exceptio n text." },
(...skipping 1409 matching lines...) Expand 10 before | Expand all | Expand 10 after
4561 { "name": "isRunning", "type": "boolean", "description": "If the animation player is still running." } 4561 { "name": "isRunning", "type": "boolean", "description": "If the animation player is still running." }
4562 ], 4562 ],
4563 "description": "Gets the state of an AnimationPlayer.", 4563 "description": "Gets the state of an AnimationPlayer.",
4564 "hidden": true 4564 "hidden": true
4565 } 4565 }
4566 ], 4566 ],
4567 "events": [ 4567 "events": [
4568 ] 4568 ]
4569 }] 4569 }]
4570 } 4570 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/sources/ScopeChainSidebarPane.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698