| Index: lib/compiler/implementation/tree/nodes.dart
|
| diff --git a/lib/compiler/implementation/tree/nodes.dart b/lib/compiler/implementation/tree/nodes.dart
|
| index 31a392c744abbac48924d23b5a8ec090da40ebba..ad590b2a525dc9264c8333ab16c8bcf6d420538f 100644
|
| --- a/lib/compiler/implementation/tree/nodes.dart
|
| +++ b/lib/compiler/implementation/tree/nodes.dart
|
| @@ -356,8 +356,8 @@ class SendSet extends Send {
|
| }
|
|
|
| Token getEndToken() {
|
| - if (isPrefix) return super.getEndToken();
|
| - return assignmentOperator.getEndToken();
|
| + if (isPostfix) return assignmentOperator.getEndToken();
|
| + return super.getEndToken();
|
| }
|
| }
|
|
|
|
|