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

Unified Diff: frog/leg/elements/elements.dart

Issue 8974014: Resolve initializers in constructors. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address 2nd round of comments. Created 9 years 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 | frog/leg/resolver.dart » ('j') | frog/leg/resolver.dart » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: frog/leg/elements/elements.dart
diff --git a/frog/leg/elements/elements.dart b/frog/leg/elements/elements.dart
index 30c4fa2f741b68dc78d1c11192ce284f06b26f10..c7802f3d601afbe2ecdaa150f10680f6fa859b4c 100644
--- a/frog/leg/elements/elements.dart
+++ b/frog/leg/elements/elements.dart
@@ -123,7 +123,7 @@ class ForeignElement extends Element {
return types.dynamicType;
}
- parseNode(compiler, types) {
+ parseNode(Canceler canceler, Logger logger) {
throw "internal error: ForeignElement has no node";
}
}
@@ -288,7 +288,7 @@ class ClassElement extends Element {
return synthesizedConstructor;
}
- parseNode(compiler, types) => node;
+ parseNode(Canceler canceler, Logger logger) => node;
/**
* Returns the super class, if any.
« no previous file with comments | « no previous file | frog/leg/resolver.dart » ('j') | frog/leg/resolver.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698