Reviewers: Kasper Lund,

Description:
Fix lint.  Accidentally commited a reindentation of a parameter list
that introduced line that was too long.


Please review this at http://codereview.chromium.org/67214

SVN Base: http://v8.googlecode.com/svn/branches/bleeding_edge/

Affected files:
   M     src/handles.cc


Index: src/handles.cc
===================================================================
--- src/handles.cc      (revision 1723)
+++ src/handles.cc      (working copy)
@@ -212,10 +212,11 @@
  }


-Handle<Object> IgnoreAttributesAndSetLocalProperty(Handle<JSObject> object,
-                                                   Handle<String> key,
-                                                   Handle<Object> value,
-                                                   PropertyAttributes  
attributes) {
+Handle<Object> IgnoreAttributesAndSetLocalProperty(
+    Handle<JSObject> object,
+    Handle<String> key,
+    Handle<Object> value,
+    PropertyAttributes attributes) {
    CALL_HEAP_FUNCTION(object->
        IgnoreAttributesAndSetLocalProperty(*key, *value, attributes),  
Object);
  }



--~--~---------~--~----~------------~-------~--~----~
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
-~----------~----~----~----~------~----~------~--~---

Reply via email to