Chromium Code Reviews| 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 { |