Index: lib/compiler/implementation/lib/string_helper.dart |
diff --git a/lib/compiler/implementation/lib/string_helper.dart b/lib/compiler/implementation/lib/string_helper.dart |
index a4b4ef43462beb7338d523f8d9a36cec16e26581..9eb839435d13bad5ba2e22fc42063386d39da6de 100644 |
--- a/lib/compiler/implementation/lib/string_helper.dart |
+++ b/lib/compiler/implementation/lib/string_helper.dart |
@@ -64,7 +64,7 @@ stringContainsUnchecked(receiver, other, startIndex) { |
return other.hasMatch(receiver.substring(startIndex)); |
} else { |
var substr = receiver.substring(startIndex); |
- return other.allMatches(substr).iterator().hasNext(); |
+ return other.allMatches(substr).iterator().hasNext; |
} |
} |