From: sgjesse Date: Fri, 5 Sep 2008 09:41:30 +0000 (+0000) Subject: Removed spaces to fix lint. X-Git-Tag: upstream/4.7.83~25459 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=bdb91eb7942e69814ec4ed6d4f5b03039d3637d9;p=platform%2Fupstream%2Fv8.git Removed spaces to fix lint. git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@153 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- diff --git a/src/parser.cc b/src/parser.cc index 7ddcdf678..948d21cad 100644 --- a/src/parser.cc +++ b/src/parser.cc @@ -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.