da70cf3be2
This should avoid some confusion since its type is SourceSpan, not SourceLocation. R=scheglov@google.com Review URL: https://codereview.chromium.org/2503853003 .
27 lines
934 B
Dart
27 lines
934 B
Dart
// Copyright (c) 2016, 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.
|
|
|
|
/// Defines the API for the front end to communicate information about
|
|
/// compilation errors to clients.
|
|
library front_end.compilation_error;
|
|
|
|
import 'package:source_span/source_span.dart' show SourceSpan;
|
|
|
|
/// A single error that occurred during compilation, and information about where
|
|
/// it occurred.
|
|
///
|
|
/// TODO(paulberry): add a reference to the analyzer error code.
|
|
///
|
|
/// Not intended to be implemented or extended by clients.
|
|
abstract class CompilationError {
|
|
/// A text description of how the user can fix the error. May be `null`.
|
|
String get correction;
|
|
|
|
/// The source span where the error occurred.
|
|
SourceSpan get span;
|
|
|
|
/// A text description of the compile error.
|
|
String get message;
|
|
}
|