Why is it not possible to access prototype values when object is defined with class syntax?

The argument could probably be made that something like mixin collections might be nice to be able to add to the prototype in the traditional means, rather than being locked into the class structure.

Actually, every mixin extender I’ve written in JS requires the names of the methods to be cloned, and it goes through them individually – thus bypassing the frozen prototype thing.

Huh.