| Index: sdk/lib/_internal/compiler/implementation/ssa/interceptor_simplifier.dart
|
| diff --git a/sdk/lib/_internal/compiler/implementation/ssa/interceptor_simplifier.dart b/sdk/lib/_internal/compiler/implementation/ssa/interceptor_simplifier.dart
|
| index 98e5a73b2b0ca49b508c5344993f05ae05f526b6..d80e5a817dfebc8a9ec16472003dc2a65bde0d98 100644
|
| --- a/sdk/lib/_internal/compiler/implementation/ssa/interceptor_simplifier.dart
|
| +++ b/sdk/lib/_internal/compiler/implementation/ssa/interceptor_simplifier.dart
|
| @@ -85,8 +85,8 @@ class SsaSimplifyInterceptors extends HBaseVisitor
|
| return interceptedClasses
|
| .where((cls) => cls != compiler.objectClass)
|
| .map((cls) => backend.classesMixedIntoNativeClasses.contains(cls)
|
| - ? new TypeMask.subtype(cls.rawType)
|
| - : new TypeMask.subclass(cls.rawType))
|
| + ? new TypeMask.subtype(cls)
|
| + : new TypeMask.subclass(cls))
|
| .every((mask) => receiverMask.intersection(mask, compiler).isEmpty);
|
| }
|
|
|
|
|