http://18delphi.blogspot.com/2015/02/containers-3-generics-and-without.html Get link Facebook X Pinterest Email Other Apps - February 25, 2015 http://18delphi.blogspot.com/2015/02/containers-3-generics-and-without.html Get link Facebook X Pinterest Email Other Apps Comments Lars FosdalFebruary 26, 2015 at 2:09 AMIgor Belyh - How does this work for debugging? Any issues?ReplyDeleteRepliesReplyАлександр ЛюлинFebruary 26, 2015 at 12:23 PMIn 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 BreakPointend;-----MixinCode:procedure MixInList.Add;begin ... __BP('one'); ...end;ReplyDeleteRepliesReplyLars FosdalFebruary 26, 2015 at 5:57 PMOuch! 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.ReplyDeleteRepliesReplyAdd commentLoad more... Post a Comment
Igor Belyh - How does this work for debugging? Any issues?
ReplyDeleteIn debugging it works badly. Breakpoints don't work. But I have some tips'n'tricks. e.g. setting __BP method in interested code.
ReplyDeleteunit mySystem;
procedure __BP(aMsg: String);
begin
// <<< here set BreakPoint
end;
-----
MixinCode:
procedure MixInList.Add;
begin
...
__BP('one');
...
end;
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