| Index: lib/compiler/implementation/warnings.dart
|
| diff --git a/lib/compiler/implementation/warnings.dart b/lib/compiler/implementation/warnings.dart
|
| index b9b836530d1e56d5c55296069ae59e97a99cdbd2..322de1d4e8ec40cd2e324c30caca4f44abcd9ad9 100644
|
| --- a/lib/compiler/implementation/warnings.dart
|
| +++ b/lib/compiler/implementation/warnings.dart
|
| @@ -297,32 +297,32 @@ class Message {
|
|
|
| class Diagnostic {
|
| final Message message;
|
| - Diagnostic(MessageKind kind, List<Type> arguments)
|
| + Diagnostic(MessageKind kind, List arguments)
|
| : message = new Message(kind, arguments);
|
| String toString() => message.toString();
|
| }
|
|
|
| class TypeWarning extends Diagnostic {
|
| - TypeWarning(MessageKind kind, List<Type> arguments)
|
| + TypeWarning(MessageKind kind, List arguments)
|
| : super(kind, arguments);
|
| }
|
|
|
| class ResolutionError extends Diagnostic {
|
| - ResolutionError(MessageKind kind, List<Type> arguments)
|
| + ResolutionError(MessageKind kind, List arguments)
|
| : super(kind, arguments);
|
| }
|
|
|
| class ResolutionWarning extends Diagnostic {
|
| - ResolutionWarning(MessageKind kind, List<Type> arguments)
|
| + ResolutionWarning(MessageKind kind, List arguments)
|
| : super(kind, arguments);
|
| }
|
|
|
| class CompileTimeConstantError extends Diagnostic {
|
| - CompileTimeConstantError(MessageKind kind, List<Type> arguments)
|
| + CompileTimeConstantError(MessageKind kind, List arguments)
|
| : super(kind, arguments);
|
| }
|
|
|
| class CompilationError extends Diagnostic {
|
| - CompilationError(MessageKind kind, List<Type> arguments)
|
| + CompilationError(MessageKind kind, List arguments)
|
| : super(kind, arguments);
|
| }
|
|
|