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

Unified Diff: pkg/analysis_server/tool/spec/codegen_tools.dart

Issue 474883002: Pub buildbot fix, TBR- Paul (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 4 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/analysis_server/tool/spec/check_all_test.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analysis_server/tool/spec/codegen_tools.dart
diff --git a/pkg/analysis_server/tool/spec/codegen_tools.dart b/pkg/analysis_server/tool/spec/codegen_tools.dart
index b72ffba2314e6f43e46ca74d8c76b5567bffe268..aff38861d9e0a19e2c6cb742e5585d233ea57f2f 100644
--- a/pkg/analysis_server/tool/spec/codegen_tools.dart
+++ b/pkg/analysis_server/tool/spec/codegen_tools.dart
@@ -306,6 +306,7 @@ typedef String FileContentsComputer();
typedef Map<String, FileContentsComputer> DirectoryContentsComputer();
abstract class GeneratedContent {
+ FileSystemEntity get outputFile;
bool check();
void generate();
}
@@ -370,7 +371,7 @@ class GeneratedDirectory extends GeneratedContent {
/**
* Get a Directory object representing the output directory.
*/
- Directory get outputDir => new Directory(joinAll(posix.split(outputDirPath)));
+ Directory get outputFile => new Directory(joinAll(posix.split(outputDirPath)));
@override
bool check() {
« no previous file with comments | « pkg/analysis_server/tool/spec/check_all_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698