OLD | NEW |
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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 | 4 |
5 library mirrors; | 5 library mirrors; |
6 | 6 |
7 /** | 7 /** |
8 * The main interface for the whole mirror system. | 8 * The main interface for the whole mirror system. |
9 */ | 9 */ |
10 abstract class MirrorSystem { | 10 abstract class MirrorSystem { |
11 /** | 11 /** |
12 * Returns an unmodifiable map of all libraries in this mirror system. | 12 * Returns an unmodifiable map of all libraries in this mirror system. |
13 */ | 13 */ |
14 Map<Uri, LibraryMirror> get libraries; | 14 Map<Uri, LibraryMirror> get libraries; |
15 | 15 |
16 /** | 16 /** |
17 * Returns an iterable of all libraries in the mirror system whose library | 17 * Returns an iterable of all libraries in the mirror system whose library |
18 * name is [libraryName]. | 18 * name is [libraryName]. |
19 */ | 19 */ |
20 Iterable<LibraryMirror> findLibrary(String libraryName) { | 20 LibraryMirror findLibrary(String libraryName) { |
21 return libraries.values.where( | 21 return libraries.values.singleWhere( |
22 (library) => library.simpleName == libraryName); | 22 (library) => library.simpleName == libraryName); |
23 } | 23 } |
24 | 24 |
25 /** | 25 /** |
26 * A mirror on the [:dynamic:] type. | 26 * A mirror on the [:dynamic:] type. |
27 */ | 27 */ |
28 TypeMirror get dynamicType; | 28 TypeMirror get dynamicType; |
29 | 29 |
30 /** | 30 /** |
31 * A mirror on the [:void:] type. | 31 * A mirror on the [:void:] type. |
(...skipping 657 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
689 /** | 689 /** |
690 * Returns the URI where the source originated. | 690 * Returns the URI where the source originated. |
691 */ | 691 */ |
692 Uri get sourceUri; | 692 Uri get sourceUri; |
693 | 693 |
694 /** | 694 /** |
695 * Returns the text of this source. | 695 * Returns the text of this source. |
696 */ | 696 */ |
697 String get sourceText; | 697 String get sourceText; |
698 } | 698 } |
OLD | NEW |