Skip to content

Commit da24ad0

Browse files
authored
Roll engine to c88ba37 (flutter#15053)
* Roll engine to c88ba37. 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 (flutter#4735) - Skip over .emf-files. (flutter#4739) - Roll dart to ee15c8eb689791f6777eb3f6b0a1e9c58ff0671b. * defaultValue -> orElse
1 parent 73a1a74 commit da24ad0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

bin/internal/engine.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
269bab73b6ad8f0e54fcd2b84f278ba857baf4af
1+
c88ba37c794f57982374bb53a694301198cad593

packages/flutter_tools/lib/src/project.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,5 +109,5 @@ Future<Match> _firstMatchInFile(File file, RegExp regExp) async {
109109
.transform(UTF8.decoder)
110110
.transform(const LineSplitter())
111111
.map(regExp.firstMatch)
112-
.firstWhere((Match match) => match != null, defaultValue: () => null);
112+
.firstWhere((Match match) => match != null, orElse: () => null);
113113
}

0 commit comments

Comments
 (0)