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

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: Rebased to r12709 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 645d71b77b5173cfe4910803a83634a1f1891eda..0b34dd5b3cfb82f756edf39b04c11e3302a48780 100644
--- a/lib/compiler/implementation/universe/universe.dart
+++ b/lib/compiler/implementation/universe/universe.dart
@@ -476,7 +476,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