Index: src/inspector/debugger_script_externs.js |
diff --git a/src/inspector/debugger_script_externs.js b/src/inspector/debugger_script_externs.js |
index 6f36fb9c41ecc28234943c7f59c2f485e7196277..732e940f1315dcb0f72eb8b6c87436ecefb6bec6 100644 |
--- a/src/inspector/debugger_script_externs.js |
+++ b/src/inspector/debugger_script_externs.js |
@@ -44,41 +44,9 @@ var JavaScriptCallFrame; |
*/ |
var Debug = {}; |
-Debug.clearAllBreakPoints = function() {} |
- |
/** @return {!Array<!Script>} */ |
Debug.scripts = function() {} |
-/** |
- * @param {number} scriptId |
- * @param {number=} line |
- * @param {number=} column |
- * @param {string=} condition |
- * @param {string=} groupId |
- * @param {Debug.BreakPositionAlignment=} positionAlignment |
- */ |
-Debug.setScriptBreakPointById = function(scriptId, line, column, condition, groupId, positionAlignment) {} |
- |
-/** |
- * @param {number} breakId |
- * @return {!Array<!SourceLocation>} |
- */ |
-Debug.findBreakPointActualLocations = function(breakId) {} |
- |
-/** |
- * @param {number} breakId |
- * @param {boolean} remove |
- * @return {!BreakPoint|undefined} |
- */ |
-Debug.findBreakPoint = function(breakId, remove) {} |
- |
-/** @enum */ |
-const BreakPositionAlignment = { |
- Statement: 0, |
- BreakPosition: 1 |
-}; |
-Debug.BreakPositionAlignment = BreakPositionAlignment; |
- |
/** @const */ |
var LiveEdit = {} |
@@ -104,36 +72,9 @@ Debug.LiveEdit = LiveEdit; |
*/ |
var LiveEditErrorDetails; |
-/** @typedef {{ |
- * breakpointId: number, |
- * sourceID: number, |
- * lineNumber: (number|undefined), |
- * columnNumber: (number|undefined), |
- * condition: (string|undefined), |
- * interstatementLocation: (boolean|undefined), |
- * }} |
- */ |
-var BreakpointInfo; |
- |
- |
-/** @interface */ |
-function BreakPoint() {} |
- |
-/** @return {!BreakPoint|undefined} */ |
-BreakPoint.prototype.script_break_point = function() {} |
- |
-/** @return {number} */ |
-BreakPoint.prototype.number = function() {} |
- |
- |
/** @interface */ |
function ExecutionState() {} |
-/** |
- * @param {string} source |
- */ |
-ExecutionState.prototype.evaluateGlobal = function(source) {} |
- |
/** @return {number} */ |
ExecutionState.prototype.frameCount = function() {} |
@@ -143,13 +84,6 @@ ExecutionState.prototype.frameCount = function() {} |
*/ |
ExecutionState.prototype.frame = function(index) {} |
-/** @param {number} index */ |
-ExecutionState.prototype.setSelectedFrame = function(index) {} |
- |
-/** @return {number} */ |
-ExecutionState.prototype.selectedFrame = function() {} |
- |
- |
/** @enum */ |
var ScopeType = { Global: 0, |
Local: 1, |