| OLD | NEW |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, 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 class _FunctionImpl implements Function { | 5 class _FunctionImpl implements Function { |
| 6 | 6 |
| 7 bool operator ==(other) native "FunctionImpl_equals"; | 7 bool operator ==(other) native "FunctionImpl_equals"; |
| 8 | 8 |
| 9 int get hashCode native "FunctionImpl_hashCode"; | 9 int get hashCode native "FunctionImpl_hashCode"; |
| 10 | 10 |
| 11 _FunctionImpl get call => this; | 11 _FunctionImpl get call => this; |
| 12 |
| 13 _FunctionImpl _clone() native "FunctionImpl_clone"; |
| 12 } | 14 } |
| OLD | NEW |