1b400ed68d
* Move the only 3 files from server_plugin to analysis_server_plugin. * Copy some test infra into analysis_server_plugin. This is temporary, as we need some shared test infra location. Change-Id: If2b41d436c9d3051e590f60ae2eb7ab31e529321 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/364161 Commit-Queue: Samuel Rawlins <srawlins@google.com> Reviewed-by: Brian Wilkerson <brianwilkerson@google.com>
15 lines
533 B
Dart
15 lines
533 B
Dart
// Copyright (c) 2024, 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/error/error.dart';
|
|
import 'package:analyzer_plugin/utilities/fixes/fixes.dart';
|
|
|
|
/// Provides context information for [FixContributor]s.
|
|
///
|
|
/// Clients may not extend, implement or mix-in this class.
|
|
abstract interface class FixContext {
|
|
/// The error to fix.
|
|
AnalysisError get error;
|
|
}
|