AnalysisError constructor

  1. @Deprecated('Use tmp constructor instead')
AnalysisError(
  1. Source source,
  2. int offset,
  3. int length,
  4. ErrorCode errorCode,
  5. [List<Object?>? arguments,
  6. List<DiagnosticMessage> contextMessages = const [],
  7. Object? data]
)

Initialize a newly created analysis error. The error is associated with the given source and is located at the given offset with the given length. The error will have the given errorCode and the list of arguments will be used to complete the message and correction. If any contextMessages are provided, they will be recorded with the error.

Implementation

@Deprecated('Use tmp constructor instead')
factory AnalysisError(
  Source source,
  int offset,
  int length,
  ErrorCode errorCode, [
  List<Object?>? arguments,
  List<DiagnosticMessage> contextMessages = const [],
  Object? data,
]) {
  return AnalysisError.tmp(
    source: source,
    offset: offset,
    length: length,
    errorCode: errorCode,
    arguments: arguments ?? const [],
    contextMessages: contextMessages,
    data: data,
  );
}