Index: src/inspector/debugger_script_externs.js |
diff --git a/src/inspector/debugger_script_externs.js b/src/inspector/debugger_script_externs.js |
index 87ebe44a4bb83f027c60e202e60b2cc5f426a9c5..c7df61f3f49550bbc2087a9658a74e4e3af29661 100644 |
--- a/src/inspector/debugger_script_externs.js |
+++ b/src/inspector/debugger_script_externs.js |
@@ -44,7 +44,7 @@ |
var JavaScriptCallFrameDetails; |
/** @typedef {{ |
- sourceID: function():(number), |
+ sourceID: function():(number|undefined), |
line: function():number, |
column: function():number, |
thisObject: !Object, |
@@ -288,9 +288,6 @@ |
/** @return {function()} */ |
FrameDetails.prototype.func = function() {} |
-/** @return {!Object} */ |
-FrameDetails.prototype.script = function() {} |
- |
/** @return {boolean} */ |
FrameDetails.prototype.isAtReturn = function() {} |
@@ -469,9 +466,6 @@ |
/** @return {!FrameDetails} */ |
FrameMirror.prototype.details = function() {} |
-/** @return {!ScriptMirror} */ |
-FrameMirror.prototype.script = function() {} |
- |
/** |
* @param {string} source |
* @param {boolean} disableBreak |