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

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

Issue 10689126: Fix type errors. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 5 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698