OLD | NEW |
| (Empty) |
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 | |
3 // BSD-style license that can be found in the LICENSE file. | |
4 library kernel.repository; | |
5 | |
6 import 'ast.dart'; | |
7 | |
8 /// Keeps track of which [Library] objects have been created for a given URI. | |
9 /// | |
10 /// To load different files into the same IR, pass in the same repository | |
11 /// object to the loaders. | |
12 class Repository { | |
13 final Map<Uri, Library> _uriToLibrary = <Uri, Library>{}; | |
14 final List<Library> libraries = <Library>[]; | |
15 | |
16 Library getLibraryReference(Uri uri) { | |
17 assert(uri.hasScheme); | |
18 return _uriToLibrary.putIfAbsent(uri, () => _buildLibraryReference(uri)); | |
19 } | |
20 | |
21 Library _buildLibraryReference(Uri uri) { | |
22 assert(uri.hasScheme); | |
23 var library = new Library(uri, isExternal: true)..fileUri = '$uri'; | |
24 libraries.add(library); | |
25 return library; | |
26 } | |
27 } | |
OLD | NEW |