938d1ba524
BUG= R=paulberry@google.com Review-Url: https://codereview.chromium.org/2856223003 .
12 lines
348 B
Dart
12 lines
348 B
Dart
import 'package:front_end/compilation_error.dart';
|
|
|
|
import 'package:source_span/source_span.dart' show SourceSpan;
|
|
|
|
/// An error that only contains a message and no error location.
|
|
class SimpleError implements CompilationError {
|
|
String get correction => null;
|
|
SourceSpan get span => null;
|
|
final String message;
|
|
SimpleError(this.message);
|
|
}
|