Lines Matching refs:ObjectLiteral
268 ObjectLiteral::Property* property = properties()->at(i); in AssignFeedbackVectorSlots()
277 bool ObjectLiteral::Property::IsCompileTimeValue() { in IsCompileTimeValue()
284 void ObjectLiteral::Property::set_emit_store(bool emit_store) { in set_emit_store()
289 bool ObjectLiteral::Property::emit_store() { in emit_store()
294 void ObjectLiteral::AssignFeedbackVectorSlots(Isolate* isolate, in AssignFeedbackVectorSlots()
301 ObjectLiteral::Property* property = properties()->at(property_index); in AssignFeedbackVectorSlots()
308 case ObjectLiteral::Property::CONSTANT: in AssignFeedbackVectorSlots()
310 case ObjectLiteral::Property::MATERIALIZED_LITERAL: in AssignFeedbackVectorSlots()
312 case ObjectLiteral::Property::COMPUTED: in AssignFeedbackVectorSlots()
328 case ObjectLiteral::Property::PROTOTYPE: in AssignFeedbackVectorSlots()
330 case ObjectLiteral::Property::GETTER: in AssignFeedbackVectorSlots()
335 case ObjectLiteral::Property::SETTER: in AssignFeedbackVectorSlots()
344 ObjectLiteral::Property* property = properties()->at(property_index); in AssignFeedbackVectorSlots()
347 if (property->kind() != ObjectLiteral::Property::PROTOTYPE) { in AssignFeedbackVectorSlots()
356 void ObjectLiteral::CalculateEmitStore(Zone* zone) { in CalculateEmitStore()
357 const auto GETTER = ObjectLiteral::Property::GETTER; in CalculateEmitStore()
358 const auto SETTER = ObjectLiteral::Property::SETTER; in CalculateEmitStore()
365 ObjectLiteral::Property* property = properties()->at(i); in CalculateEmitStore()
367 if (property->kind() == ObjectLiteral::Property::PROTOTYPE) continue; in CalculateEmitStore()
377 static_cast<ObjectLiteral::Property*>(entry->value)->kind(); in CalculateEmitStore()
388 bool ObjectLiteral::IsBoilerplateProperty(ObjectLiteral::Property* property) { in IsBoilerplateProperty()
390 property->kind() != ObjectLiteral::Property::PROTOTYPE; in IsBoilerplateProperty()
394 void ObjectLiteral::BuildConstantProperties(Isolate* isolate) { in BuildConstantProperties()
408 ObjectLiteral::Property* property = properties()->at(i); in BuildConstantProperties()