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

Unified Diff: packages/barback/lib/src/transformer/base_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/base_transform.dart
diff --git a/packages/barback/lib/src/transformer/base_transform.dart b/packages/barback/lib/src/transformer/base_transform.dart
index fe3ab3b6cdd3cf0708a66cc5cef89dbb9a49948b..69492f0cc875db8051aceb0c97a96c9e5d435fb1 100644
--- a/packages/barback/lib/src/transformer/base_transform.dart
+++ b/packages/barback/lib/src/transformer/base_transform.dart
@@ -76,7 +76,7 @@ abstract class BaseTransform {
/// [BaseTransform] without exposing getters in the public API.
abstract class BaseTransformController {
/// The [BaseTransform] controlled by this controller.
- final BaseTransform transform;
+ BaseTransform get transform;
/// The ids of primary inputs that should be consumed.
Set<AssetId> get consumedPrimaries => transform._consumedPrimaries;
@@ -92,8 +92,6 @@ abstract class BaseTransformController {
/// See also [done].
bool get isDone;
- BaseTransformController(this.transform);
-
/// Mark this transform as finished emitting new inputs or input ids.
///
/// This is distinct from [cancel] in that it *doesn't* indicate that the

Powered by Google App Engine
This is Rietveld 408576698