| Index: pkg/compiler/lib/src/ssa/builder.dart
|
| diff --git a/pkg/compiler/lib/src/ssa/builder.dart b/pkg/compiler/lib/src/ssa/builder.dart
|
| index 9995366b7ea4a28f17f6ca92d55a1769132875f3..e0e89b3f8e258297020fa018e257e3b3add6e7c9 100644
|
| --- a/pkg/compiler/lib/src/ssa/builder.dart
|
| +++ b/pkg/compiler/lib/src/ssa/builder.dart
|
| @@ -2984,7 +2984,8 @@ class SsaBuilder extends ast.Visitor
|
| graph.addConstantString(new ast.DartString.literal(loadId), closedWorld)
|
| ];
|
| push(new HInvokeStatic(loadFunction, inputs, commonMasks.nonNullType,
|
| - targetCanThrow: false)..sourceInformation = sourceInformation);
|
| + targetCanThrow: false)
|
| + ..sourceInformation = sourceInformation);
|
| }
|
|
|
| generateSuperNoSuchMethodSend(
|
| @@ -4080,7 +4081,8 @@ class SsaBuilder extends ast.Visitor
|
| nativeBehavior.codeTemplate = codeTemplate;
|
|
|
| return new HForeignCode(codeTemplate, commonMasks.dynamicType, inputs,
|
| - nativeBehavior: nativeBehavior)..sourceInformation = sourceInformation;
|
| + nativeBehavior: nativeBehavior)
|
| + ..sourceInformation = sourceInformation;
|
| }
|
|
|
| void pushInvokeStatic(
|
|
|