File tree Expand file tree Collapse file tree 4 files changed +11
-3
lines changed
Expand file tree Collapse file tree 4 files changed +11
-3
lines changed Original file line number Diff line number Diff line change 1+ ## 1.0.3
2+
3+ * Work around an inference bug in the new common front-end.
4+
15## 1.0.2
26
37* Declare compatibility with ` string_scanner ` 1.0.0.
Original file line number Diff line number Diff line change @@ -6,7 +6,9 @@ import '../boolean_selector.dart';
66
77/// A selector that matches all inputs.
88class All implements BooleanSelector {
9- final variables = const [];
9+ // TODO(nweiz): Stop explicitly providing a type argument when sdk#32412 is
10+ // fixed.
11+ final variables = const < String > [];
1012
1113 const All ();
1214
Original file line number Diff line number Diff line change @@ -6,7 +6,9 @@ import '../boolean_selector.dart';
66
77/// A selector that matches no inputs.
88class None implements BooleanSelector {
9- final variables = const [];
9+ // TODO(nweiz): Stop explicitly providing a type argument when sdk#32412 is
10+ // fixed.
11+ final variables = const < String > [];
1012
1113 const None ();
1214
Original file line number Diff line number Diff line change 11name : boolean_selector
2- version : 1.0.3-dev
2+ version : 1.0.3
33description : A flexible syntax for boolean expressions.
44author :
Dart Team <[email protected] > 55homepage : https://github.com/dart-lang/boolean_selector
You can’t perform that action at this time.
0 commit comments