| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 WebInspector.SourceMapNamesResolver = {}; | 5 WebInspector.SourceMapNamesResolver = {}; |
| 6 | 6 |
| 7 WebInspector.SourceMapNamesResolver._cachedMapSymbol = Symbol("cache"); | 7 WebInspector.SourceMapNamesResolver._cachedMapSymbol = Symbol("cache"); |
| 8 WebInspector.SourceMapNamesResolver._cachedIdentifiersSymbol = Symbol("cachedIde
ntifiers"); | 8 WebInspector.SourceMapNamesResolver._cachedIdentifiersSymbol = Symbol("cachedIde
ntifiers"); |
| 9 | 9 |
| 10 /** | 10 /** |
| (...skipping 564 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 575 | 575 |
| 576 /** | 576 /** |
| 577 * @override | 577 * @override |
| 578 * @param {function(?WebInspector.DebuggerModel.FunctionDetails)} callback | 578 * @param {function(?WebInspector.DebuggerModel.FunctionDetails)} callback |
| 579 */ | 579 */ |
| 580 functionDetails: function(callback) | 580 functionDetails: function(callback) |
| 581 { | 581 { |
| 582 this._object.functionDetails(callback); | 582 this._object.functionDetails(callback); |
| 583 }, | 583 }, |
| 584 | 584 |
| 585 /** | |
| 586 * @override | |
| 587 * @param {function(?WebInspector.DebuggerModel.GeneratorObjectDetails)} cal
lback | |
| 588 */ | |
| 589 generatorObjectDetails: function(callback) | |
| 590 { | |
| 591 this._object.generatorObjectDetails(callback); | |
| 592 }, | |
| 593 | |
| 594 __proto__: WebInspector.RemoteObject.prototype | 585 __proto__: WebInspector.RemoteObject.prototype |
| 595 } | 586 } |
| 596 | 587 |
| OLD | NEW |