| Index: sdk/lib/_internal/compiler/implementation/types/concrete_types_inferrer.dart
|
| ===================================================================
|
| --- sdk/lib/_internal/compiler/implementation/types/concrete_types_inferrer.dart (revision 22306)
|
| +++ sdk/lib/_internal/compiler/implementation/types/concrete_types_inferrer.dart (working copy)
|
| @@ -833,6 +833,8 @@
|
| if (element != null) {
|
| if (element == compiler.numClass) {
|
| return new TypeMask.nonNullSubclass(compiler.numClass.rawType);
|
| + } else if (element == compiler.dynamicClass) {
|
| + return new TypeMask.nonNullSubclass(compiler.objectClass.rawType);
|
| } else {
|
| return new TypeMask.nonNullExact(element.rawType);
|
| }
|
|
|