Work on namespaces in progress.

This commit is contained in:
Pavel Talanov
2011-11-21 22:13:32 +04:00
parent 36d033ea48
commit f806af4829
25 changed files with 512 additions and 282 deletions
@@ -0,0 +1,10 @@
foo = Namespace.create({initialize:function(){
}
, box:function(){
return !false;
}
});
function test() {
return foo.box()
}