Stefan Glienke 2002 Posted May 23, 2019 Anonymous methods normally don't appear in the procedure list (which I don't mind - so even if you decide to list them in the future, please make that optional). However when you have a function/procedure does not have any arguments and you don't write () they appear in the list: procedure Main; var f: TFunc<Integer>; p: TProc; f2: TFunc<Integer,Integer>; p2: TProc<Integer>; begin f := function: Integer begin end; // appears as empty entry in procedure list f := function(): Integer begin end; // does not appear p := procedure begin end; // appears as "begin end" in procedure list p := procedure() begin end; // does not appear p2 := procedure(x: Integer) begin end; // does not appear f2 := function(x: Integer): Integer begin end; // does not appear end; Share this post Link to post
Uwe Raabe 2057 Posted May 23, 2019 Shouldn't that better go into QP then or did you just miss to mention the report number? Share this post Link to post
Stefan Glienke 2002 Posted May 23, 2019 What does QP have to do with a GExperts bug? Share this post Link to post