| Index: src/hydrogen.cc
|
| diff --git a/src/hydrogen.cc b/src/hydrogen.cc
|
| index 987d60b334115809200ccec79c35c489da3ffaa6..86fa8c55c25997fc5b4f6df0445753ef9b7d90d7 100644
|
| --- a/src/hydrogen.cc
|
| +++ b/src/hydrogen.cc
|
| @@ -5607,9 +5607,12 @@ void HOptimizedGraphBuilder::VisitObjectLiteral(ObjectLiteral* expr) {
|
|
|
| for (int i = 0; i < expr->properties()->length(); i++) {
|
| ObjectLiteral::Property* property = expr->properties()->at(i);
|
| + if (property->is_computed_name()) {
|
| + return Bailout(kComputedPropertyName);
|
| + }
|
| if (property->IsCompileTimeValue()) continue;
|
|
|
| - Literal* key = property->key();
|
| + Literal* key = property->key()->AsLiteral();
|
| Expression* value = property->value();
|
|
|
| switch (property->kind()) {
|
| @@ -5635,7 +5638,7 @@ void HOptimizedGraphBuilder::VisitObjectLiteral(ObjectLiteral* expr) {
|
| }
|
|
|
| Handle<Map> map = property->GetReceiverType();
|
| - Handle<String> name = property->key()->AsPropertyName();
|
| + Handle<String> name = key->AsPropertyName();
|
| HInstruction* store;
|
| if (map.is_null()) {
|
| // If we don't know the monomorphic type, do a generic store.
|
|
|