The answer to Which language elements can be annotated using attributes language feature of Delphi? suggests that it is possible to add attributes to ordinary procedures and functions. My question is how can one retrieve that information given the string name of the procedure or function?
[myProcAttribute('Some useful info')]
procedure myProc;
begin
// Do something
end;
Given the string 'myProc' I would like to retrieve the associate attribute.
I'm using XE6