| Index: pkg/fasta/test/kompile_test.dart
|
| diff --git a/pkg/fasta/test/kompile_test.dart b/pkg/fasta/test/kompile_test.dart
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..ad452739fcc4f6b27d0d83c39720d4541227fb97
|
| --- /dev/null
|
| +++ b/pkg/fasta/test/kompile_test.dart
|
| @@ -0,0 +1,19 @@
|
| +// Copyright (c) 2016, 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:fasta/testing/suite.dart';
|
| +
|
| +Future<FeContext> createContext(
|
| + Chain suite, Map<String, String> environment) {
|
| + environment[ENABLE_FULL_COMPILE] = "";
|
| + environment[AST_KIND_INDEX] = "${AstKind.Analyzer.index}";
|
| + return TestContext.create(suite, environment, FeContext.create);
|
| +}
|
| +
|
| +main(List<String> arguments) => runMe(arguments, createContext);
|
|
|