Commit bdb91eb7 authored by sgjesse's avatar sgjesse

Removed spaces to fix lint.


git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@153 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent c6137453
...@@ -2715,7 +2715,7 @@ Expression* Parser::ParseObjectLiteral(bool* ok) { ...@@ -2715,7 +2715,7 @@ Expression* Parser::ParseObjectLiteral(bool* ok) {
ObjectLiteral::Property* property = ObjectLiteral::Property* property =
NEW(ObjectLiteral::Property(key, value)); NEW(ObjectLiteral::Property(key, value));
// Count CONSTANT or COMPUTED properties to maintain the enumeration order. // Count CONSTANT or COMPUTED properties to maintain the enumeration order.
if ((property != NULL) && if ((property != NULL) &&
(property->kind() == ObjectLiteral::Property::CONSTANT || (property->kind() == ObjectLiteral::Property::CONSTANT ||
...@@ -2747,7 +2747,7 @@ Expression* Parser::ParseObjectLiteral(bool* ok) { ...@@ -2747,7 +2747,7 @@ Expression* Parser::ParseObjectLiteral(bool* ok) {
literal = property->value()->AsLiteral(); literal = property->value()->AsLiteral();
else if (property->kind() == ObjectLiteral::Property::COMPUTED) else if (property->kind() == ObjectLiteral::Property::COMPUTED)
literal = GetLiteralUndefined(); literal = GetLiteralUndefined();
else else
continue; continue;
// Add name, value pair to the fixed array. // Add name, value pair to the fixed array.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment