Removed spaces to fix lint.
authorsgjesse <sgjesse@ce2b1a6d-e550-0410-aec6-3dcde31c8c00>
Fri, 5 Sep 2008 09:41:30 +0000 (09:41 +0000)
committersgjesse <sgjesse@ce2b1a6d-e550-0410-aec6-3dcde31c8c00>
Fri, 5 Sep 2008 09:41:30 +0000 (09:41 +0000)
git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@153 ce2b1a6d-e550-0410-aec6-3dcde31c8c00

src/parser.cc

index 7ddcdf6..948d21c 100644 (file)
@@ -2715,7 +2715,7 @@ Expression* Parser::ParseObjectLiteral(bool* ok) {
 
     ObjectLiteral::Property* property =
         NEW(ObjectLiteral::Property(key, value));
+
     // Count CONSTANT or COMPUTED properties to maintain the enumeration order.
     if ((property != NULL) &&
         (property->kind() == ObjectLiteral::Property::CONSTANT ||
@@ -2747,7 +2747,7 @@ Expression* Parser::ParseObjectLiteral(bool* ok) {
       literal = property->value()->AsLiteral();
     else if (property->kind() == ObjectLiteral::Property::COMPUTED)
       literal = GetLiteralUndefined();
-    else 
+    else
       continue;
 
     // Add name, value pair to the fixed array.