Skip to content

Commit

Permalink
Fix merge
Browse files Browse the repository at this point in the history
  • Loading branch information
guillep committed Nov 27, 2023
1 parent 359307f commit 06d89c9
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions src/NewTools-Debugger/StDebugger.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ Class {
'EnableStackColoring',
'FastTDD'
],
#category : 'NewTools-Debugger-View'
#category : #'NewTools-Debugger-View'
}

{ #category : #commands }
Expand Down Expand Up @@ -755,7 +755,7 @@ StDebugger >> initializeShortcuts: aWindowPresenter [
toAction: [ self restartCurrentContext ]
]

{ #category : #initialization }
{ #category : #stack }
StDebugger >> initializeStack [

stackTable := self newTable.
Expand All @@ -770,14 +770,15 @@ StDebugger >> initializeStack [
sortFunction: nil;
yourself);
addColumn:
((SpStringTableColumn title: 'Method' evaluated: [ :item |
((SpStringTableColumn title: 'Method' evaluated: [ :context |
| method |
method := item method.
(self printReceiverClassInContext: item) , '>>'
method := context method.
(self printReceiverClassInContext: context) , '>>'
, (method isCompiledBlock
ifTrue: [ method sourceNode sourceCode ]
ifFalse: [ method selector ]) ])
sortFunction: nil;
displayColor: [ :context | self stackColorForContext: context ];
yourself).
stackTable transmitDo: [ :context |
stackTable selection isEmpty ifFalse: [
Expand Down

0 comments on commit 06d89c9

Please sign in to comment.