| 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 573 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 584 | 584 |
| 585 /** | 585 /** |
| 586 * @override | 586 * @override |
| 587 * @param {function(?WebInspector.DebuggerModel.GeneratorObjectDetails)} cal
lback | 587 * @param {function(?WebInspector.DebuggerModel.GeneratorObjectDetails)} cal
lback |
| 588 */ | 588 */ |
| 589 generatorObjectDetails: function(callback) | 589 generatorObjectDetails: function(callback) |
| 590 { | 590 { |
| 591 this._object.generatorObjectDetails(callback); | 591 this._object.generatorObjectDetails(callback); |
| 592 }, | 592 }, |
| 593 | 593 |
| 594 /** | |
| 595 * @override | |
| 596 * @param {function(?Array<!DebuggerAgent.CollectionEntry>)} callback | |
| 597 */ | |
| 598 collectionEntries: function(callback) | |
| 599 { | |
| 600 this._object.collectionEntries(callback); | |
| 601 }, | |
| 602 | |
| 603 __proto__: WebInspector.RemoteObject.prototype | 594 __proto__: WebInspector.RemoteObject.prototype |
| 604 } | 595 } |
| 605 | 596 |
| OLD | NEW |