Index: pkg/barback/lib/src/lazy_transformer.dart |
diff --git a/pkg/barback/lib/src/lazy_transformer.dart b/pkg/barback/lib/src/lazy_transformer.dart |
new file mode 100644 |
index 0000000000000000000000000000000000000000..0be4bbbd477ba9bea505d0cf6d0fcae15c4aa620 |
--- /dev/null |
+++ b/pkg/barback/lib/src/lazy_transformer.dart |
@@ -0,0 +1,15 @@ |
+// Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file |
+// for details. All rights reserved. Use of this source code is governed by a |
+// BSD-style license that can be found in the LICENSE file. |
+ |
+library barback.lazy_transformer; |
+ |
+import 'dry_run_transformer.dart'; |
+ |
+/// An interface for [Transformer]s that indicates that the transformer's |
+/// outputs shouldn't be materialized until requested. |
+/// |
+/// The [dryRun] method is used to figure out which assets should be treated as |
+/// "lazy." Lazy assets will only be materialized if they're requested by the |
+/// user or if they're used by a non-dry-run transformer. |
+abstract class LazyTransformer extends DryRunTransformer {} |
Bob Nystrom
2014/01/30 19:33:44
Is this so that you can distinguish between:
1. A
nweiz
2014/01/31 03:43:27
Yes. The former is broadly useful (at least in the
Bob Nystrom
2014/01/31 18:28:53
+1.
nweiz
2014/02/04 01:43:25
I think the conceptual complexity of a transformer
|