Fixed presubmit error.
authorsvenpanne@chromium.org <svenpanne@chromium.org@ce2b1a6d-e550-0410-aec6-3dcde31c8c00>
Fri, 2 Mar 2012 14:15:28 +0000 (14:15 +0000)
committersvenpanne@chromium.org <svenpanne@chromium.org@ce2b1a6d-e550-0410-aec6-3dcde31c8c00>
Fri, 2 Mar 2012 14:15:28 +0000 (14:15 +0000)
Review URL: https://chromiumcodereview.appspot.com/9584011

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@10907 ce2b1a6d-e550-0410-aec6-3dcde31c8c00

src/ast.cc

index d0aa0f0ab42fbd75c6675687b3cb3534ba6f7cae..65afd9a7b39d0bc0dabb61c57806f53d4e828f8e 100644 (file)
@@ -524,7 +524,8 @@ bool Call::ComputeTarget(Handle<Map> type, Handle<String> name) {
       switch (lookup.type()) {
         case CONSTANT_FUNCTION:
           // We surely know the target for a constant function.
-          target_ = Handle<JSFunction>(lookup.GetConstantFunctionFromMap(*type));
+          target_ =
+              Handle<JSFunction>(lookup.GetConstantFunctionFromMap(*type));
           return true;
         case NORMAL:
         case FIELD: