Skip to content

Commit

Permalink
Remove DebugSession>>activePC: and DebugSessio>>previousPC:
Browse files Browse the repository at this point in the history
  • Loading branch information
dupriezt committed Feb 19, 2019
1 parent 3011628 commit 002f10a
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions src/DebuggerModel/DebugSession.class.st
Expand Up @@ -100,13 +100,6 @@ DebugSession class >> named: aString on: aProcess startedAt: aContext [
detectUIProcess
]

{ #category : #context }
DebugSession >> activePC: aContext [
^ (self isLatestContext: aContext)
ifTrue: [ interruptedContext pc ]
ifFalse: [ self previousPC: aContext ]
]

{ #category : #'debugging actions' }
DebugSession >> clear [
"If after resuming the process the user does plan to reuse this session with
Expand Down Expand Up @@ -307,12 +300,6 @@ DebugSession >> prepareTestToRunAgain [
self interruptedContext receiver prepareToRunAgain
]

{ #category : #context }
DebugSession >> previousPC: aContext [
^ (aContext method pcPreviousTo: aContext pc)
ifNil: [ aContext pc ]
]

{ #category : #accessing }
DebugSession >> process [
^ interruptedProcess
Expand Down

0 comments on commit 002f10a

Please sign in to comment.