Registriert seit: 22. Mär 2005
Ort: Dingolfing
4.129 Beiträge
Turbo Delphi für Win32
|
Re: Eure besten Quellcode Kommentare...
16. Aug 2007, 22:37
Auch aus meinem aktuellen Projekt:
Delphi-Quellcode:
token:=TryGetToken(TokenList, Index);
if token.TokenType=tkIdentifier then
func:=token.Content
else
exit; //Throw WTF-were-you-thinking-when-calling-this-method-exception
inc( Index);
token:=TryGetToken(TokenList, Index);
if (token.TokenType<>tkSeparator) or (token.Content<>' (') then
exit; //Second verse, same as the first
inc( Index);
Manuel Eberl „The trouble with having an open mind, of course, is that people will insist on coming along and trying to put things in it.“
- Terry Pratchett
|