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

Unified Diff: pkg/barback/test/transformer/emit_nothing.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/declaring_rewrite.dart ('k') | pkg/barback/test/transformer/has_input.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/barback/test/transformer/emit_nothing.dart
diff --git a/pkg/barback/test/transformer/emit_nothing.dart b/pkg/barback/test/transformer/emit_nothing.dart
index a414cb891733c5a6dfafd040e5d5ff35f3f816dd..9cf513446ea228c15ef205fb32abd188d2749dfa 100644
--- a/pkg/barback/test/transformer/emit_nothing.dart
+++ b/pkg/barback/test/transformer/emit_nothing.dart
@@ -4,8 +4,6 @@
library barback.test.transformer.emit_nothing;
-import 'dart:async';
-
import 'package:barback/barback.dart';
import 'mock.dart';
@@ -16,10 +14,11 @@ class EmitNothingTransformer extends MockTransformer {
EmitNothingTransformer(this.extension);
- Future<bool> doIsPrimary(AssetId id) =>
- new Future.value(id.extension == ".$extension");
+ bool doIsPrimary(AssetId id) => id.extension == ".$extension";
- Future doApply(Transform transform) => new Future.value();
+ void doApply(Transform transform) {
+ // Emit nothing.
+ }
String toString() => "$extension->nothing";
}
« no previous file with comments | « pkg/barback/test/transformer/declaring_rewrite.dart ('k') | pkg/barback/test/transformer/has_input.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698