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

Unified Diff: pkg/barback/test/transformer/lazy_many_to_one.dart

Issue 243793005: Don't require Transformer methods to return Futures. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: code review 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pkg/barback/test/transformer/lazy_bad.dart ('k') | pkg/barback/test/transformer/lazy_rewrite.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/barback/test/transformer/lazy_many_to_one.dart
diff --git a/pkg/barback/test/transformer/lazy_many_to_one.dart b/pkg/barback/test/transformer/lazy_many_to_one.dart
index dcdc0b16b31c0743931b238d3dab161eab266ed5..ef407ef0369f4d1a3e52542a6f92f706f823396f 100644
--- a/pkg/barback/test/transformer/lazy_many_to_one.dart
+++ b/pkg/barback/test/transformer/lazy_many_to_one.dart
@@ -4,8 +4,6 @@
library barback.test.transformer.lazy_many_to_one;
-import 'dart:async';
-
import 'package:barback/barback.dart';
import 'many_to_one.dart';
@@ -17,7 +15,7 @@ class LazyManyToOneTransformer extends ManyToOneTransformer
LazyManyToOneTransformer(String extension)
: super(extension);
- Future declareOutputs(DeclaringTransform transform) {
+ void declareOutputs(DeclaringTransform transform) {
transform.declareOutput(transform.primaryId.changeExtension(".out"));
}
}
« no previous file with comments | « pkg/barback/test/transformer/lazy_bad.dart ('k') | pkg/barback/test/transformer/lazy_rewrite.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698