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

Unified Diff: pkg/docgen/lib/docgen.dart

Issue 268583002: Access parameter data in Annotations, as well as fixed export visibility (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 7 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 | « no previous file | pkg/docgen/lib/src/generator.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/docgen/lib/docgen.dart
diff --git a/pkg/docgen/lib/docgen.dart b/pkg/docgen/lib/docgen.dart
index c23cd7d5dda3fddbc5b5b9dfcd32c62fc3d1e187..6b5077755e48e35a872aff7b4377380224a8bf6b 100644
--- a/pkg/docgen/lib/docgen.dart
+++ b/pkg/docgen/lib/docgen.dart
@@ -53,8 +53,8 @@ Future<bool> docgen(List<String> files, {String packageRoot,
introFileName: introFileName, out: out,
excludeLibraries: excludeLibraries,
includeDependentPackages: includeDependentPackages,
- startPage: startPage, pubScript: pubScript, dartBinary: dartBinary,
- indentJSON: indentJSON);
+ startPage: startPage, pubScriptValue: pubScript,
+ dartBinaryValue: dartBinary, indentJSON: indentJSON);
viewer.addBackViewerCode();
if (compile || serve) {
result.then((success) {
@@ -64,6 +64,8 @@ Future<bool> docgen(List<String> files, {String packageRoot,
});
}
} else if (compile || serve) {
+ gen.pubScript = pubScript;
+ gen.dartBinary = dartBinary;
viewer.createViewer(serve);
}
return result;
« no previous file with comments | « no previous file | pkg/docgen/lib/src/generator.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698