Hello,
we have a failing test (OCClosureCompilerTest>>#testDebuggerTempAccess)
(fails since spur, but not related - I think).
A simple example to reproduce the behavior:
| local1 remote1|
remote1:=4.
local1 :=3.
[:i | |c|
��������c := local1.
��������remote1 := i.
��������i halt.
��������"local1:=25. <-- evaluate during debugging"
�������� ] value:1.
Transcript show:local1;cr.
Transcript show:remote1;cr.
(Executing this code and evaluating "local:=25" after the debugger halts for
"i halt" will modify the var "remote1" instead of "local1", as this is a vector tempvar , proceeding
the execution will crash at accessing the remote1 value).
The purpose of the testDebuggerTempAccess test case is, evaluating code