Chromium Code Reviews| Index: sdk/lib/mirrors/mirrors.dart |
| =================================================================== |
| --- sdk/lib/mirrors/mirrors.dart (revision 28620) |
| +++ sdk/lib/mirrors/mirrors.dart (working copy) |
| @@ -764,6 +764,14 @@ |
| List<ClassMirror> get superinterfaces; |
| /** |
| + * The mixin of this class. |
| + * If this class is the result of a mixin application of the |
| + * form S with M, returns a class mirror on M. |
| + * Otherwise returns a class mirror on [reflectee]. |
|
ahe
2013/10/15 07:00:38
Otherwise returns this.
gbracha
2013/10/15 17:03:21
That is a stronger specification. In principle, yo
ahe
2013/10/16 07:28:39
Returning "this" is more accurate in case of subcl
|
| + */ |
| + ClassMirror get mixin; |
| + |
| + /** |
| * An immutable map from names to mirrors for all members of |
| * this type. |
| * |