Home | History | Annotate | Download | only in src

Lines Matching refs:ObjectLiteral

101   V(ObjectLiteral)                              \
1302 class ObjectLiteral: public MaterializedLiteral {
1347 DECLARE_NODE_TYPE(ObjectLiteral)
1378 ObjectLiteral(Isolate* isolate,
2793 ObjectLiteral* NewObjectLiteral(
2795 ZoneList<ObjectLiteral::Property*>* properties,
2801 ObjectLiteral* lit = new(zone_) ObjectLiteral(
2804 VISIT_AND_RETURN(ObjectLiteral, lit)
2807 ObjectLiteral::Property* NewObjectLiteralProperty(bool is_getter,
2809 ObjectLiteral::Property* prop =
2810 new(zone_) ObjectLiteral::Property(is_getter, value);