We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c3573f6 commit de90a36Copy full SHA for de90a36
lib/src/builder/build_step_impl.dart
@@ -27,11 +27,6 @@ class BuildStepImpl implements BuildStep {
27
final List<Asset> _outputs = [];
28
29
/// A future that completes once all outputs current are done writing.
30
- ///
31
- /// TODO(jakemac): This is not typically needed inside of a Builder, we could
32
- /// consider moving it out to a separate class which wraps a [BuildStep] and
33
- /// this future? Another option would be an `Output` class which wraps an
34
- /// [Asset] and a [Future] that completes once its done writing.
35
Future get outputsCompleted => _outputsCompleted;
36
Future _outputsCompleted = new Future(() {});
37
0 commit comments