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

Unified Diff: src/inspector/debugger-script.js

Issue 2502173002: [inspector] removed embbeder debugger script flag (Closed)
Patch Set: Created 4 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 side-by-side diff with in-line comments
Download patch
Index: src/inspector/debugger-script.js
diff --git a/src/inspector/debugger-script.js b/src/inspector/debugger-script.js
index 1614566ffa8565aa6244e0ee2afcfedb6bc10783..0f4ad795accfab649f2dc0ca65c97bce7f63759e 100644
--- a/src/inspector/debugger-script.js
+++ b/src/inspector/debugger-script.js
@@ -38,10 +38,7 @@ var DebuggerScript = {};
*/
DebuggerScript.getAfterCompileScript = function(eventData)
{
- var script = eventData.script().value();
- if (!script.is_debugger_script)
- return script;
- return null;
+ return eventData.script().value();
}
/** @type {!Map<!ScopeType, string>} */

Powered by Google App Engine
This is Rietveld 408576698