Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(865)

Unified Diff: lib/compiler/implementation/warnings.dart

Issue 10890007: Remove more warnings. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « lib/compiler/implementation/tree/prettyprint.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
}
« no previous file with comments | « lib/compiler/implementation/tree/prettyprint.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698