| Index: third_party/WebKit/Source/devtools/protocol.json
|
| diff --git a/third_party/WebKit/Source/devtools/protocol.json b/third_party/WebKit/Source/devtools/protocol.json
|
| index b8aae7ce399ef8a7d945b5373bc8656447612e62..ac6606aa60021a83ddad47dcfc1332b3e78e5c0d 100644
|
| --- a/third_party/WebKit/Source/devtools/protocol.json
|
| +++ b/third_party/WebKit/Source/devtools/protocol.json
|
| @@ -3455,7 +3455,9 @@
|
| "properties": [
|
| { "name": "type", "type": "string", "enum": ["global", "local", "with", "closure", "catch", "block", "script"], "description": "Scope type." },
|
| { "name": "object", "$ref": "Runtime.RemoteObject", "description": "Object representing the scope. For <code>global</code> and <code>with</code> scopes it represents the actual object; for the rest of the scopes, it is artificial transient object enumerating scope variables as its properties." },
|
| - { "name": "name", "type": "string", "optional": true, "hidden": true }
|
| + { "name": "name", "type": "string", "optional": true, "hidden": true },
|
| + { "name": "startLocation", "$ref": "Location", "optional": true, "hidden": true, "description": "Location in the source code where scope starts" },
|
| + { "name": "endLocation", "$ref": "Location", "optional": true, "hidden": true, "description": "Location in the source code where scope ends" }
|
| ],
|
| "description": "Scope description."
|
| },
|
|
|