Index: third_party/WebKit/Source/devtools/front_end/sdk/Script.js |
diff --git a/third_party/WebKit/Source/devtools/front_end/sdk/Script.js b/third_party/WebKit/Source/devtools/front_end/sdk/Script.js |
index ea0942516f4e7d43a707cf5ae1e223271b2e7c0d..135cfe1d3d6345d20dedddeb7e1594c3a2c1062e 100644 |
--- a/third_party/WebKit/Source/devtools/front_end/sdk/Script.js |
+++ b/third_party/WebKit/Source/devtools/front_end/sdk/Script.js |
@@ -244,14 +244,14 @@ WebInspector.Script.prototype = { |
* @param {!Array.<!DebuggerAgent.CallFrame>=} callFrames |
* @param {boolean=} stackChanged |
* @param {!RuntimeAgent.StackTrace=} asyncStackTrace |
- * @param {!RuntimeAgent.ExceptionDetails=} compileError |
+ * @param {!RuntimeAgent.ExceptionDetails=} exceptionDetails |
*/ |
- function didEditScriptSource(error, callFrames, stackChanged, asyncStackTrace, compileError) |
+ function didEditScriptSource(error, callFrames, stackChanged, asyncStackTrace, exceptionDetails) |
{ |
- if (!error && !compileError) |
+ if (!error && !exceptionDetails) |
this._source = newSource; |
var needsStepIn = !!stackChanged; |
- callback(error, compileError, callFrames, asyncStackTrace, needsStepIn); |
+ callback(error, exceptionDetails, callFrames, asyncStackTrace, needsStepIn); |
} |
newSource = WebInspector.Script._trimSourceURLComment(newSource); |