| OLD | NEW |
| 1 part of dart.core; | 1 part of dart.core; |
| 2 | 2 |
| 3 abstract class Function { | 3 abstract class Function { |
| 4 static apply(Function function, List positionalArguments, | 4 external static apply(Function function, List positionalArguments, |
| 5 [Map<Symbol, dynamic> namedArguments]) { | 5 [Map<Symbol, dynamic> namedArguments]); |
| 6 return Primitives.applyFunction(function, positionalArguments, | |
| 7 namedArguments == null ? null : _toMangledNames(namedArguments)); | |
| 8 } | |
| 9 int get hashCode; | 6 int get hashCode; |
| 10 bool operator ==(Object other); | 7 bool operator ==(Object other); |
| 11 } | 8 } |
| OLD | NEW |