var MyClass = new Class({
foo:function(){
var = new Fung({
go:function(this){
this.bar();
}
});
},
bar:function(){
alert('hello world');
}
});
Im trying to access method from inside nested class. Is this possible?
Classconstructor function.