Generics: Methods with generic signature are not recognized as implementations

Issue #14 resolved
Marius van Zwijndregt created an issue

It seems that class signatures containing a generic type which is part of method signatures isn't recognized properly yet;

E.g.

TAnnotationScannerMatcher<T: TCustomAttribute> = class public constructor Create; procedure OnNestedResults; virtual; end;

constructor TAnnotationScannerMatcher<T>.Create; begin inherited Create; end;

procedure TAnnotationScannerMatcher<T>.OnNestedResults; begin end;

Comments (1)

  1. Log in to comment