From bdb91eb7942e69814ec4ed6d4f5b03039d3637d9 Mon Sep 17 00:00:00 2001 From: sgjesse Date: Fri, 5 Sep 2008 09:41:30 +0000 Subject: [PATCH] Removed spaces to fix lint. git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@153 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- src/parser.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/parser.cc b/src/parser.cc index 7ddcdf6..948d21c 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. -- 2.7.4