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

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

Issue 10981058: dartdoc supports isAbstract on methods (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 3 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
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;

Powered by Google App Engine
This is Rietveld 408576698