Home | History | Annotate | Download | only in ast

Lines Matching refs:property

264 void CallPrinter::VisitProperty(Property* node) {
924 ZoneList<ClassLiteral::Property*>* properties) {
926 ClassLiteral::Property* property = properties->at(i);
928 switch (property->kind()) {
929 case ClassLiteral::Property::METHOD:
932 case ClassLiteral::Property::GETTER:
935 case ClassLiteral::Property::SETTER:
938 case ClassLiteral::Property::FIELD:
943 SNPrintF(buf, "PROPERTY%s - %s", property->is_static() ? " - STATIC" : "",
1006 ZoneList<ObjectLiteral::Property*>* properties) {
1008 ObjectLiteral::Property* property = properties->at(i);
1010 switch (property->kind()) {
1011 case ObjectLiteral::Property::CONSTANT:
1014 case ObjectLiteral::Property::COMPUTED:
1017 case ObjectLiteral::Property::MATERIALIZED_LITERAL:
1020 case ObjectLiteral::Property::PROTOTYPE:
1023 case ObjectLiteral::Property::GETTER:
1026 case ObjectLiteral::Property::SETTER:
1029 case ObjectLiteral::Property::SPREAD:
1034 SNPrintF(buf, "PROPERTY - %s", prop_kind);
1113 void AstPrinter::VisitProperty(Property* node) {
1115 FormatSlotNode(&buf, node, "PROPERTY", node->PropertyFeedbackSlot());
1212 IndentedScope indent(this, "SUPER-PROPERTY-REFERENCE", node->position());