http://18delphi.blogspot.com/2015/02/containers-3-generics-and-without.html

http://18delphi.blogspot.com/2015/02/containers-3-generics-and-without.html

Comments

  1. Igor Belyh - How does this work for debugging? Any issues?

    ReplyDelete
  2. In debugging it works badly. Breakpoints don't work. But I have some tips'n'tricks. e.g. setting __BP method in interested code.

    unit mySystem;

    procedure __BP(aMsg: String);
    begin
     // <<< here set BreakPoint
    end;

    -----

    MixinCode:

    procedure MixInList.Add;
    begin
     ...
     __BP('one');
     ...
    end;

    ReplyDelete
  3. Ouch! That's not good. That means you have to modify code to track down issues, which in turn can change the conditions leading to the issue.

    ReplyDelete

Post a Comment