Re: [Pharo-dev] DebugSession>>activePC:

2019-01-11 Thread Thomas Dupriez via Pharo-dev
eciate and encourage that :). @Thomas: Thanks for this effort! Cheers, Doru On Jan 10, 2019, at 3:11 PM, Eliot Miranda wrote: Hi Thomas, On Jan 10, 2019, at 2:24 AM, Thomas Dupriez via Pharo-dev wrote: in a stack of contexts the active pc is different for the top context. For other than the top con

[Pharo-dev] DebugSession>>activePC:

2019-01-10 Thread Thomas Dupriez via Pharo-dev
--- Begin Message --- Hello, I saw that DebugSession>>activePC: has no senders in pharo. Does someone know the intention behind it? activePC: aContext     ^ (self isLatestContext: aContext)         ifTrue: [ interruptedContext pc ]         ifFalse: [ self previousPC: aContext ] Thomas