Chromium Code Reviews| Index: sdk/lib/_internal/compiler/implementation/native_handler.dart |
| diff --git a/sdk/lib/_internal/compiler/implementation/native_handler.dart b/sdk/lib/_internal/compiler/implementation/native_handler.dart |
| index 8de208fbf826c224fa23617670c0dccaa7569c2f..bfe88abf253250bb4c4eb8d787f1bb6942939ac4 100644 |
| --- a/sdk/lib/_internal/compiler/implementation/native_handler.dart |
| +++ b/sdk/lib/_internal/compiler/implementation/native_handler.dart |
| @@ -236,7 +236,7 @@ abstract class NativeEnqueuerBase implements NativeEnqueuer { |
| } |
| assert(type is DartType); |
| enqueueUnusedClassesMatching( |
| - (nativeClass) => compiler.types.isSubtype(nativeClass.type, type), |
| + (nativeClass) => compiler.types.isSubtype(nativeClass.thisType, type), |
|
karlklose
2012/11/28 08:02:32
Long line, but you can fix it by deleting one of t
Johnni Winther
2012/11/28 08:18:38
Done.
|
| cause, |
| 'subtypeof($type)'); |
| } |