Roll engine to c88ba37c794f57982374bb53a694301198cad593 (#15053)

* Roll engine to c88ba37c794f57982374bb53a694301198cad593.

Changes since last roll:
  - move generated entry points JSON out of flutter_patched_sdk
  - List missing core lib bigint_patch.dart source for new Bigint implementation (#4735)
  - Skip over .emf-files. (#4739)
  - Roll dart to ee15c8eb689791f6777eb3f6b0a1e9c58ff0671b.

* defaultValue -> orElse
This commit is contained in:
Alexander Aprelev 2018-03-02 06:23:59 -08:00 committed by GitHub
parent 73a1a74ba1
commit da24ad0b33
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -1 +1 @@
269bab73b6ad8f0e54fcd2b84f278ba857baf4af
c88ba37c794f57982374bb53a694301198cad593

View File

@ -109,5 +109,5 @@ Future<Match> _firstMatchInFile(File file, RegExp regExp) async {
.transform(UTF8.decoder)
.transform(const LineSplitter())
.map(regExp.firstMatch)
.firstWhere((Match match) => match != null, defaultValue: () => null);
.firstWhere((Match match) => match != null, orElse: () => null);
}