Hi.
Is there any way to get methods of object while code creation?
e.g. I have object:
function test(){
this.innerMethod=function(){
//some code
}
}
After i've declared
var class=new test();
i'm expecting that after i'll write "class." code completion show me all inner methods and properties. But it doesn't. Is there any way to reach this goal?