Chromium Code Reviews| Index: pkg/dartdoc/lib/mirrors.dart |
| diff --git a/pkg/dartdoc/lib/mirrors.dart b/pkg/dartdoc/lib/mirrors.dart |
| index 092b92a4ee40b502a79039dc801d28f9ec9a8c15..81d0e993deef5c6ec712825926a1998c0c32ba89 100644 |
| --- a/pkg/dartdoc/lib/mirrors.dart |
| +++ b/pkg/dartdoc/lib/mirrors.dart |
| @@ -201,6 +201,11 @@ abstract class InterfaceMirror implements TypeMirror, ObjectMirror { |
| bool get isDeclaration; |
| /** |
| + * Is [:true:] if this class is abstract. |
|
Lasse Reichstein Nielsen
2012/09/28 08:33:37
"is abstract" -> "is declared abstract".
It's the
Johnni Winther
2012/09/28 13:08:06
Done.
|
| + */ |
| + bool get isAbstract; |
| + |
| + /** |
| * Returns a list of the type arguments for this type. |
| */ |
| List<TypeMirror> get typeArguments; |
| @@ -350,6 +355,11 @@ abstract class MethodMirror implements MemberMirror { |
| TypeMirror get returnType; |
| /** |
| + * Is the reflectee abstract? |
|
Lasse Reichstein Nielsen
2012/09/28 08:33:37
Doesn't follow the same structure(s?) as the other
Johnni Winther
2012/09/28 13:08:06
Done.
|
| + */ |
| + bool get isAbstract; |
| + |
| + /** |
| * Is [:true:] if this method is a constant constructor. |
| */ |
| bool get isConst; |