| 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 669 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 680 } | 680 } |
| 681 | 681 |
| 682 /** | 682 /** |
| 683 * @return {!WebInspector.SourceMapNamesResolverWorker} | 683 * @return {!WebInspector.SourceMapNamesResolverWorker} |
| 684 */ | 684 */ |
| 685 WebInspector.SourceMapNamesResolverWorker._instance = function() | 685 WebInspector.SourceMapNamesResolverWorker._instance = function() |
| 686 { | 686 { |
| 687 if (!WebInspector.SourceMapNamesResolverWorker._instanceObject) | 687 if (!WebInspector.SourceMapNamesResolverWorker._instanceObject) |
| 688 WebInspector.SourceMapNamesResolverWorker._instanceObject = new WebInspe
ctor.SourceMapNamesResolverWorker(); | 688 WebInspector.SourceMapNamesResolverWorker._instanceObject = new WebInspe
ctor.SourceMapNamesResolverWorker(); |
| 689 return WebInspector.SourceMapNamesResolverWorker._instanceObject; | 689 return WebInspector.SourceMapNamesResolverWorker._instanceObject; |
| 690 } | 690 } |
| OLD | NEW |