Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(940)

Unified Diff: pkg/intl/test/message_extraction/message_extraction_no_deferred_test.dart

Issue 414093003: Make deferred loading of message libraries optional (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Add a new file I had missed Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pkg/intl/pubspec.yaml ('k') | pkg/intl/test/message_extraction/message_extraction_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/intl/test/message_extraction/message_extraction_no_deferred_test.dart
diff --git a/pkg/intl/test/message_extraction/message_extraction_no_deferred_test.dart b/pkg/intl/test/message_extraction/message_extraction_no_deferred_test.dart
new file mode 100644
index 0000000000000000000000000000000000000000..a46ea7290a8085e4f1415f20565b9c6c7358c0fa
--- /dev/null
+++ b/pkg/intl/test/message_extraction/message_extraction_no_deferred_test.dart
@@ -0,0 +1,16 @@
+// Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
+// for details. All rights reserved. Use of this source code is governed by a
+// BSD-style license that can be found in the LICENSE file.
+
+/**
+ * A test for message extraction and code generation not using deferred
+ * loading for the generated code.
+ */
+library message_extraction_no_deferred_test;
+
+import 'message_extraction_test.dart' as mainTest;
+
+main(arguments) {
+ mainTest.useDeferredLoading = false;
+ mainTest.main(arguments);
+}
« no previous file with comments | « pkg/intl/pubspec.yaml ('k') | pkg/intl/test/message_extraction/message_extraction_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698