When referencing class variables, why do people prepend it with this? I\'m not talking about the case when this is used to disambiguate from method
this
"this" prevents confusion with instance variables with the same name in the parent class/es.
It's pretty much the complement to prepending with "super".