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

Unified Diff: pkg/dartdoc/lib/mirrors.dart

Issue 11366004: Update MirrorSystem (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 2 months 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | pkg/dartdoc/lib/mirrors_util.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/dartdoc/lib/mirrors.dart
diff --git a/pkg/dartdoc/lib/mirrors.dart b/pkg/dartdoc/lib/mirrors.dart
index fc82fa11fff945ea51adf64535b90e5e4cae6d23..860e3c508a2a81e53997568041704480cea87b07 100644
--- a/pkg/dartdoc/lib/mirrors.dart
+++ b/pkg/dartdoc/lib/mirrors.dart
@@ -56,6 +56,16 @@ abstract class MirrorSystem {
* Returns an unmodifiable map of all libraries in this mirror system.
*/
Map<String, LibraryMirror> get libraries;
+
+ /**
+ * A mirror on the [:Dynamic:] type.
kasperl 2012/10/31 10:34:54 [:Dynamic:] -> [:dynamic:]
Johnni Winther 2012/10/31 10:56:40 Done.
+ */
+ TypeMirror get dynamicType;
+
+ /**
+ * A mirror on the [:void:] type.
+ */
+ TypeMirror get voidType;
}
@@ -68,7 +78,7 @@ abstract class Mirror {
/**
* Returns the mirror system which contains this mirror.
*/
- MirrorSystem get system;
+ MirrorSystem get mirrors;
}
abstract class DeclarationMirror implements Mirror {
« no previous file with comments | « no previous file | pkg/dartdoc/lib/mirrors_util.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698