Lines Matching refs:ObjectLiteral
3045 bool Parser::IsBoilerplateProperty(ObjectLiteral::Property* property) { in IsBoilerplateProperty()
3047 property->kind() != ObjectLiteral::Property::PROTOTYPE; in IsBoilerplateProperty()
3073 ObjectLiteral* object_literal = expression->AsObjectLiteral(); in GetValue()
3129 ObjectLiteral::Property* property,
3141 static intptr_t GetPropertyKind(ObjectLiteral::Property* property) { in GetPropertyKind()
3143 case ObjectLiteral::Property::GETTER: in GetPropertyKind()
3145 case ObjectLiteral::Property::SETTER: in GetPropertyKind()
3160 ObjectLiteral::Property* property, in CheckProperty()
3234 ZoneList<ObjectLiteral::Property*>* properties, in BuildObjectLiteralConstantProperties()
3246 ObjectLiteral::Property* property = properties->at(i); in BuildObjectLiteralConstantProperties()
3293 ObjectLiteral::Property* Parser::ParseObjectLiteralGetSet(bool is_getter, in ParseObjectLiteralGetSet()
3317 ObjectLiteral::Property* property = in ParseObjectLiteralGetSet()
3318 new(zone()) ObjectLiteral::Property(is_getter, value); in ParseObjectLiteralGetSet()
3335 ZoneList<ObjectLiteral::Property*>* properties = in ParseObjectLiteral()
3336 new ZoneList<ObjectLiteral::Property*>(4); in ParseObjectLiteral()
3366 ObjectLiteral::Property* property = in ParseObjectLiteral()
3425 ObjectLiteral::Property* property = in ParseObjectLiteral()
3426 new(zone()) ObjectLiteral::Property(key, value); in ParseObjectLiteral()
3465 return new(zone()) ObjectLiteral(constant_properties, in ParseObjectLiteral()