| Index: sdk/lib/_internal/compiler/implementation/ssa/builder.dart
|
| diff --git a/sdk/lib/_internal/compiler/implementation/ssa/builder.dart b/sdk/lib/_internal/compiler/implementation/ssa/builder.dart
|
| index 4e1199ef618de9a2176888f4810b6e063e8bc11c..6c5fd66438efe06f4d61e81d699145d7af9b1d5c 100644
|
| --- a/sdk/lib/_internal/compiler/implementation/ssa/builder.dart
|
| +++ b/sdk/lib/_internal/compiler/implementation/ssa/builder.dart
|
| @@ -3157,7 +3157,9 @@ class SsaBuilder extends ResolvedVisitor implements Visitor {
|
| compiler.findHelper(Compiler.CREATE_INVOCATION_MIRROR);
|
|
|
| var arguments = new List<HInstruction>();
|
| - addGenericSendArgumentsToList(node.arguments, arguments);
|
| + if (node.argumentsNode != null) {
|
| + addGenericSendArgumentsToList(node.arguments, arguments);
|
| + }
|
| var argumentsInstruction = new HLiteralList(arguments);
|
| add(argumentsInstruction);
|
|
|
|
|