blob: 13d132742e96a9b3f5ac4b6fa641a1d60dfef96a [file] [log] [blame]
// 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 file.
import '../api_prototype/compiler_options.dart' show CompilerOptions;
import '../base/processed_options.dart' show ProcessedOptions;
class InitializedCompilerState {
final CompilerOptions options;
final ProcessedOptions processedOpts;
InitializedCompilerState(this.options, this.processedOpts);
}