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

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

Issue 694753002: DevTools: Show preview for ES6 MapIterator, SetIterator in console. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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
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 724 matching lines...) Expand 10 before | Expand all | Expand 10 after
735 "id": "RemoteObjectId", 735 "id": "RemoteObjectId",
736 "type": "string", 736 "type": "string",
737 "description": "Unique object identifier." 737 "description": "Unique object identifier."
738 }, 738 },
739 { 739 {
740 "id": "RemoteObject", 740 "id": "RemoteObject",
741 "type": "object", 741 "type": "object",
742 "description": "Mirror object referencing original JavaScript ob ject.", 742 "description": "Mirror object referencing original JavaScript ob ject.",
743 "properties": [ 743 "properties": [
744 { "name": "type", "type": "string", "enum": ["object", "func tion", "undefined", "string", "number", "boolean", "symbol"], "description": "Ob ject type." }, 744 { "name": "type", "type": "string", "enum": ["object", "func tion", "undefined", "string", "number", "boolean", "symbol"], "description": "Ob ject type." },
745 { "name": "subtype", "type": "string", "optional": true, "en um": ["array", "null", "node", "regexp", "date", "map", "set"], "description": " Object subtype hint. Specified for <code>object</code> type values only." }, 745 { "name": "subtype", "type": "string", "optional": true, "en um": ["array", "null", "node", "regexp", "date", "map", "set", "iterator"], "des cription": "Object subtype hint. Specified for <code>object</code> type values o nly." },
746 { "name": "className", "type": "string", "optional": true, " description": "Object class (constructor) name. Specified for <code>object</code > type values only." }, 746 { "name": "className", "type": "string", "optional": true, " description": "Object class (constructor) name. Specified for <code>object</code > type values only." },
747 { "name": "value", "type": "any", "optional": true, "descrip tion": "Remote object value in case of primitive values or JSON values (if it wa s requested), or description string if the value can not be JSON-stringified (li ke NaN, Infinity, -Infinity, -0)." }, 747 { "name": "value", "type": "any", "optional": true, "descrip tion": "Remote object value in case of primitive values or JSON values (if it wa s requested), or description string if the value can not be JSON-stringified (li ke NaN, Infinity, -Infinity, -0)." },
748 { "name": "description", "type": "string", "optional": true, "description": "String representation of the object." }, 748 { "name": "description", "type": "string", "optional": true, "description": "String representation of the object." },
749 { "name": "objectId", "$ref": "RemoteObjectId", "optional": true, "description": "Unique object identifier (for non-primitive values)." }, 749 { "name": "objectId", "$ref": "RemoteObjectId", "optional": true, "description": "Unique object identifier (for non-primitive values)." },
750 { "name": "preview", "$ref": "ObjectPreview", "optional": tr ue, "description": "Preview containing abbreviated property values. Specified fo r <code>object</code> type values only.", "hidden": true } 750 { "name": "preview", "$ref": "ObjectPreview", "optional": tr ue, "description": "Preview containing abbreviated property values. Specified fo r <code>object</code> type values only.", "hidden": true }
751 ] 751 ]
752 }, 752 },
753 { 753 {
754 "id": "ObjectPreview", 754 "id": "ObjectPreview",
755 "type": "object", 755 "type": "object",
756 "hidden": true, 756 "hidden": true,
757 "description": "Object containing abbreviated remote object valu e.", 757 "description": "Object containing abbreviated remote object valu e.",
758 "properties": [ 758 "properties": [
759 { "name": "type", "type": "string", "enum": ["object", "func tion", "undefined", "string", "number", "boolean", "symbol"], "description": "Ob ject type." }, 759 { "name": "type", "type": "string", "enum": ["object", "func tion", "undefined", "string", "number", "boolean", "symbol"], "description": "Ob ject type." },
760 { "name": "subtype", "type": "string", "optional": true, "en um": ["array", "null", "node", "regexp", "date", "map", "set"], "description": " Object subtype hint. Specified for <code>object</code> type values only." }, 760 { "name": "subtype", "type": "string", "optional": true, "en um": ["array", "null", "node", "regexp", "date", "map", "set", "iterator"], "des cription": "Object subtype hint. Specified for <code>object</code> type values o nly." },
761 { "name": "description", "type": "string", "optional": true, "description": "String representation of the object." }, 761 { "name": "description", "type": "string", "optional": true, "description": "String representation of the object." },
762 { "name": "lossless", "type": "boolean", "description": "Det ermines whether preview is lossless (contains all information of the original ob ject)." }, 762 { "name": "lossless", "type": "boolean", "description": "Det ermines whether preview is lossless (contains all information of the original ob ject)." },
763 { "name": "overflow", "type": "boolean", "description": "Tru e iff some of the properties or entries of the original object did not fit." }, 763 { "name": "overflow", "type": "boolean", "description": "Tru e iff some of the properties or entries of the original object did not fit." },
764 { "name": "properties", "type": "array", "items": { "$ref": "PropertyPreview" }, "description": "List of the properties." }, 764 { "name": "properties", "type": "array", "items": { "$ref": "PropertyPreview" }, "description": "List of the properties." },
765 { "name": "entries", "type": "array", "items": { "$ref": "En tryPreview" }, "optional": true, "description": "List of the entries. Specified for <code>map</code> and <code>set</code> subtype values only." } 765 { "name": "entries", "type": "array", "items": { "$ref": "En tryPreview" }, "optional": true, "description": "List of the entries. Specified for <code>map</code> and <code>set</code> subtype values only." }
766 ] 766 ]
767 }, 767 },
768 { 768 {
769 "id": "PropertyPreview", 769 "id": "PropertyPreview",
770 "type": "object", 770 "type": "object",
771 "hidden": true, 771 "hidden": true,
772 "properties": [ 772 "properties": [
773 { "name": "name", "type": "string", "description": "Property name." }, 773 { "name": "name", "type": "string", "description": "Property name." },
774 { "name": "type", "type": "string", "enum": ["object", "func tion", "undefined", "string", "number", "boolean", "symbol", "accessor"], "descr iption": "Object type. Accessor means that the property itself is an accessor pr operty." }, 774 { "name": "type", "type": "string", "enum": ["object", "func tion", "undefined", "string", "number", "boolean", "symbol", "accessor"], "descr iption": "Object type. Accessor means that the property itself is an accessor pr operty." },
775 { "name": "value", "type": "string", "optional": true, "desc ription": "User-friendly property value string." }, 775 { "name": "value", "type": "string", "optional": true, "desc ription": "User-friendly property value string." },
776 { "name": "valuePreview", "$ref": "ObjectPreview", "optional ": true, "description": "Nested value preview." }, 776 { "name": "valuePreview", "$ref": "ObjectPreview", "optional ": true, "description": "Nested value preview." },
777 { "name": "subtype", "type": "string", "optional": true, "en um": ["array", "null", "node", "regexp", "date", "map", "set"], "description": " Object subtype hint. Specified for <code>object</code> type values only." } 777 { "name": "subtype", "type": "string", "optional": true, "en um": ["array", "null", "node", "regexp", "date", "map", "set", "iterator"], "des cription": "Object subtype hint. Specified for <code>object</code> type values o nly." }
778 ] 778 ]
779 }, 779 },
780 { 780 {
781 "id": "EntryPreview", 781 "id": "EntryPreview",
782 "type": "object", 782 "type": "object",
783 "hidden": true, 783 "hidden": true,
784 "properties": [ 784 "properties": [
785 { "name": "key", "$ref": "ObjectPreview", "optional": true, "description": "Preview of the key. Specified for map-like collection entries." }, 785 { "name": "key", "$ref": "ObjectPreview", "optional": true, "description": "Preview of the key. Specified for map-like collection entries." },
786 { "name": "value", "$ref": "ObjectPreview", "description": " Preview of the value." } 786 { "name": "value", "$ref": "ObjectPreview", "description": " Preview of the value." }
787 ] 787 ]
(...skipping 3112 matching lines...) Expand 10 before | Expand all | Expand 10 after
3900 ] 3900 ]
3901 }, 3901 },
3902 { 3902 {
3903 "id": "CallArgument", 3903 "id": "CallArgument",
3904 "type": "object", 3904 "type": "object",
3905 "properties": [ 3905 "properties": [
3906 { "name": "description", "type": "string", "description": "S tring representation of the object." }, 3906 { "name": "description", "type": "string", "description": "S tring representation of the object." },
3907 { "name": "enumName", "type": "string", "optional": true, "d escription": "Enum name, if any, that stands for the value (for example, a WebGL enum name)." }, 3907 { "name": "enumName", "type": "string", "optional": true, "d escription": "Enum name, if any, that stands for the value (for example, a WebGL enum name)." },
3908 { "name": "resourceId", "$ref": "ResourceId", "optional": tr ue, "description": "Resource identifier. Specified for <code>Resource</code> obj ects only." }, 3908 { "name": "resourceId", "$ref": "ResourceId", "optional": tr ue, "description": "Resource identifier. Specified for <code>Resource</code> obj ects only." },
3909 { "name": "type", "type": "string", "optional": true, "enum" : ["object", "function", "undefined", "string", "number", "boolean"], "descripti on": "Object type. Specified for non <code>Resource</code> objects only." }, 3909 { "name": "type", "type": "string", "optional": true, "enum" : ["object", "function", "undefined", "string", "number", "boolean"], "descripti on": "Object type. Specified for non <code>Resource</code> objects only." },
3910 { "name": "subtype", "type": "string", "optional": true, "en um": ["array", "null", "node", "regexp", "date", "map", "set"], "description": " Object subtype hint. Specified for <code>object</code> type values only." }, 3910 { "name": "subtype", "type": "string", "optional": true, "en um": ["array", "null", "node", "regexp", "date", "map", "set", "iterator"], "des cription": "Object subtype hint. Specified for <code>object</code> type values o nly." },
3911 { "name": "remoteObject", "$ref": "Runtime.RemoteObject", "o ptional": true, "description": "The <code>RemoteObject</code>, if requested." } 3911 { "name": "remoteObject", "$ref": "Runtime.RemoteObject", "o ptional": true, "description": "The <code>RemoteObject</code>, if requested." }
3912 ] 3912 ]
3913 }, 3913 },
3914 { 3914 {
3915 "id": "Call", 3915 "id": "Call",
3916 "type": "object", 3916 "type": "object",
3917 "properties": [ 3917 "properties": [
3918 { "name": "contextId", "$ref": "ResourceId" }, 3918 { "name": "contextId", "$ref": "ResourceId" },
3919 { "name": "functionName", "type": "string", "optional": true }, 3919 { "name": "functionName", "type": "string", "optional": true },
3920 { "name": "arguments", "type": "array", "items": { "$ref": " CallArgument" }, "optional": true }, 3920 { "name": "arguments", "type": "array", "items": { "$ref": " CallArgument" }, "optional": true },
(...skipping 612 matching lines...) Expand 10 before | Expand all | Expand 10 after
4533 { "name": "isRunning", "type": "boolean", "description": "If the animation player is still running." } 4533 { "name": "isRunning", "type": "boolean", "description": "If the animation player is still running." }
4534 ], 4534 ],
4535 "description": "Gets the state of an AnimationPlayer.", 4535 "description": "Gets the state of an AnimationPlayer.",
4536 "hidden": true 4536 "hidden": true
4537 } 4537 }
4538 ], 4538 ],
4539 "events": [ 4539 "events": [
4540 ] 4540 ]
4541 }] 4541 }]
4542 } 4542 }
OLDNEW
« Source/bindings/core/v8/DebuggerScript.js ('K') | « Source/devtools/front_end/inspectorStyle.css ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698