| OLD | NEW |
| 1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 library kernel.repository; | 4 library kernel.repository; |
| 5 | 5 |
| 6 import 'ast.dart'; | 6 import 'ast.dart'; |
| 7 | 7 |
| 8 /// Keeps track of which [Library] objects have been created for a given URI. | 8 /// Keeps track of which [Library] objects have been created for a given URI. |
| 9 /// | 9 /// |
| 10 /// To load different files into the same IR, pass in the same repository | 10 /// To load different files into the same IR, pass in the same repository |
| 11 /// object to the loaders. | 11 /// object to the loaders. |
| 12 class Repository { | 12 class Repository { |
| 13 final Map<Uri, Library> _uriToLibrary = <Uri, Library>{}; | 13 final Program program = new Program(); |
| 14 final List<Library> libraries = <Library>[]; | |
| 15 | 14 |
| 16 Library getLibraryReference(Uri uri) { | 15 Library getLibraryReference(Uri uri) => program.getLibraryReference(uri); |
| 17 assert(uri.hasScheme); | |
| 18 return _uriToLibrary.putIfAbsent(uri, () => _buildLibraryReference(uri)); | |
| 19 } | |
| 20 | 16 |
| 21 Library _buildLibraryReference(Uri uri) { | 17 List<Library> get libraries => program.libraries; |
| 22 assert(uri.hasScheme); | 18 CanonicalName get root => program.root; |
| 23 var library = new Library(uri, isExternal: true)..fileUri = '$uri'; | |
| 24 libraries.add(library); | |
| 25 return library; | |
| 26 } | |
| 27 } | 19 } |
| OLD | NEW |