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

Unified Diff: src/mirror-debugger.js

Issue 7045003: Support extracting source mapping url defined by //@ sourceMappingURL=<url> comment. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 9 years, 7 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
« no previous file with comments | « src/messages.js ('k') | test/mjsunit/debug-compile-event.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/mirror-debugger.js
diff --git a/src/mirror-debugger.js b/src/mirror-debugger.js
index 3a0353515c1d449053959fd2049d60015b3c54c7..a544be999953c9a7d9377045c2c4a5da6548009c 100644
--- a/src/mirror-debugger.js
+++ b/src/mirror-debugger.js
@@ -1782,6 +1782,11 @@ ScriptMirror.prototype.source = function() {
};
+ScriptMirror.prototype.sourceMappingURL = function() {
+ return this.script_.sourceMappingURL();
+};
+
+
ScriptMirror.prototype.lineOffset = function() {
return this.script_.line_offset;
};
« no previous file with comments | « src/messages.js ('k') | test/mjsunit/debug-compile-event.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698