| 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 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 128 /** @type {number} */ | 128 /** @type {number} */ |
| 129 this.sourceID; | 129 this.sourceID; |
| 130 /** @type {number} */ | 130 /** @type {number} */ |
| 131 this.line; | 131 this.line; |
| 132 /** @type {number} */ | 132 /** @type {number} */ |
| 133 this.column; | 133 this.column; |
| 134 /** @type {*} */ | 134 /** @type {*} */ |
| 135 this.thisObject; | 135 this.thisObject; |
| 136 /** @type {string} */ | 136 /** @type {string} */ |
| 137 this.stepInPositions; | 137 this.stepInPositions; |
| 138 /** @type {number} */ |
| 139 this.framePointer; |
| 138 } | 140 } |
| 139 | 141 |
| 140 /** | 142 /** |
| 141 * @param {number} index | 143 * @param {number} index |
| 142 */ | 144 */ |
| 143 JavaScriptCallFrame.prototype.scopeType = function(index) { } | 145 JavaScriptCallFrame.prototype.scopeType = function(index) { } |
| 144 | 146 |
| 145 JavaScriptCallFrame.prototype.restart = function() { } | 147 JavaScriptCallFrame.prototype.restart = function() { } |
| 146 | 148 |
| 147 /** | 149 /** |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 183 // FIXME: Remove once ES6 is supported natively by JS compiler. | 185 // FIXME: Remove once ES6 is supported natively by JS compiler. |
| 184 | 186 |
| 185 /** @typedef {string} */ | 187 /** @typedef {string} */ |
| 186 var symbol; | 188 var symbol; |
| 187 | 189 |
| 188 /** | 190 /** |
| 189 * @param {string} description | 191 * @param {string} description |
| 190 * @return {symbol} | 192 * @return {symbol} |
| 191 */ | 193 */ |
| 192 function Symbol(description) {} | 194 function Symbol(description) {} |
| OLD | NEW |