"Standard" techniques to record ToDos etc? Recommendation for issue tracking

Tom Phoenix rootbeer at redcat.com
Sat Jan 12 03:27:58 UTC 2008


On Jan 11, 2008 7:14 PM, itsme213 <itsme213 at hotmail.com> wrote:

> (1) Some time ago I had come across a neat technique to record todos in the
> code itself that was supposedly a "standard" practice among ThoseInTheKnow.
> Something like:
>     self issue: #bug. "Some description"
>     self issue: #todo. "Some description"

You're looking for #flag:. See the comment in the source of ProtoObject>>flag:.

> This would show up among senders of #bug #todo (somewhat to my surprise).

That surprised me at first, too, but it's because a method that is
called "indirectly" via #perform: needs to be found whenever you're
looking for senders.

Hope this helps!

--Tom Phoenix



More information about the Squeak-dev mailing list