
fuchsia_tester.dart still assumes Dart 1. Previously, it ran tests directly from source, flutter_platform.dart automatically runs a kernel compile when operating in Dart 2 mode, but this assumes a functional Dart SDK is available in the artifacts directly, and fuchsia_tester.dart mocks out the artifacts directory with an empty temp dir. Remaining work is: 1. Get the frontend server building as a dependency on Fuchsia. 2. Patch fuchsia_tester.dart to use a valid Dart SDK and frontend server. This also reverts migration to Dart 2 typedef syntax. This reverts commit 6c56bb2. (#18362) This reverts commit 3daebd0. (#18316)
27 lines
938 B
Dart
27 lines
938 B
Dart
// DO NOT EDIT. This is code generated via package:intl/generate_localized.dart
|
|
// This is a library that provides messages for a en locale. All the
|
|
// messages from the main program should be duplicated here with the same
|
|
// function name.
|
|
|
|
import 'package:intl/intl.dart';
|
|
import 'package:intl/message_lookup_by_library.dart';
|
|
|
|
final messages = new MessageLookup();
|
|
|
|
// ignore: unused_element
|
|
final _keepAnalysisHappy = Intl.defaultLocale;
|
|
|
|
// ignore: non_constant_identifier_names
|
|
typedef MessageIfAbsent(String message_str, List args);
|
|
|
|
class MessageLookup extends MessageLookupByLibrary {
|
|
get localeName => 'en';
|
|
|
|
final messages = _notInlinedMessages(_notInlinedMessages);
|
|
static _notInlinedMessages(_) => <String, Function> {
|
|
"market" : MessageLookupByLibrary.simpleMessage("MARKET"),
|
|
"portfolio" : MessageLookupByLibrary.simpleMessage("PORTFOLIO"),
|
|
"title" : MessageLookupByLibrary.simpleMessage("Stocks")
|
|
};
|
|
}
|