Is there any functional different between these two code blocks?
(assume that
Class('myNamespace.MyClass', { ... })
// assume that the full namespace is always constructed properly
myNamespace.MyClass = Class({ ... });
myNamespace.MyClass.meta.name = 'myNamespace.MyClass';
Despite the second option looking more repetitive, for my particular
use of Joose, it would save a bit of redundancy. I just wanted to know
if there were any other side-effects?