| Index: lib/compiler/implementation/lib/interceptors.dart
|
| diff --git a/lib/compiler/implementation/lib/interceptors.dart b/lib/compiler/implementation/lib/interceptors.dart
|
| index 6220301ad9623e36d3adb680c646c4e5bc8504b3..1467ca8e931e5c7d1c02658be1f9fa98a0598f49 100644
|
| --- a/lib/compiler/implementation/lib/interceptors.dart
|
| +++ b/lib/compiler/implementation/lib/interceptors.dart
|
| @@ -246,9 +246,9 @@ insertRange$3(receiver, start, length, initialValue) {
|
| return listInsertRange(receiver, start, length, initialValue);
|
| }
|
|
|
| -last(receiver) {
|
| +get$last(receiver) {
|
| if (!isJsArray(receiver)) {
|
| - return UNINTERCEPTED(receiver.last());
|
| + return UNINTERCEPTED(receiver.last);
|
| }
|
| return receiver[receiver.length - 1];
|
| }
|
|
|