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

Unified Diff: test/debugger/test-api.js

Issue 2568083002: [inspector] add scope type for modules. (Closed)
Patch Set: Created 4 years 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 side-by-side diff with in-line comments
Download patch
Index: test/debugger/test-api.js
diff --git a/test/debugger/test-api.js b/test/debugger/test-api.js
index 2fe16c0a0fa9256555341bed40ce23a960ec9090..d8e6e7d3239abfd1263f4669a2d3f29d43c43fda 100644
--- a/test/debugger/test-api.js
+++ b/test/debugger/test-api.js
@@ -433,6 +433,7 @@ class DebugWrapper {
case "block": return this.ScopeType.Block;
case "script": return this.ScopeType.Script;
case "eval": return this.ScopeType.Eval;
+ case "module": return this.ScopeType.Module;
default: %AbortJS("Unexpected scope type");
}
}

Powered by Google App Engine
This is Rietveld 408576698