Great job, Darren!
I'm missing some intellisense on my Class definitions though. This
would give you the minimal stuff for MooTools class syntax:
function Class(props) {
var klass = props.initialize;
klass.prototype = props;
return klass;
}
It works pretty well with well defined classes. It could be extend
with .implement() method and Implements, Extends mutators etc.
On May 21, 9:26 pm, fakedarren <[email protected]> wrote:
> Hmm, seems my updates weren't being picked up by Google Code - it
> wasn't replacing the existing version with the newer update, because
> I'd named it the same. Have updated it properly now though.