60aba749ca
also speeds up codegen_test by reusing the analysis context BatchCompiler is pretty close to how analyzer_cli works now (other than missing features) R=vsm@google.com Review URL: https://codereview.chromium.org/1235503010.
12 lines
525 B
Dart
12 lines
525 B
Dart
// Copyright (c) 2015, 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.
|
|
|
|
library dev_compiler.devc;
|
|
|
|
export 'src/analysis_context.dart'
|
|
show createAnalysisContext, createAnalysisContextWithSources;
|
|
export 'src/compiler.dart' show BatchCompiler, setupLogger, createErrorReporter;
|
|
export 'src/server/server.dart' show DevServer;
|
|
export 'strong_mode.dart' show StrongModeOptions;
|