Removed spaces to fix lint.

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@153 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
This commit is contained in:
sgjesse 2008-09-05 09:41:30 +00:00
parent c613745328
commit bdb91eb794

View 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.