blob: d072cad40f79c2e8c8eaa295e430325cd4b4b639 [file] [log] [blame]
// 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.
// @dart = 2.9
import 'package:analyzer/dart/analysis/results.dart';
import 'package:analyzer/file_system/file_system.dart';
import 'package:analyzer/src/generated/source.dart';
/// [AbortCompletion] is thrown when the current completion request
/// should be aborted because either
/// the source changed since the request was made, or
/// a new completion request was received.
class AbortCompletion {}
/// Indicates a preference for completion text.
///
/// When preference is [insert], completion text may be tailored on the basis
/// of being more likely to be inserted than replaced.
///
/// For example, completing at ^ in the code below will produce named arg labels
/// with a trailing `: ,` if the preference is for [insert], but without for
/// [replace].
///
/// @A(^two: '2')
///
/// This value should generally be provided based on the default behaviour of
/// a given client/protocol (or could take user preferences into account).
enum CompletionPreference {
insert,
replace,
}
/// The information about a requested list of completions.
///
/// Clients may not extend, implement or mix-in this class.
abstract class CompletionRequest {
/// Return the offset within the source at which the completion is being
/// requested.
int get offset;
/// Return the resource provider associated with this request.
ResourceProvider get resourceProvider;
/// The analysis result for the file in which the completion is being
/// requested.
ResolvedUnitResult get result;
/// Return the source in which the completion is being requested.
Source get source;
/// Return the content of the [source] in which the completion is being
/// requested, or `null` if the content could not be accessed.
String get sourceContents;
/// Throw [AbortCompletion] if the completion request has been aborted.
void checkAborted();
}