| Index: runtime/vm/resolver.h | 
| diff --git a/runtime/vm/resolver.h b/runtime/vm/resolver.h | 
| index 620bb52477d6e15ea2ffaef36527be640c974575..8ce80c740bde89787586a3391766e1227eb35831 100644 | 
| --- a/runtime/vm/resolver.h | 
| +++ b/runtime/vm/resolver.h | 
| @@ -36,11 +36,10 @@ class Resolver : public AllStatic { | 
| bool allow_add = true); | 
|  | 
| // If 'allow_add' is true we may add a function to the class during lookup. | 
| -  static RawFunction* ResolveDynamicAnyArgs( | 
| -      Zone* zone, | 
| -      const Class& receiver_class, | 
| -      const String& function_name, | 
| -      bool allow_add = true); | 
| +  static RawFunction* ResolveDynamicAnyArgs(Zone* zone, | 
| +                                            const Class& receiver_class, | 
| +                                            const String& function_name, | 
| +                                            bool allow_add = true); | 
|  | 
| // Resolve specified dart static function. If library.IsNull, use | 
| // either application library or core library if no application library | 
| @@ -56,14 +55,14 @@ class Resolver : public AllStatic { | 
|  | 
| // Resolve specified dart static function with specified arity. Only resolves | 
| // public functions. | 
| -  static RawFunction* ResolveStatic(const Class&  cls, | 
| +  static RawFunction* ResolveStatic(const Class& cls, | 
| const String& function_name, | 
| intptr_t num_arguments, | 
| const Array& argument_names); | 
|  | 
| // Resolve specified dart static function with specified arity. Resolves both | 
| // public and private functions. | 
| -  static RawFunction* ResolveStaticAllowPrivate(const Class&  cls, | 
| +  static RawFunction* ResolveStaticAllowPrivate(const Class& cls, | 
| const String& function_name, | 
| intptr_t num_arguments, | 
| const Array& argument_names); | 
|  |