Index: pkg/barback/test/transformer/mock.dart |
diff --git a/pkg/barback/test/transformer/mock.dart b/pkg/barback/test/transformer/mock.dart |
index 531f9e4dbeb98db4e33da09af412e8acdaab9699..8b0f5e296acfdfcb26b6466478581667d8dea24b 100644 |
--- a/pkg/barback/test/transformer/mock.dart |
+++ b/pkg/barback/test/transformer/mock.dart |
@@ -190,8 +190,14 @@ abstract class MockTransformer extends Transformer { |
} |
/// The wrapped version of [isPrimary] for subclasses to override. |
- Future<bool> doIsPrimary(AssetId id); |
+ /// |
+ /// This may return a `Future<bool>` or, if it's entirely synchronous, a |
+ /// `bool`. |
+ doIsPrimary(AssetId id); |
/// The wrapped version of [doApply] for subclasses to override. |
- Future doApply(Transform transform); |
+ /// |
+ /// If this does asynchronous work, it should return a [Future] that completes |
+ /// once it's finished. |
+ doApply(Transform transform); |
} |