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

Side by Side Diff: pkg/docgen/lib/src/models/mirror_based.dart

Issue 242363004: pkg/docgen: moved model classes into minilibs (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 8 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 library docgen.models.mirror_based;
2
3 import '../exports/source_mirrors.dart';
4
5 /// Docgen representation of an item to be documented, that wraps around a
6 /// dart2js mirror.
7 abstract class MirrorBased<TMirror extends DeclarationMirror> {
8 /// The original dart2js mirror around which this object wraps.
9 TMirror get mirror;
10
11 /// Return an informative [Object.toString] for debugging.
12 String toString() => "${super.toString()} - $mirror";
13 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698