You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At the moment, the TraceDebugger will eliminate any other custom context customizations in the code to be traced. For instance, the following does not run the code sandboxed when you trace it and step over the assignment:
| x |
x :=0.
Sandbox2debug: [x :=1].
The cause for this behavior lies in TDBTrace>>#enableSimulatorDuring: where the customizations of all contexts are via simulator customize: context. We should preserve other custom context simulators and combine all simulators instead via the COR mechanism.
The text was updated successfully, but these errors were encountered:
At the moment, the TraceDebugger will eliminate any other custom context customizations in the code to be traced. For instance, the following does not run the code sandboxed when you trace it and step over the assignment:
The cause for this behavior lies in
TDBTrace>>#enableSimulatorDuring:
where the customizations of all contexts are viasimulator customize: context
. We should preserve other custom context simulators and combine all simulators instead via the COR mechanism.The text was updated successfully, but these errors were encountered: