| 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 05a061e2f6c5a06ee3c31a0794e2fdac66bf2cd6..65efaa8b488f936ceabb6b3eaee06d7f9fec831f 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;
|
| - var message = new WebInspector.SourceFrameMessage(exceptionDetails.text, WebInspector.SourceFrameMessage.Level.Error, exceptionDetails.line - 1, exceptionDetails.column + 1);
|
| + var message = new WebInspector.UISourceCode.Message(WebInspector.UISourceCode.Message.Level.Error, exceptionDetails.text, exceptionDetails.line - 1, exceptionDetails.column + 1);
|
| this._sourceFrame.addMessageToSource(message);
|
| this._compilationFinishedForTest();
|
| }
|
|
|