| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 patch class Object { | 5 patch class Object { |
| 6 | 6 |
| 7 // The VM has it's own implemention of equals. | 7 // The VM has its own implementation of equals. |
| 8 bool operator ==(other) native "Object_equals"; | 8 bool operator ==(other) native "Object_equals"; |
| 9 | 9 |
| 10 // Helpers used to implement hashCode. If a hashCode is used, we remember it | 10 // Helpers used to implement hashCode. If a hashCode is used, we remember it |
| 11 // in a weak table in the VM. A new hashCode value is calculated using a | 11 // in a weak table in the VM. A new hashCode value is calculated using a |
| 12 // number generator. | 12 // number generator. |
| 13 static final _hashCodeRnd = new Random(); | 13 static final _hashCodeRnd = new Random(); |
| 14 | 14 |
| 15 static _getHash(obj) native "Object_getHash"; | 15 static _getHash(obj) native "Object_getHash"; |
| 16 static _setHash(obj, hash) native "Object_setHash"; | 16 static _setHash(obj, hash) native "Object_setHash"; |
| 17 | 17 |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 }); | 70 }); |
| 71 return result; | 71 return result; |
| 72 } | 72 } |
| 73 | 73 |
| 74 int get _cid native "Object_cid"; | 74 int get _cid native "Object_cid"; |
| 75 | 75 |
| 76 _leftShiftWithMask32(count, mask) { | 76 _leftShiftWithMask32(count, mask) { |
| 77 return (this << count) & mask; | 77 return (this << count) & mask; |
| 78 } | 78 } |
| 79 } | 79 } |
| OLD | NEW |