Index: pkg/front_end/test/fasta/strong_test.dart |
diff --git a/pkg/front_end/test/fasta/strong_test.dart b/pkg/front_end/test/fasta/strong_test.dart |
new file mode 100644 |
index 0000000000000000000000000000000000000000..6aee7f005c8b09a81eac5f5901b47864bcc78777 |
--- /dev/null |
+++ b/pkg/front_end/test/fasta/strong_test.dart |
@@ -0,0 +1,19 @@ |
+// Copyright (c) 2017, 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.md file. |
+ |
+library fasta.test.compile_test; |
+ |
+import 'dart:async' show Future; |
+ |
+import 'package:front_end/src/fasta/testing/suite.dart'; |
+ |
+Future<FastaContext> createContext( |
+ Chain suite, Map<String, String> environment) { |
+ environment[ENABLE_FULL_COMPILE] = ""; |
+ environment[AST_KIND_INDEX] = "${AstKind.Kernel.index}"; |
+ environment[STRONG_MODE] = ""; |
+ return FastaContext.create(suite, environment); |
+} |
+ |
+main(List<String> arguments) => runMe(arguments, createContext, "testing.json"); |