blob: bc5e6c53a14c75b9ae52c1d909bcf223a4251cb5 [file] [log] [blame]
// Copyright (c) 2018, 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 'package:analyzer/dart/analysis/analysis_context.dart';
import 'package:analyzer/file_system/file_system.dart';
import 'package:analyzer/src/dart/analysis/analysis_context_collection.dart';
import 'package:meta/meta.dart';
/// A collection of analysis contexts.
///
/// Clients may not extend, implement or mix-in this class.
abstract class AnalysisContextCollection {
/// Initialize a newly created collection of analysis contexts that can
/// analyze the files that are included by the list of [includedPaths].
///
/// All paths must be absolute and normalized.
///
/// If a [resourceProvider] is given, then it will be used to access the file
/// system, otherwise the default resource provider will be used.
factory AnalysisContextCollection({
@required List<String> includedPaths,
ResourceProvider resourceProvider,
}) = AnalysisContextCollectionImpl;
/// Return the existing [AnalysisContext] that should be used to analyze
/// the given [path], or throw [StateError] if the [path] is not analyzed
/// in any of the created analysis contexts.
AnalysisContext contextFor(String path);
}