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

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

Issue 1947773002: Fix all strong-mode warnings. (Closed) Base URL: git@github.com:dart-lang/barback@master
Patch Set: Code review changes Created 4 years, 7 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 | « lib/src/transformer/base_transform.dart ('k') | lib/src/transformer/wrapping_aggregate_transformer.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/src/transformer/declaring_aggregate_transform.dart
diff --git a/lib/src/transformer/declaring_aggregate_transform.dart b/lib/src/transformer/declaring_aggregate_transform.dart
index cfcb782b5d41a16b28c44e1de7f1b572477fbcfb..e0f3956eeca42a4a760b22981e1525d6f2d65b60 100644
--- a/lib/src/transformer/declaring_aggregate_transform.dart
+++ b/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.
« no previous file with comments | « lib/src/transformer/base_transform.dart ('k') | lib/src/transformer/wrapping_aggregate_transformer.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698