| Index: pkg/front_end/lib/src/fasta/compiler_command_line.dart
|
| diff --git a/pkg/front_end/lib/src/fasta/compiler_command_line.dart b/pkg/front_end/lib/src/fasta/compiler_command_line.dart
|
| index 6cd3478b5a55551070d955dd4e0107010d879887..1ad8241670952c270d06536c1db4dab414fd4350 100644
|
| --- a/pkg/front_end/lib/src/fasta/compiler_command_line.dart
|
| +++ b/pkg/front_end/lib/src/fasta/compiler_command_line.dart
|
| @@ -74,11 +74,11 @@ class CompilerCommandLine extends CommandLine {
|
| return new Set<String>.from(options["--fatal"] ?? <String>[]);
|
| }
|
|
|
| - bool get areErrorsFatal => fatal.contains("errors");
|
| + bool get errorsAreFatal => fatal.contains("errors");
|
|
|
| - bool get areWarningsFatal => fatal.contains("warnings");
|
| + bool get warningsAreFatal => fatal.contains("warnings");
|
|
|
| - bool get areNitsFatal => fatal.contains("nits");
|
| + bool get nitsAreFatal => fatal.contains("nits");
|
|
|
| static dynamic withGlobalOptions(String programName, List<String> arguments,
|
| dynamic f(CompilerContext context)) {
|
|
|