Index: runtime/lib/function.cc |
diff --git a/runtime/lib/function.cc b/runtime/lib/function.cc |
index 42417629551f264fb973d69aae18a02fa8dcd54f..2abdde715b7bd39bad4c78dcfd2ade0fe193a418 100644 |
--- a/runtime/lib/function.cc |
+++ b/runtime/lib/function.cc |
@@ -16,9 +16,8 @@ namespace dart { |
DEFINE_NATIVE_ENTRY(Function_apply, 2) { |
const Array& fun_arguments = Array::CheckedHandle(arguments->NativeArgAt(0)); |
const Array& fun_arg_names = Array::CheckedHandle(arguments->NativeArgAt(1)); |
- const Array& fun_args_desc = |
- Array::Handle(ArgumentsDescriptor::New(fun_arguments.Length(), |
- fun_arg_names)); |
+ const Array& fun_args_desc = Array::Handle( |
+ ArgumentsDescriptor::New(fun_arguments.Length(), fun_arg_names)); |
const Object& result = |
Object::Handle(DartEntry::InvokeClosure(fun_arguments, fun_args_desc)); |
if (result.IsError()) { |
@@ -29,8 +28,8 @@ DEFINE_NATIVE_ENTRY(Function_apply, 2) { |
DEFINE_NATIVE_ENTRY(Closure_equals, 2) { |
- const Closure& receiver = Closure::CheckedHandle( |
- zone, arguments->NativeArgAt(0)); |
+ const Closure& receiver = |
+ Closure::CheckedHandle(zone, arguments->NativeArgAt(0)); |
GET_NATIVE_ARGUMENT(Instance, other, arguments->NativeArgAt(1)); |
ASSERT(!other.IsNull()); |
if (receiver.raw() == other.raw()) return Bool::True().raw(); |
@@ -41,8 +40,8 @@ DEFINE_NATIVE_ENTRY(Closure_equals, 2) { |
ASSERT(!func_a.IsImplicitStaticClosureFunction()); |
if (func_a.IsImplicitInstanceClosureFunction()) { |
const Context& context_a = Context::Handle(receiver.context()); |
- const Context& context_b = Context::Handle( |
- Closure::Cast(other).context()); |
+ const Context& context_b = |
+ Context::Handle(Closure::Cast(other).context()); |
const Object& receiver_a = Object::Handle(context_a.At(0)); |
const Object& receiver_b = Object::Handle(context_b.At(0)); |
if (receiver_a.raw() == receiver_b.raw()) return Bool::True().raw(); |
@@ -51,8 +50,8 @@ DEFINE_NATIVE_ENTRY(Closure_equals, 2) { |
func_b.IsImplicitInstanceClosureFunction()) { |
// TODO(rmacnak): Patch existing tears off during reload instead. |
const Context& context_a = Context::Handle(receiver.context()); |
- const Context& context_b = Context::Handle( |
- Closure::Cast(other).context()); |
+ const Context& context_b = |
+ Context::Handle(Closure::Cast(other).context()); |
const Object& receiver_a = Object::Handle(context_a.At(0)); |
const Object& receiver_b = Object::Handle(context_b.At(0)); |
if ((receiver_a.raw() == receiver_b.raw()) && |
@@ -67,8 +66,8 @@ DEFINE_NATIVE_ENTRY(Closure_equals, 2) { |
DEFINE_NATIVE_ENTRY(Closure_hashCode, 1) { |
- const Closure& receiver = Closure::CheckedHandle( |
- zone, arguments->NativeArgAt(0)); |
+ const Closure& receiver = |
+ Closure::CheckedHandle(zone, arguments->NativeArgAt(0)); |
const Function& func = Function::Handle(receiver.function()); |
// Hash together name, class name and signature. |
const Class& cls = Class::Handle(func.Owner()); |
@@ -85,8 +84,8 @@ DEFINE_NATIVE_ENTRY(Closure_hashCode, 1) { |
DEFINE_NATIVE_ENTRY(Closure_clone, 1) { |
- const Closure& receiver = Closure::CheckedHandle( |
- zone, arguments->NativeArgAt(0)); |
+ const Closure& receiver = |
+ Closure::CheckedHandle(zone, arguments->NativeArgAt(0)); |
const Function& func = Function::Handle(zone, receiver.function()); |
const Context& ctx = Context::Handle(zone, receiver.context()); |
Context& cloned_ctx = |