Skip to content

Commit f058dc1

Browse files
committed
fix BuildStep to be a valid interface
1 parent de90a36 commit f058dc1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/src/builder/build_step.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ import '../asset/id.dart';
99

1010
/// A single step in the build processes. This represents a single input and
1111
/// it also handles tracking of dependencies.
12-
class BuildStep {
12+
abstract class BuildStep {
1313
/// The primary input for this build step.
14-
final Asset input;
14+
Asset get input;
1515

1616
/// Reads an [Asset] by [id] as a [String] using [encoding].
1717
///

0 commit comments

Comments
 (0)