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.framePointerHigh; |
| 140 /** @type {number} */ |
| 141 this.framePointerLow; |
138 } | 142 } |
139 | 143 |
140 /** | 144 /** |
141 * @param {number} index | 145 * @param {number} index |
142 */ | 146 */ |
143 JavaScriptCallFrame.prototype.scopeType = function(index) { } | 147 JavaScriptCallFrame.prototype.scopeType = function(index) { } |
144 | 148 |
145 JavaScriptCallFrame.prototype.restart = function() { } | 149 JavaScriptCallFrame.prototype.restart = function() { } |
146 | 150 |
147 /** | 151 /** |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
183 // FIXME: Remove once ES6 is supported natively by JS compiler. | 187 // FIXME: Remove once ES6 is supported natively by JS compiler. |
184 | 188 |
185 /** @typedef {string} */ | 189 /** @typedef {string} */ |
186 var symbol; | 190 var symbol; |
187 | 191 |
188 /** | 192 /** |
189 * @param {string} description | 193 * @param {string} description |
190 * @return {symbol} | 194 * @return {symbol} |
191 */ | 195 */ |
192 function Symbol(description) {} | 196 function Symbol(description) {} |
OLD | NEW |