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