| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 134 this.stepInPositions; | 134 this.stepInPositions; |
| 135 } | 135 } |
| 136 | 136 |
| 137 /** | 137 /** |
| 138 * @param {number} index | 138 * @param {number} index |
| 139 */ | 139 */ |
| 140 JavaScriptCallFrame.prototype.scopeType = function(index) { } | 140 JavaScriptCallFrame.prototype.scopeType = function(index) { } |
| 141 | 141 |
| 142 JavaScriptCallFrame.prototype.restart = function() { } | 142 JavaScriptCallFrame.prototype.restart = function() { } |
| 143 | 143 |
| 144 JavaScriptCallFrame.prototype.evaluateGlobal = function() { } |
| 145 |
| 144 /** | 146 /** |
| 145 * @param {number} scopeNumber | 147 * @param {number} scopeNumber |
| 146 * @param {string} variableName | 148 * @param {string} variableName |
| 147 * @param {*} newValue | 149 * @param {*} newValue |
| 148 */ | 150 */ |
| 149 JavaScriptCallFrame.prototype.setVariableValue = function(scopeNumber, variableN
ame, newValue) {} | 151 JavaScriptCallFrame.prototype.setVariableValue = function(scopeNumber, variableN
ame, newValue) {} |
| 150 | 152 |
| 151 /** | 153 /** |
| 152 * @constructor | 154 * @constructor |
| 153 */ | 155 */ |
| (...skipping 17 matching lines...) Expand all Loading... |
| 171 */ | 173 */ |
| 172 CallSite.prototype.getFileName = function() { } | 174 CallSite.prototype.getFileName = function() { } |
| 173 /** | 175 /** |
| 174 * @return {number} | 176 * @return {number} |
| 175 */ | 177 */ |
| 176 CallSite.prototype.getLineNumber = function() { } | 178 CallSite.prototype.getLineNumber = function() { } |
| 177 /** | 179 /** |
| 178 * @return {number} | 180 * @return {number} |
| 179 */ | 181 */ |
| 180 CallSite.prototype.getColumnNumber = function() { } | 182 CallSite.prototype.getColumnNumber = function() { } |
| OLD | NEW |