| 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 70713dad882d0a1001d0ca5d9df52d3f68575730..1a595d3d102f17b83e36668f3b6bf17dcaf37575 100644
|
| --- a/sdk/lib/_internal/compiler/implementation/ssa/builder.dart
|
| +++ b/sdk/lib/_internal/compiler/implementation/ssa/builder.dart
|
| @@ -2719,7 +2719,8 @@ class SsaBuilder extends ResolvedVisitor implements Visitor {
|
| generateThrowNoSuchMethod(
|
| location,
|
| getTargetName(element, 'set'),
|
| - argumentNodes: (send == null ? const Link<Node>() : send.arguments));
|
| + argumentValues: (send == null ? <HInstruction>[] :
|
| + <HInstruction>[value]));
|
| } else {
|
| stack.add(value);
|
| // If the value does not already have a name, give it here.
|
|
|