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

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

Issue 10964016: Change the type inference for fields in dart2js (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Minor fixes and rebased Created 8 years, 3 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
Index: lib/compiler/implementation/universe/universe.dart
diff --git a/lib/compiler/implementation/universe/universe.dart b/lib/compiler/implementation/universe/universe.dart
index 09cd1467b6697b638fb638f3f63720bea538e840..38f929b55274e69ae9774e5eb3458ebb9bc8ac48 100644
--- a/lib/compiler/implementation/universe/universe.dart
+++ b/lib/compiler/implementation/universe/universe.dart
@@ -447,7 +447,7 @@ class TypedSelector extends Selector {
*/
final DartType receiverType;
- TypedSelector(this.receiverType, Selector selector)
+ TypedSelector(DartType this.receiverType, Selector selector)
: super(selector.kind,
selector.name,
selector.library,

Powered by Google App Engine
This is Rietveld 408576698