| Index: lib/compiler/implementation/patch_parser.dart
|
| diff --git a/lib/compiler/implementation/patch_parser.dart b/lib/compiler/implementation/patch_parser.dart
|
| index 13ac6bff0e94175952c6f0921f3142067e93b7b1..26fc5ae90119688bf5d0ee9b0644a3bf3e58b978 100644
|
| --- a/lib/compiler/implementation/patch_parser.dart
|
| +++ b/lib/compiler/implementation/patch_parser.dart
|
| @@ -18,7 +18,7 @@ class PatchParserTask extends leg.CompilerTask {
|
|
|
| LibraryElement loadPatchLibrary(Uri uri) {
|
| bool newLibrary = false;
|
| - PatchLibraryElement library =
|
| + LibraryElement library =
|
| compiler.libraries.putIfAbsent(uri.toString(), () {
|
| newLibrary = true;
|
| leg.Script script = compiler.readScript(uri, null);
|
| @@ -135,7 +135,7 @@ class PatchClassElementParser extends PatchParser {
|
| class PatchElementListener extends ElementListener implements PatchListener {
|
| bool isMemberPatch = false;
|
| bool isClassPatch = false;
|
| - PatchElementListener(DiagnosticListener listener,
|
| + PatchElementListener(leg.DiagnosticListener listener,
|
| CompilationUnitElement patchElement,
|
| int idGenerator())
|
| : super(listener, patchElement, idGenerator);
|
|
|