| Index: pkg/compiler/lib/src/ssa/builder_kernel.dart
|
| diff --git a/pkg/compiler/lib/src/ssa/builder_kernel.dart b/pkg/compiler/lib/src/ssa/builder_kernel.dart
|
| index 96ebf53572b75d391023167e86ad78d25799829a..e6d769fbdd1da5f8f32aad983e662e8537e6df65 100644
|
| --- a/pkg/compiler/lib/src/ssa/builder_kernel.dart
|
| +++ b/pkg/compiler/lib/src/ssa/builder_kernel.dart
|
| @@ -1781,13 +1781,12 @@ class KernelSsaBuilder extends ir.Visitor with GraphBuilder {
|
| // TODO(sra): Convert the type logic here to use ir.DartType.
|
| ResolutionDartType dartType = astAdapter.getDartType(type);
|
| dartType = localsHandler.substInContext(dartType);
|
| - HInstruction value = typeBuilder.analyzeTypeArgument(
|
| - dartType, sourceElement,
|
| - sourceInformation: null);
|
| - _pushStaticInvocation(astAdapter.runtimeTypeToString,
|
| - <HInstruction>[value], commonMasks.stringType);
|
| + HInstruction value = typeBuilder
|
| + .analyzeTypeArgument(dartType, sourceElement, sourceInformation: null);
|
| + _pushStaticInvocation(astAdapter.runtimeTypeToString, <HInstruction>[value],
|
| + commonMasks.stringType);
|
| _pushStaticInvocation(astAdapter.createRuntimeType, <HInstruction>[pop()],
|
| - astAdapter.createRuntimeTypeReturnType);
|
| + astAdapter.createRuntimeTypeReturnType);
|
| }
|
|
|
| @override
|
|
|