> Note that if you know the class name at compile time, you don't need
> Object.factory: you can use a mixin statement instead, which works just as you'd
> expect and without runtime costs:
> mixin("MyClass a = new MyClass;");
and why not just
MyClass a = new MyClass;
why is there a need for mixin the code???