Anonymous | Login | 03-02-2021 23:20 UTC |
Main | My View | View Issues | Change Log | Docs |
Viewing Issue Simple Details [ Jump to Notes ] | [ View Advanced ] [ Issue History ] [ Print ] | |||||||||||
ID | Category | Severity | Reproducibility | Date Submitted | Last Update | |||||||
0001633 | [Squeak] Tools | minor | always | 08-08-05 22:06 | 08-08-05 22:11 | |||||||
Reporter | rh | View Status | public | |||||||||
Assigned To | ||||||||||||
Priority | normal | Resolution | open | |||||||||
Status | new | Product Version | ||||||||||
Summary | 0001633: [ENH] Debugger showing objects on the stack | |||||||||||
Description |
Simple change to show objects on the stack in debugger's temp vars pane (named _stack1, _stack2 ... etc). Not perfect but works ok, useful to inspect e.g. result of a message send 'From Squeak3.6 of ''6 October 2003'' [latest update: 0005424] on 26 September 2004 at 11:47:50 pm'! "Change Set: DebuggerShowStackObjects Date: 26 September 2004 Author: Radoslav Hodnicak Simple change to show objects on the stack in debugger's temp vars pane (named _stack1, _stack2 ... etc). Not perfect but works ok, useful to inspect e.g. result of a message send"! !ContextVariablesInspector methodsFor: 'accessing' stamp: 'rh 9/26/2004 01:00'! fieldList "Refer to the comment in Inspector|fieldList." | list | object == nil ifTrue: [^Array with: 'thisContext']. list := (OrderedCollection with: 'thisContext' with: 'all temp vars') , object tempNames. 1 to: object stackPtr - object method numTemps do: [:i| list add: '_stack', i printString]. ^list! ! !ContextVariablesInspector methodsFor: 'updating' stamp: 'rh 9/26/2004 01:11'! update self changed: #fieldList. selectionIndex > self fieldList size ifTrue: [selectionIndex := self fieldList size]. super update.! !" |
|||||||||||
Additional Information | ||||||||||||
Attached Files |
![]() |
|||||||||||
|
Mantis 1.0.8[^]
Copyright © 2000 - 2007 Mantis Group
40 total queries executed. 31 unique queries executed. |