Chromium Code Reviews| 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 // Helpers used to implement hashCode. If a hashCode is used we remember it | 7 // Helpers used to implement hashCode. If a hashCode is used we remember it |
| 8 // using an Expando object. A new hashCode value is calculated using a Random | 8 // using an Expando object. A new hashCode value is calculated using a Random |
| 9 // number generator. | 9 // number generator. |
| 10 static Expando _hashCodeExp = new Expando("Object.hashCode"); | 10 static Expando _hashCodeExp = new Expando("Object.hashCode"); |
| 11 static Random _hashCodeRnd = new Random(); | 11 static Random _hashCodeRnd = new Random(); |
| 12 | 12 |
| 13 /* patch */ int get hashCode { | 13 /* patch */ int get hashCode { |
| 14 var result = _hashCodeExp[this]; | 14 var result = _hashCodeExp[this]; |
| 15 if (result == null) { | 15 if (result == null) { |
| 16 result = _hashCodeRnd.nextInt(0x40000000); // Stay in Smi range. | 16 result = _hashCodeRnd.nextInt(0x40000000); // Stay in Smi range. |
| 17 _hashCodeExp[this] = result; | 17 _hashCodeExp[this] = result; |
| 18 } | 18 } |
| 19 return result; | 19 return result; |
| 20 } | 20 } |
| 21 | 21 |
| 22 /* patch */ String toString() native "Object_toString"; | 22 /* patch */ String toString() native "Object_toString"; |
| 23 // A statically dispatched version of Object.toString. | 23 // A statically dispatched version of Object.toString. |
| 24 static String _toString(obj) native "Object_toString"; | 24 static String _toString(obj) native "Object_toString"; |
| 25 | 25 |
| 26 dynamic _noSuchMethod(String functionName, List args) | 26 dynamic _noSuchMethod(bool isMethod, |
| 27 String memberName, | |
| 28 List arguments, | |
| 29 Map<String,dynamic> namedArguments) | |
| 27 native "Object_noSuchMethod"; | 30 native "Object_noSuchMethod"; |
|
srdjan
2012/12/10 23:55:39
remove 'dynamic' as result type. Add space after c
regis
2012/12/11 00:11:04
Done.
| |
| 28 | 31 |
| 29 /* patch */ dynamic noSuchMethod(InvocationMirror invocation) { | 32 /* patch */ dynamic noSuchMethod(InvocationMirror invocation) { |
| 30 var methodName = invocation.memberName; | 33 return _noSuchMethod(invocation.isMethod, |
| 31 var args = invocation.positionalArguments; | 34 invocation.memberName, |
| 32 return _noSuchMethod(methodName, args); | 35 invocation.positionalArguments, |
| 36 invocation.namedArguments); | |
| 33 } | 37 } |
| 34 | 38 |
| 35 /* patch */ Type get runtimeType native "Object_runtimeType"; | 39 /* patch */ Type get runtimeType native "Object_runtimeType"; |
| 36 } | 40 } |
| OLD | NEW |