| 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 cf3508621ff5cd5bc9d2bc1cc849492a25c0b085..f53d34846da48259480446a986da66d29ce0e4ef 100644
|
| --- a/sdk/lib/_internal/compiler/implementation/native_handler.dart
|
| +++ b/sdk/lib/_internal/compiler/implementation/native_handler.dart
|
| @@ -965,7 +965,7 @@ class NativeBehavior {
|
| lookup(name), locationNodeOrElement) {
|
| if (typeString == '=Object') return SpecialType.JsObject;
|
| if (typeString == 'dynamic') {
|
| - return compiler.types.dynamicType;
|
| + return const DynamicType();
|
| }
|
| DartType type = lookup(typeString);
|
| if (type != null) return type;
|
|
|