Home | History | Annotate | Download | only in src

Lines Matching refs:ObjectLiteral

3543   //   ObjectLiteral
3725 bool Parser::IsBoilerplateProperty(ObjectLiteral::Property* property) {
3727 property->kind() != ObjectLiteral::Property::PROTOTYPE;
3742 ObjectLiteral* object_literal = expression->AsObjectLiteral();
3794 ObjectLiteral::Property* property,
3806 static intptr_t GetPropertyKind(ObjectLiteral::Property* property) {
3808 case ObjectLiteral::Property::GETTER:
3810 case ObjectLiteral::Property::SETTER:
3824 ObjectLiteral::Property* property,
3863 ZoneList<ObjectLiteral::Property*>* properties,
3876 ObjectLiteral::Property* property = properties->at(i);
3934 ObjectLiteral::Property* Parser::ParseObjectLiteralGetSet(bool is_getter,
3970 // ObjectLiteral ::
3976 ZoneList<ObjectLiteral::Property*>* properties =
3977 new(zone()) ZoneList<ObjectLiteral::Property*>(4, zone());
4007 ObjectLiteral::Property* property =
4067 ObjectLiteral::Property* property =
4068 new(zone()) ObjectLiteral::Property(key, value, isolate());