| Index: sdk/lib/_internal/compiler/implementation/lib/js_helper.dart
|
| diff --git a/sdk/lib/_internal/compiler/implementation/lib/js_helper.dart b/sdk/lib/_internal/compiler/implementation/lib/js_helper.dart
|
| index de9969072d83fe4ee99ea623d12f02d4b42b93bf..24dc706aa9a34a264f84eec26f52439645f080e6 100644
|
| --- a/sdk/lib/_internal/compiler/implementation/lib/js_helper.dart
|
| +++ b/sdk/lib/_internal/compiler/implementation/lib/js_helper.dart
|
| @@ -309,7 +309,7 @@ class Primitives {
|
|
|
| /// Returns the type of [object] as a string (including type arguments).
|
| static String objectTypeName(Object object) {
|
| - String name = constructorNameFallback(object);
|
| + String name = constructorNameFallback(getInterceptor(object));
|
| if (name == 'Object') {
|
| // Try to decompile the constructor by turning it into a string
|
| // and get the name out of that. If the decompiled name is a
|
|
|