Bug first reported by George Dernovoy on the mailing-list.
For the given source :
cedric@laptop:~/dev/workspace/boo-svn/sandbox$ cat debug.boo
for i in "any string":
debug i
You'll have to step over the "for in" expression multiple times to actually jump to debug i :
cedric@laptop:~/dev/workspace/boo-svn/sandbox$ mdb debug.exe
Mono Debugger
(mdb) run
Starting program: debug.exe
1 for i in "any string":
(mdb) n
1 for i in "any string":
(mdb) n
1 for i in "any string":
(mdb) n
2 debug i
(mdb) n
1 for i in "any string":