| 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 555 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 566 | 566 |
| 567 /** | 567 /** |
| 568 * @override | 568 * @override |
| 569 * @return {boolean} | 569 * @return {boolean} |
| 570 */ | 570 */ |
| 571 isNode: function() | 571 isNode: function() |
| 572 { | 572 { |
| 573 return this._object.isNode(); | 573 return this._object.isNode(); |
| 574 }, | 574 }, |
| 575 | 575 |
| 576 /** | |
| 577 * @override | |
| 578 * @param {function(?WebInspector.DebuggerModel.FunctionDetails)} callback | |
| 579 */ | |
| 580 functionDetails: function(callback) | |
| 581 { | |
| 582 this._object.functionDetails(callback); | |
| 583 }, | |
| 584 | |
| 585 __proto__: WebInspector.RemoteObject.prototype | 576 __proto__: WebInspector.RemoteObject.prototype |
| 586 } | 577 } |
| 587 | 578 |
| OLD | NEW |