You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems as though instance members of a class/object within a namespace are not organized correctly on the output documentation. I am running the very latest commit to date: f07285a
See example below:
/** * A namespace. * @namespace MyNamespace *//** * This class has an issue since it is in a namespace * @class FooClass * @memberof MyNamespace */classFooClass{/** * Function description for foo */bar(){}}/** * This class has no issue as it is not in a namespace * @class BarClass */classBarClass{/** * Function description for foo */baz(){}}
HTML Output:
Notice how the bar function is not nested under its class of FooClass. I would expect it would be nested within the FooClass member of the MyNamespace namespace
The text was updated successfully, but these errors were encountered:
I think the issue here is the same as #591 - if anyone's working on the problem, feel free to post back. If anyone's interested in helping, please do, I'd love to help onboard new maintainers! Fixing this class of error is high on my list of priorities, but I'm still trying to get enough free time to knock this out.
It seems as though instance members of a class/object within a namespace are not organized correctly on the output documentation. I am running the very latest commit to date: f07285a
See example below:
HTML Output:

Notice how the
bar
function is not nested under its class ofFooClass
. I would expect it would be nested within theFooClass
member of theMyNamespace
namespaceThe text was updated successfully, but these errors were encountered: