Lines Matching refs:ObjectLiteral
3850 bool Parser::IsBoilerplateProperty(ObjectLiteral::Property* property) { in IsBoilerplateProperty()
3852 property->kind() != ObjectLiteral::Property::PROTOTYPE; in IsBoilerplateProperty()
3878 ObjectLiteral* object_literal = expression->AsObjectLiteral(); in GetValue()
3928 ObjectLiteral::Property* property,
3940 static intptr_t GetPropertyKind(ObjectLiteral::Property* property) { in GetPropertyKind()
3942 case ObjectLiteral::Property::GETTER: in GetPropertyKind()
3944 case ObjectLiteral::Property::SETTER: in GetPropertyKind()
3958 ObjectLiteral::Property* property, in CheckProperty()
3997 ZoneList<ObjectLiteral::Property*>* properties, in BuildObjectLiteralConstantProperties()
4009 ObjectLiteral::Property* property = properties->at(i); in BuildObjectLiteralConstantProperties()
4056 ObjectLiteral::Property* Parser::ParseObjectLiteralGetSet(bool is_getter, in ParseObjectLiteralGetSet()
4097 ZoneList<ObjectLiteral::Property*>* properties = in ParseObjectLiteral()
4098 new(zone()) ZoneList<ObjectLiteral::Property*>(4); in ParseObjectLiteral()
4128 ObjectLiteral::Property* property = in ParseObjectLiteral()
4187 ObjectLiteral::Property* property = in ParseObjectLiteral()
4188 new(zone()) ObjectLiteral::Property(key, value, isolate()); in ParseObjectLiteral()