In the Code Explorer a method of a class is shown as a separate function and not with the scope of the class.
Take this example:
Code: Select all
function MyClass(){
this.myvar = "message";
this.clickMe= function(){
alert(this.myvar);
}
}
}
The Code Explorer should show the function "clickMe" as a child node of the function MyClass and not as a function "MyClass" and a function "this.clickMe". The other thing: the variables should be shown too!
For PHP this seems to work correctly, would be nice to have this implemented also for Javascript.