| Index: sdk/lib/_internal/compiler/implementation/lib/core_patch.dart
|
| diff --git a/sdk/lib/_internal/compiler/implementation/lib/core_patch.dart b/sdk/lib/_internal/compiler/implementation/lib/core_patch.dart
|
| index 1277851631dd158e3077470901b90d74aedc8073..14f06497a3fb0e2671a9ef7f76c0a0a4b491fadd 100644
|
| --- a/sdk/lib/_internal/compiler/implementation/lib/core_patch.dart
|
| +++ b/sdk/lib/_internal/compiler/implementation/lib/core_patch.dart
|
| @@ -27,8 +27,8 @@ patch class Object {
|
| }
|
|
|
| patch Type get runtimeType {
|
| - String key = getRuntimeTypeString(this);
|
| - return getOrCreateCachedRuntimeType(key);
|
| + String type = getRuntimeTypeString(this);
|
| + return new TypeImpl(type);
|
| }
|
| }
|
|
|
|
|