Chromium Code Reviews| Index: pkg/front_end/lib/compilation_error.dart |
| diff --git a/pkg/front_end/lib/compilation_error.dart b/pkg/front_end/lib/compilation_error.dart |
| index 5e30da1c730cc5c961d11cc81b8610f704e4887c..1377efd4b0ef487d71ec33ca966e253900041cc1 100644 |
| --- a/pkg/front_end/lib/compilation_error.dart |
| +++ b/pkg/front_end/lib/compilation_error.dart |
| @@ -9,18 +9,19 @@ 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. |
| +/// it occurred and how to fix it. |
| /// |
| /// TODO(paulberry): add a reference to the analyzer error code. |
| /// |
| /// Not intended to be implemented or extended by clients. |
| abstract class CompilationError { |
|
Siggi Cherem (dart-lang)
2017/07/11 03:57:13
Paul - I like the idea of renaming this to Compila
Paul Berry
2017/07/11 16:00:59
Fine by me :)
ahe
2017/07/12 13:14:43
CompilationProblem?
Siggi Cherem (dart-lang)
2017/07/12 21:54:58
Is it always a problem? Don't we want the compiler
ahe
2017/07/12 23:44:56
CompilationOpportunity? ;-)
ahe
2017/07/13 00:06:03
Comportunity? ;-)
|
| - /// A text description of how the user can fix the error. May be `null`. |
| - String get correction; |
| + /// A text description of the compile error. |
| + String get message; |
| + |
| + /// A suggestion for the user to hint them on how to fix the error. May be |
| + /// `null`. |
| + String get tip; |
| /// The source span where the error occurred. |
| SourceSpan get span; |
| - |
| - /// A text description of the compile error. |
| - String get message; |
| } |