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

Unified Diff: packages/barback/lib/src/transformer/declaring_aggregate_transform.dart

Issue 2989763002: Update charted to 0.4.8 and roll (Closed)
Patch Set: Removed Cutch from list of reviewers Created 3 years, 5 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
Index: packages/barback/lib/src/transformer/declaring_aggregate_transform.dart
diff --git a/packages/barback/lib/src/transformer/declaring_aggregate_transform.dart b/packages/barback/lib/src/transformer/declaring_aggregate_transform.dart
index cfcb782b5d41a16b28c44e1de7f1b572477fbcfb..e0f3956eeca42a4a760b22981e1525d6f2d65b60 100644
--- a/packages/barback/lib/src/transformer/declaring_aggregate_transform.dart
+++ b/packages/barback/lib/src/transformer/declaring_aggregate_transform.dart
@@ -85,7 +85,7 @@ class DeclaringAggregateTransform extends BaseTransform {
/// The controller for [DeclaringAggregateTransform].
class DeclaringAggregateTransformController extends BaseTransformController {
- DeclaringAggregateTransform get transform => super.transform;
+ final DeclaringAggregateTransform transform;
/// The set of ids that the transformer declares it will emit.
Set<AssetId> get outputIds => transform._outputIds;
@@ -93,7 +93,7 @@ class DeclaringAggregateTransformController extends BaseTransformController {
bool get isDone => transform._idController.isClosed;
DeclaringAggregateTransformController(TransformNode node)
- : super(new DeclaringAggregateTransform._(node));
+ : transform = new DeclaringAggregateTransform._(node);
/// Adds a primary input id to the [DeclaringAggregateTransform.primaryIds]
/// stream.

Powered by Google App Engine
This is Rietveld 408576698