Skip to content

Commit

Permalink
Fix class references after rename [feenkcom/gtoolkit#3942]
Browse files Browse the repository at this point in the history
  • Loading branch information
chisandrei committed Aug 21, 2024
1 parent ba0ad86 commit dab4ca0
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ GtGemStoneEvaluationContext >> evaluateBlock: aBlock from: anEvaluationServer [
ifNil: [ computationResult ]
ifNotNil: [ :aSerializationStrategy |
(Globals at: aSerializationStrategy) new serialize: computationResult ].
evaluationResult := GtGemstoneEvaluationWithComputedResult new
evaluationResult := GtGemstoneEvaluationComputedResult new
computedResult: result.
completed := true.
semaphore signal ]
Expand All @@ -121,7 +121,7 @@ GtGemStoneEvaluationContext >> evaluateBlock: aBlock from: anEvaluationServer [
breakpointLevel: 1;
resume.

^ GtGemstoneEvaluationWithInProgressResult new
^ GtGemstoneEvaluationInProgressResult new
evaluationContext: self
]

Expand Down Expand Up @@ -180,7 +180,7 @@ GtGemStoneEvaluationContext >> handlerBlock: anObject [

"result := self asGtRsrProxyObjectForConnection: evalServer _connection."
result := nil.
evaluationResult := GtGemstoneEvaluationWithExceptionResult new
evaluationResult := GtGemstoneEvaluationExceptionResult new
evaluationContext: self.

semaphore signal.
Expand Down Expand Up @@ -378,8 +378,8 @@ GtGemStoneEvaluationContext >> synchronizeCallStack [
GtGemStoneEvaluationContext >> terminateAsyncComputation [

process terminate.

evaluationResult := GtGemstoneEvaluationTerminatedResult new.
evaluationResult := GtGemstoneEvaluationCancelledResult new.
semaphore signal.

^ #terminatedAsync
Expand Down

0 comments on commit dab4ca0

Please sign in to comment.