Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Sindarin-Tests/SindarinDebuggerTest.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -804,7 +804,7 @@ SindarinDebuggerTest >> testStepToReturnWithHalt [
dbg stepToMethodEntry.
dbg stepToReturn.

self assert: dbg context willReturn.
self assert: dbg context instructionStream willReturn.
self assert: dbg node isReturn.
self assert: dbg topStack equals: 1
]
Expand Down
4 changes: 2 additions & 2 deletions Sindarin/SindarinDebugger.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -645,7 +645,7 @@ SindarinDebugger >> stepThrough [

{ #category : #'stepping - steps' }
SindarinDebugger >> stepToMethodEntry [
self stepUntil: [ self context willSend ].
self stepUntil: [ self context instructionStream willSend ].
process step: self context.
self debugSession updateContextTo: process suspendedContext
]
Expand All @@ -654,7 +654,7 @@ SindarinDebugger >> stepToMethodEntry [
SindarinDebugger >> stepToReturn [

[
self context willReturn or: [ self hasSignalledUnhandledException ] ]
self context instructionStream willReturn or: [ self hasSignalledUnhandledException ] ]
whileFalse: [ self debugSession stepOver ]
]

Expand Down