Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(353)

Side by Side Diff: dart/sdk/lib/_internal/compiler/implementation/mirrors/mirrors.dart

Issue 23455028: Mirrors overhaul. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Merged with r29550. Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « dart/runtime/lib/mirrors_patch.dart ('k') | dart/sdk/lib/_internal/dartdoc/lib/src/json_serializer.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698