@@ -431,6 +431,7 @@ def kind(self) -> ReflectionKind:
431
431
class Constructor (Reflection ):
432
432
signatures : list [ConstructorSignature ] | None = None
433
433
overwrites : Type | None = None
434
+ inherited_from : Type | None = None
434
435
435
436
@property
436
437
def kind (self ) -> ReflectionKind :
@@ -454,6 +455,7 @@ class Method(Reflection):
454
455
signatures : list [CallSignature ]
455
456
overwrites : Type | None = None
456
457
implementation_of : Type | None = None
458
+ inherited_from : Type | None = None
457
459
458
460
@property
459
461
def kind (self ) -> ReflectionKind :
@@ -467,6 +469,7 @@ class CallSignature(Reflection):
467
469
type_parameter : list [TypeParameter ] | None = None
468
470
overwrites : Type | None = None
469
471
implementation_of : Type | None = None
472
+ inherited_from : Type | None = None
470
473
471
474
@property
472
475
def kind (self ) -> ReflectionKind :
@@ -487,6 +490,7 @@ def kind(self) -> ReflectionKind:
487
490
class ConstructorSignature (Reflection ):
488
491
parameters : list [Parameter ] | None = None
489
492
overwrites : Type | None = None
493
+ inherited_from : Type | None = None
490
494
491
495
@property
492
496
def kind (self ) -> ReflectionKind :
0 commit comments