In reply to verif_learner:
“super.x” means look for the x property from the context of the base class(c1)that this class (c2) is extended from. We do this all the time with class methods because the method name exists in both the extended class and the base class. We would need to do this if the property x existed in both base and extended classes and needed to distinguish between the two. This is very rare.