## Search terms constructor, inherited, classes ## Actual Behavior If I have two classes, both with a constructor: ```ts class RootClass { constructor() { // ... } } // ... class ChildClass extends RootClass { constructor() { super() // ... } } ``` In the `ChildClass` typedoc page, the constructor is marked as inherited even if it's not. https://user-images.githubusercontent.com/7217420/110241955-01da5b80-7f54-11eb-82a2-bbdd29d6927b.mov ## Expected Behavior The constructor should be marked as non-inherited, since the documentation shows is the one of the child class. ## Environment - Typedoc version: 0.20.30