MobileFrontend provides a helper function OO.mfExtend which allows you to conveniently inherit from a class and also define methods at the same time.
OO.mfExtend( ChildView, View, { bar: bar hi: hi hum: hum } );
instead of
OO.inheritClass( ChildView, View ); View.prototype.bar = bar; View.prototype.hi = hi; View.prototype.hum = hum;
It would be helpful to have this in the OO library itself.
Though it's "nice" to define the prototype as an object and so not have to do foo.prototype.bar = baz a bunch, it's not the way we write all our other code so sharing/upstreaming is much harder.