Index: src/js/messages.js |
diff --git a/src/js/messages.js b/src/js/messages.js |
index 03bd97bb8c50d2e8d8f90d5225df0de6f5410cc6..d36db415966c486c52a1d32d66d59892513568dc 100644 |
--- a/src/js/messages.js |
+++ b/src/js/messages.js |
@@ -448,10 +448,11 @@ |
* If sourceURL comment is available returns sourceURL comment contents. |
* Otherwise, script name is returned. See |
* http://fbug.googlecode.com/svn/branches/firebug1.1/docs/ReleaseNotes_1.1.txt |
- * and Source Map Revision 3 proposal for details on using //# sourceURL |
- * comment to identify scripts that don't have name. |
+ * and Source Map Revision 3 proposal for details on using //# sourceURL and |
+ * deprecated //@ sourceURL comment to identify scripts that don't have name. |
* |
- * @return {?string} script name if present, value for //# sourceURL comment. |
+ * @return {?string} script name if present, value for //# sourceURL or |
+ * deprecated //@ sourceURL comment otherwise. |
*/ |
function ScriptNameOrSourceURL() { |
if (this.source_url) return this.source_url; |