Skip to content

Commit d4be746

Browse files
committed
Fix merge with debug info changes
1 parent 27c4a56 commit d4be746

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/NewTools-Debugger/StDebugger.class.st

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1610,8 +1610,7 @@ StDebugger >> updateStep [
16101610
self updateToolbar.
16111611

16121612
currentContext := self currentContext.
1613-
currentASTScope := currentContext compiledCode debugInfo
1614-
variablesAt: currentContext executedPC.
1613+
currentASTScope := currentContext temporaryVariables.
16151614
self flag: #DBG_INSPECTOR_UPDATE_BUG.
16161615
inspector getRawInspectorPresenterOrNil ifNotNil: [ :p |
16171616
previousContext == currentContext ifTrue: [ "otherwise, if contexts have changed, updating the stack has already updated all nodes.""Here it is necessary to update temporary nodes if we are still in the same context but in a different scope. This is possible when leaving or entering an optimized block scope."

0 commit comments

Comments
 (0)