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

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: Comments updated 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
« no previous file with comments | « pkg/dartdoc/lib/dartdoc.dart ('k') | pkg/dartdoc/lib/src/mirrors/dart2js_mirror.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 d0e9afdd9cbe4b4160ddc88d1602404a988062b2..2e5368d8a7e95c0a13d4108b04705a5ccbfe9522 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 declared abstract.
+ */
+ 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 [:true:] if this method is declared abstract.
+ */
+ bool get isAbstract;
+
+ /**
* Is [:true:] if this method is a constant constructor.
*/
bool get isConst;
« no previous file with comments | « pkg/dartdoc/lib/dartdoc.dart ('k') | pkg/dartdoc/lib/src/mirrors/dart2js_mirror.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698