| 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 Function { | 5 patch class Function { |
| 6 static _apply(List arguments, List names) | 6 static _apply(List arguments, List names) |
| 7 native "Function_apply"; | 7 native "Function_apply"; |
| 8 | 8 |
| 9 /* patch */ static apply(Function function, | 9 /* patch */ static apply(Function function, |
| 10 List positionalArguments, | 10 List positionalArguments, |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 int nameIndex = 0; | 21 int nameIndex = 0; |
| 22 if (numNamedArguments > 0) { | 22 if (numNamedArguments > 0) { |
| 23 namedArguments.forEach((name, value) { | 23 namedArguments.forEach((name, value) { |
| 24 arguments[argumentIndex++] = value; | 24 arguments[argumentIndex++] = value; |
| 25 names[nameIndex++] = _collection_dev.Symbol.getName(name); | 25 names[nameIndex++] = _collection_dev.Symbol.getName(name); |
| 26 }); | 26 }); |
| 27 } | 27 } |
| 28 return _apply(arguments, names); | 28 return _apply(arguments, names); |
| 29 } | 29 } |
| 30 } | 30 } |
| 31 |
| 32 bool _Closure_comparison(var a, var b) native "Closure_comparison"; |
| 33 |
| 34 int _Closure_hashCode(var a) native "Closure_hashCode"; |
| OLD | NEW |