| Index: pkg/compiler/lib/src/cps_ir/cps_ir_tracer.dart
|
| diff --git a/pkg/compiler/lib/src/cps_ir/cps_ir_tracer.dart b/pkg/compiler/lib/src/cps_ir/cps_ir_tracer.dart
|
| index e732f3dccee6d415dcb5d4962896cab94a21ee16..f48b1d0fe8653d0b55676b1498c2280a80ba6a14 100644
|
| --- a/pkg/compiler/lib/src/cps_ir/cps_ir_tracer.dart
|
| +++ b/pkg/compiler/lib/src/cps_ir/cps_ir_tracer.dart
|
| @@ -301,11 +301,11 @@ class IRTracer extends TracerUtil implements cps_ir.Visitor {
|
| }
|
|
|
| visitCreateInstance(cps_ir.CreateInstance node) {
|
| - String className = node.classElement.name;
|
| + String name = '${node.dartType}';
|
| String arguments = node.arguments.map(formatReference).join(', ');
|
| String typeInformation =
|
| node.typeInformation.map(formatReference).join(', ');
|
| - return 'CreateInstance $className ($arguments) <$typeInformation>';
|
| + return 'CreateInstance $name ($arguments) <$typeInformation>';
|
| }
|
|
|
| visitInterceptor(cps_ir.Interceptor node) {
|
|
|