Chromium Code Reviews| Index: pkg/barback/lib/src/transform_node.dart |
| diff --git a/pkg/barback/lib/src/transform_node.dart b/pkg/barback/lib/src/transform_node.dart |
| index b17c9a5ba84d98898a9a372b268662061d480734..84e42c0d0a5664bf10f2189bff6578099b1ed210 100644 |
| --- a/pkg/barback/lib/src/transform_node.dart |
| +++ b/pkg/barback/lib/src/transform_node.dart |
| @@ -43,6 +43,7 @@ class TransformNode { |
| /// The outputs created by this transform the last time it was run. |
| /// |
| /// Used to tell if an output was removed in a later run. |
| + Set<AssetId> get outputs => _outputs; |
|
Bob Nystrom
2013/07/17 17:18:26
Instead of making this public, how about defining:
nweiz
2013/07/17 18:29:55
I thought about that, but I couldn't come up with
|
| var _outputs = new Set<AssetId>(); |
| TransformNode(this.phase, this._transformer, this.primary); |