032925c4ff
Remove tree-shaker as we're not using it, and it creates problems when the SDK changes. Remove scopes from AstBuilder as we will be phasing out AstBuilder in favor of using BodyBuilder and the Forest API. Change-Id: I51950c5d8bfb0493587336325f9da8f5bf8ecea6 Reviewed-on: https://dart-review.googlesource.com/57261 Commit-Queue: Peter von der Ahé <ahe@google.com> Reviewed-by: Dan Rubel <danrubel@google.com>
19 lines
603 B
Dart
19 lines
603 B
Dart
// 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 'testing/suite.dart';
|
|
|
|
Future<FastaContext> createContext(
|
|
Chain suite, Map<String, String> environment) {
|
|
environment[ENABLE_FULL_COMPILE] = "";
|
|
return FastaContext.create(suite, environment);
|
|
}
|
|
|
|
main([List<String> arguments = const []]) =>
|
|
runMe(arguments, createContext, "../../testing.json");
|