In XE springt er zur Deklaration. Grade nochmal ausprobiert.
In dem aktuellen Berlin springt er aber wirklich in die Implementation. Folgender Code, Ctrl-Klick auf
Test im
Create:
Delphi-Quellcode:
type
TMyClass = class
public
constructor Create;
procedure Test;
end;
constructor TMyClass.Create;
begin
inherited;
Test;
end;
procedure TMyClass.Test;
begin
end;