Jan. 15, 2016
12:57 p.m.
2016-01-15 13:26 GMT+01:00 Stephan Eggermont <stephan@stack.nl>:
When debugging a method containing a block with a parameter, the parameter is missing from the variable list (because it is aliased?).
Yes, this happens with block vars from optimized blocks (ifNotNil:). The tempvars arent't local to the block, but method vars. And the debugger (debuggerMap) doesn't knows about this (this happens on both debuggers AFAIK).
Stephan