| Index: dart/lib/compiler/implementation/compiler.dart
|
| diff --git a/dart/lib/compiler/implementation/compiler.dart b/dart/lib/compiler/implementation/compiler.dart
|
| index b9bf44636b426aac1ceaaa15b72c7c86487cbbb0..3fd2a24d34b4502ed0d1d463282dbaae623952a2 100644
|
| --- a/dart/lib/compiler/implementation/compiler.dart
|
| +++ b/dart/lib/compiler/implementation/compiler.dart
|
| @@ -698,9 +698,7 @@ abstract class Compiler implements DiagnosticListener {
|
| throw new CompilerCancelledException(message.toString());
|
| }
|
|
|
| - void reportMessage(SourceSpan span,
|
| - Diagnostic message,
|
| - api.Diagnostic kind) {
|
| + void reportMessage(SourceSpan span, Diagnostic message, api.Diagnostic kind) {
|
| // TODO(ahe): The names Diagnostic and api.Diagnostic are in
|
| // conflict. Fix it.
|
| reportDiagnostic(span, "$message", kind);
|
| @@ -750,7 +748,7 @@ abstract class Compiler implements DiagnosticListener {
|
| : spanFromTokens(position, position, uri);
|
| }
|
|
|
| - Script readScript(Uri uri, [ScriptTag node]) {
|
| + Script readScript(Uri uri, [LibraryTag node]) {
|
| unimplemented('Compiler.readScript');
|
| }
|
|
|
|
|