Home | History | Annotate | Download | only in ast

Lines Matching defs:ObjectLiteral

72   V(ObjectLiteral)           \
1284 friend class ObjectLiteral;
1376 class ObjectLiteral final : public MaterializedLiteral {
1457 // ObjectLiteral can vary, so num_ids() is not a static method.
1468 ObjectLiteral(ZoneList<Property*>* properties,
1500 : public base::TemplateHashMap<Literal, ObjectLiteral::Accessors,
1505 : base::TemplateHashMap<Literal, ObjectLiteral::Accessors,
1512 if (it->second == NULL) it->second = new (zone_) ObjectLiteral::Accessors();
3339 ObjectLiteral* NewObjectLiteral(
3340 ZoneList<ObjectLiteral::Property*>* properties,
3342 return new (zone_) ObjectLiteral(properties, boilerplate_properties, pos,
3346 ObjectLiteral::Property* NewObjectLiteralProperty(
3350 ObjectLiteral::Property(key, value, kind, is_computed_name);
3353 ObjectLiteral::Property* NewObjectLiteralProperty(Expression* key,
3356 return new (zone_) ObjectLiteral::Property(ast_value_factory_, key, value,