Index: utils/dartdoc/dartdoc.dart |
diff --git a/utils/dartdoc/dartdoc.dart b/utils/dartdoc/dartdoc.dart |
index 734df6a00028ac20284af4d91361e348bc9b873d..2eb9ec34b1440360d223604c0c554cd8bca18c16 100644 |
--- a/utils/dartdoc/dartdoc.dart |
+++ b/utils/dartdoc/dartdoc.dart |
@@ -33,6 +33,8 @@ final outdir = 'docs'; |
/** Set to `false` to not include the source code in the generated docs. */ |
bool includeSource = true; |
+FileSystem files; |
+ |
/** Special comment position used to store the library-level doc comment. */ |
final _libraryDoc = -1; |
@@ -105,7 +107,7 @@ void main() { |
document(entrypoint); |
}); |
- printStats(); |
+ printStats(elapsed); |
} |
void initializeDartDoc() { |
@@ -167,7 +169,7 @@ document(String entrypoint) { |
} |
} |
-printStats() { |
+printStats(num elapsed) { |
print('Documented $_totalLibraries libraries, $_totalTypes types, and ' + |
'$_totalMembers members in ${elapsed}msec.'); |
} |