Home | History | Annotate | Download | only in src

Lines Matching refs:ObjectLiteral

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