Skip to content

Commit ad5a217

Browse files
committed
wip
1 parent 88b40f8 commit ad5a217

File tree

6 files changed

+1230
-972
lines changed

6 files changed

+1230
-972
lines changed

ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@
4444
buildConfiguration = "Debug"
4545
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
4646
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
47+
customLLDBInitFile = "$(SRCROOT)/Flutter/ephemeral/flutter_lldbinit"
4748
shouldUseLaunchSchemeArgsEnv = "YES"
4849
systemAttachmentLifetime = "keepAlways">
4950
<MacroExpansion>
@@ -72,6 +73,7 @@
7273
buildConfiguration = "Debug"
7374
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
7475
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
76+
customLLDBInitFile = "$(SRCROOT)/Flutter/ephemeral/flutter_lldbinit"
7577
launchStyle = "0"
7678
useCustomWorkingDirectory = "NO"
7779
ignoresPersistentStateOnLaunch = "NO"

lib/generated/intl/messages_all.dart

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,8 @@ MessageLookupByLibrary? _findExact(String localeName) {
3535
/// User programs should call this before using [localeName] for messages.
3636
Future<bool> initializeMessages(String localeName) {
3737
var availableLocale = Intl.verifiedLocale(
38-
localeName,
39-
(locale) => _deferredLibraries[locale] != null,
40-
onFailure: (_) => null,
41-
);
38+
localeName, (locale) => _deferredLibraries[locale] != null,
39+
onFailure: (_) => null);
4240
if (availableLocale == null) {
4341
return new SynchronousFuture(false);
4442
}
@@ -58,11 +56,8 @@ bool _messagesExistFor(String locale) {
5856
}
5957

6058
MessageLookupByLibrary? _findGeneratedMessagesFor(String locale) {
61-
var actualLocale = Intl.verifiedLocale(
62-
locale,
63-
_messagesExistFor,
64-
onFailure: (_) => null,
65-
);
59+
var actualLocale =
60+
Intl.verifiedLocale(locale, _messagesExistFor, onFailure: (_) => null);
6661
if (actualLocale == null) return null;
6762
return _findExact(actualLocale);
6863
}

0 commit comments

Comments
 (0)