Description of the Issue
In javascript classes can have methods. Of course they can be highly dynamic, as everything in JS, but the methods, that are declared explicitely in the class, should be listed in the function list, so it serves as a usable outline viewer.
Steps to Reproduce the Issue
Create a .js file, declare a class and a method, then look at the function list.
Example:
class Test {
constructor() {
}
myMethod() {
}
}
Expected Behavior
See "Description".
Actual Behavior
The methods are not listed in the functions list.