The Trunk: Tools-ct.1359.mcz
[email protected] Fri, 3 Jul 2026 23:55:53 0000
| Newsgroups | gmane.comp.lang.smalltalk.squeak.general |
|---|---|
| Message-ID | <[email protected]> |
Christoph Thiede uploaded a new version of Tools to project The Trunk: http://source.squeak.org/trunk/Tools-ct.1359.mcz ==================== Summary ==================== Name: Tools-ct.1359 Author: ct Time: 4 July 2026, 1:55:52.242944 am UUID: f7f002a4-0d20-423d-89af-0595e5fad6ff Ancestors: Tools-ct.1358 Adds explaining tooltips for the "run until/to/..." stepping commands in the debugger code pane menu. =============== Diff against Tools-ct.1358 =============== Item was changed: ----- Method: Debugger>>debuggerCodePaneMenu: (in category 'code pane menu') ----- debuggerCodePaneMenu: aMenu <codePaneMenu> <menuPriority: 200> ^ aMenu add: 'run to here' target: self selector: #runToSelection: argument: self codePaneSelectionInterval; + balloonTextForLastItem: 'Step through until the selected expression is reached' translated; add: 'run until...' target: self selector: #runUntil; + balloonTextForLastItem: 'Step over until a custom condition is matched' translated; add: 'send until...' target: self selector: #sendUntil; + balloonTextForLastItem: 'Step into until a custom condition is matched' translated; addLine; yourself ! Squeak-dev mailing list -- [email protected] To unsubscribe send an email to [email protected]