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

Unified Diff: third_party/WebKit/Source/devtools/front_end/sdk/SourceMap.js

Issue 1663723002: [DevTools] Add sourceMap support for blackboxing (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@call-set-blackboxed-ranges-on-script-parsed
Patch Set: Created 4 years, 11 months 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: third_party/WebKit/Source/devtools/front_end/sdk/SourceMap.js
diff --git a/third_party/WebKit/Source/devtools/front_end/sdk/SourceMap.js b/third_party/WebKit/Source/devtools/front_end/sdk/SourceMap.js
index 71b7fc56840279e4e786884b493486f547c40827..7a9d9a43df87996a200bf595c584d75bf2c981f2 100644
--- a/third_party/WebKit/Source/devtools/front_end/sdk/SourceMap.js
+++ b/third_party/WebKit/Source/devtools/front_end/sdk/SourceMap.js
@@ -241,6 +241,14 @@ WebInspector.SourceMap.prototype = {
},
/**
+ * @return {!Array<!WebInspector.SourceMap.Entry>}
+ */
+ mappings: function()
+ {
+ return this._mappings;
dgozman 2016/02/03 18:24:11 indentation
kozy 2016/02/09 23:10:09 Done.
+ },
+
+ /**
* @param {string} sourceURL
* @return {!Array.<!WebInspector.SourceMap.Entry>}
*/

Powered by Google App Engine
This is Rietveld 408576698