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

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: Updated cf. comment 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 | « lib/mirrors/mirrors.dart ('k') | 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..7297364cfdbee9523827f124c569dc278da9d9ac 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.
+ */
+ 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 {
@@ -208,7 +218,7 @@ abstract class TypeMirror implements DeclarationMirror {
bool get isObject;
/**
- * Is [:true:] iff this type is the [:Dynamic:] type.
+ * Is [:true:] iff this type is the [:dynamic:] type.
*/
bool get isDynamic;
« no previous file with comments | « lib/mirrors/mirrors.dart ('k') | pkg/dartdoc/lib/mirrors_util.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698