Index: src/inspector/js_protocol.json |
diff --git a/src/inspector/js_protocol.json b/src/inspector/js_protocol.json |
index dca7df274800f133f5df49de2be8a51af79db603..d0af43ded5988fd6983bea2906460a50ef5e60a8 100644 |
--- a/src/inspector/js_protocol.json |
+++ b/src/inspector/js_protocol.json |
@@ -453,7 +453,7 @@ |
"id": "Scope", |
"type": "object", |
"properties": [ |
- { "name": "type", "type": "string", "enum": ["global", "local", "with", "closure", "catch", "block", "script", "eval"], "description": "Scope type." }, |
+ { "name": "type", "type": "string", "enum": ["global", "local", "with", "closure", "catch", "block", "script", "eval", "module"], "description": "Scope type." }, |
dgozman
2016/12/12 23:22:18
Module is similar to global, correct?
This patch n
|
{ "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 }, |
{ "name": "startLocation", "$ref": "Location", "optional": true, "description": "Location in the source code where scope starts" }, |