When a method is defined in a base class as an arrow function, when calling that method in a derived class via super.method(), I get an error "Only public and protected methods of the base class are accessible via the 'super' keyword.ts(2340)", Even though the method was defined as public.
I understand that in an arrow function the context is lexical. This would affect the value of this and super in an arrow function, but in the image above Sun.met1 is not defined as an arrow function, so I don't see why it can't access Father.met.
