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

Unified Diff: pkg/analysis_server/tool/spec/check_all_test.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 | « no previous file | pkg/analysis_server/tool/spec/codegen_tools.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analysis_server/tool/spec/check_all_test.dart
diff --git a/pkg/analysis_server/tool/spec/check_all_test.dart b/pkg/analysis_server/tool/spec/check_all_test.dart
index 850357a8407f4bae3c6ce48c279193a64c1a7674..f068f42908489560fa191fb4d0a5578d1d5f14f5 100644
--- a/pkg/analysis_server/tool/spec/check_all_test.dart
+++ b/pkg/analysis_server/tool/spec/check_all_test.dart
@@ -19,10 +19,10 @@ main() {
String script = Platform.script.toFilePath(windows: Platform.isWindows);
Directory.current = new Directory(dirname(script));
bool generateAllNeeded = false;
- for (GeneratedFile generatedFile in allTargets) {
- if (!generatedFile.check()) {
+ for (GeneratedContent generatedContent in allTargets) {
+ if (!generatedContent.check()) {
print(
- '${generatedFile.outputFile.absolute} does not have expected contents.');
+ '${generatedContent.outputFile.absolute} does not have expected contents.');
generateAllNeeded = true;
}
}
« no previous file with comments | « no previous file | pkg/analysis_server/tool/spec/codegen_tools.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698