| Index: samples/third_party/dromaeo/Suites.dart
|
| diff --git a/samples/third_party/dromaeo/Suites.dart b/samples/third_party/dromaeo/Suites.dart
|
| index 5612849d8a02a51bb78e981c4bf863355816815b..7e6ad08d8df2d0cc8a86e84a1e0c358180df421d 100644
|
| --- a/samples/third_party/dromaeo/Suites.dart
|
| +++ b/samples/third_party/dromaeo/Suites.dart
|
| @@ -136,7 +136,7 @@ class Suites {
|
| tags = tags.replaceAll('OR', '|').replaceAll('AND', '&');
|
| // A disjunction of conjunctions (e.g.,
|
| // 'js&modify|dart&dom&modify').
|
| - final taglist = tags.split('|').map((tag) => tag.split('&')).toList();
|
| + final taglist = tags.split('|').mappedBy((tag) => tag.split('&')).toList();
|
|
|
| bool match(suite) {
|
| // If any conjunction matches, return true.
|
|
|