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