Chromium Code Reviews| Index: sdk/lib/_internal/compiler/implementation/lib/js_array.dart |
| diff --git a/sdk/lib/_internal/compiler/implementation/lib/js_array.dart b/sdk/lib/_internal/compiler/implementation/lib/js_array.dart |
| index c5fbcb6b08a3201a75ec66413d5e370ccbabd2d2..9c584fb7a662e30525564da3b024985bf6a47e81 100644 |
| --- a/sdk/lib/_internal/compiler/implementation/lib/js_array.dart |
| +++ b/sdk/lib/_internal/compiler/implementation/lib/js_array.dart |
| @@ -165,7 +165,7 @@ class JSArray<E> implements List<E> { |
| ListIterator iterator() => new ListIterator(this); |
| - int get hashCode => Primitives.objectHashCode(receiver); |
| + int get hashCode => Primitives.objectHashCode(this); |
|
ngeoffray
2012/11/21 08:30:08
Untested code FTW!
|
| Type get runtimeType => createRuntimeType('List'); |
| } |