Home | History | Annotate | Download | only in src

Lines Matching defs:property

627                                  "object property expected to be a function"));
681 Property* property = expr->target()->AsProperty();
682 RECURSE(VisitWithExpectation(property->obj(), Type::Any(),
685 FAIL(property->obj(), "array expected");
687 VisitHeapAccess(property, true, target_type);
721 void AsmTyper::VisitHeapAccess(Property* expr, bool assigning,
830 Property* property = expr->AsProperty();
831 if (property == NULL) {
834 Literal* key = property->key()->AsLiteral();
839 return property->obj();
861 void AsmTyper::VisitProperty(Property* expr) {
907 FAIL(expr, "invalid property access");
1269 FAIL(expr, "super property reference not allowed");
1370 void AsmTyper::VisitLibraryAccess(ObjectTypeMap* map, Property* expr) {