Skip to content

Commit

Permalink
Merge pull request #631 from MarcusDenker/use-valueWithReceiver
Browse files Browse the repository at this point in the history
use valueWithReceiver:
  • Loading branch information
MarcusDenker committed Nov 29, 2023
2 parents 247e8c1 + 7e42d0f commit d220aff
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ StDebuggerActionModelTest >> newSessionWithBlockContext [
| process method |
method := self class >> #methodWithBlockContext.
methodWithBlockContextOriginalSource := method sourceCode.
process := [ method valueWithReceiver: self arguments: #( ) ] newProcess.
process := [ method valueWithReceiver: self ] newProcess.
self setSessionAndDebuggerModelForMethod: method inContext: process suspendedContext.

[ debugActionModel topContext closure isNil ] whileTrue: [
Expand All @@ -142,7 +142,7 @@ StDebuggerActionModelTest >> newSessionWithDeadHomeBlockContext [
| process method |
method := self class >> #evaluateMethodWithDeadHomeBlockContext.
methodWithBlockContextOriginalSource := method sourceCode.
process := [ method valueWithReceiver: self arguments: #( ) ]
process := [ method valueWithReceiver: self ]
newProcess.
self
setSessionAndDebuggerModelForMethod: method
Expand Down Expand Up @@ -195,7 +195,7 @@ StDebuggerActionModelTest >> setUp [
| method process |
super setUp.
method := self class >> #setResult.
process := [ method valueWithReceiver: self arguments: #( ) ]
process := [ method valueWithReceiver: self ]
newProcess.

self
Expand Down

0 comments on commit d220aff

Please sign in to comment.