| Index: src/full-codegen/ppc/full-codegen-ppc.cc
|
| diff --git a/src/full-codegen/ppc/full-codegen-ppc.cc b/src/full-codegen/ppc/full-codegen-ppc.cc
|
| index e965a0760b67ec014041d314389caea543855533..f1142136d3fc992fae3f4adc8f9fb4337a1bfc3a 100644
|
| --- a/src/full-codegen/ppc/full-codegen-ppc.cc
|
| +++ b/src/full-codegen/ppc/full-codegen-ppc.cc
|
| @@ -1990,7 +1990,7 @@ void FullCodeGenerator::EmitInlineSmiBinaryOp(BinaryOperation* expr,
|
|
|
| void FullCodeGenerator::EmitClassDefineProperties(ClassLiteral* lit) {
|
| for (int i = 0; i < lit->properties()->length(); i++) {
|
| - ObjectLiteral::Property* property = lit->properties()->at(i);
|
| + ClassLiteral::Property* property = lit->properties()->at(i);
|
| Expression* value = property->value();
|
|
|
| Register scratch = r4;
|
| @@ -2017,22 +2017,18 @@ void FullCodeGenerator::EmitClassDefineProperties(ClassLiteral* lit) {
|
| }
|
|
|
| switch (property->kind()) {
|
| - case ObjectLiteral::Property::CONSTANT:
|
| - case ObjectLiteral::Property::MATERIALIZED_LITERAL:
|
| - case ObjectLiteral::Property::PROTOTYPE:
|
| - UNREACHABLE();
|
| - case ObjectLiteral::Property::COMPUTED:
|
| + case ClassLiteral::Property::METHOD:
|
| PushOperand(Smi::FromInt(DONT_ENUM));
|
| PushOperand(Smi::FromInt(property->NeedsSetFunctionName()));
|
| CallRuntimeWithOperands(Runtime::kDefineDataPropertyInLiteral);
|
| break;
|
|
|
| - case ObjectLiteral::Property::GETTER:
|
| + case ClassLiteral::Property::GETTER:
|
| PushOperand(Smi::FromInt(DONT_ENUM));
|
| CallRuntimeWithOperands(Runtime::kDefineGetterPropertyUnchecked);
|
| break;
|
|
|
| - case ObjectLiteral::Property::SETTER:
|
| + case ClassLiteral::Property::SETTER:
|
| PushOperand(Smi::FromInt(DONT_ENUM));
|
| CallRuntimeWithOperands(Runtime::kDefineSetterPropertyUnchecked);
|
| break;
|
|
|