Home | History | Annotate | Download | only in src

Lines Matching defs:SuperReference

99   V(SuperReference)             \
2563 class SuperReference FINAL : public Expression {
2565 DECLARE_NODE_TYPE(SuperReference)
2572 SuperReference(Zone* zone, VariableProxy* this_var, int pos, IdGen* id_gen)
3525 SuperReference* NewSuperReference(VariableProxy* this_var, int pos) {
3526 SuperReference* super =
3527 new (zone_) SuperReference(zone_, this_var, pos, id_gen_);
3528 VISIT_AND_RETURN(SuperReference, super);