-
Notifications
You must be signed in to change notification settings - Fork 209
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add transformer tests #12
Conversation
ab52744
to
0943c55
Compare
@@ -14,7 +14,11 @@ import '../asset/writer.dart'; | |||
import '../builder/builder.dart'; | |||
import '../builder/build_step_impl.dart'; | |||
|
|||
abstract class BuilderTransformer implements Transformer, DeclaringTransformer { | |||
/// A [Transformer] which runs multiple [Builder]s. Extend this class and define |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
uber nit: line break after the first sentence here, per Effective Dart
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
0943c55
to
977579c
Compare
@@ -14,7 +14,12 @@ import '../asset/writer.dart'; | |||
import '../builder/builder.dart'; | |||
import '../builder/build_step_impl.dart'; | |||
|
|||
abstract class BuilderTransformer implements Transformer, DeclaringTransformer { | |||
/// A [Transformer] which runs multiple [Builder]s. | |||
/// Extend this class and define the [builders] getter to create a [Transformer] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I still think we should be explicit about our (lack of) ordering guarantees here, maybe just as simple as "there are no guarantees about the order in which [Builder]s will be run."
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
LGTM! |
977579c
to
6f59037
Compare
closes #2