Index: third_party/WebKit/Source/devtools/front_end/sources/JavaScriptCompiler.js |
diff --git a/third_party/WebKit/Source/devtools/front_end/sources/JavaScriptCompiler.js b/third_party/WebKit/Source/devtools/front_end/sources/JavaScriptCompiler.js |
index a96afc8ce18514753909f43248236bf807114798..21ce3b2041a54c51fdaf30de8e19621c8782bcc4 100644 |
--- a/third_party/WebKit/Source/devtools/front_end/sources/JavaScriptCompiler.js |
+++ b/third_party/WebKit/Source/devtools/front_end/sources/JavaScriptCompiler.js |
@@ -73,7 +73,7 @@ WebInspector.JavaScriptCompiler.prototype = { |
} |
if (!exceptionDetails) |
return; |
- this._sourceFrame.uiSourceCode().addMessage(WebInspector.UISourceCode.Message.Level.Error, exceptionDetails.text, exceptionDetails.line - 1, exceptionDetails.column + 1); |
+ this._sourceFrame.uiSourceCode().addLineMessage(WebInspector.UISourceCode.Message.Level.Error, exceptionDetails.text, exceptionDetails.line - 1, exceptionDetails.column + 1); |
this._compilationFinishedForTest(); |
} |
}, |