Advertisement
Guest User

Untitled

a guest
Jan 19th, 2017
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Object subclass: #Coroutine
  2.     instanceVariableNames: 'aContinuation'
  3.     classVariableNames: ''
  4.     category: 'PracticaCAP'
  5.  
  6. maker: aBlock
  7.     ^ self new maker: aBlock
  8.  
  9. maker: aBlock
  10.     | x |
  11.     x := [ :aDestination :aParameter |
  12.         (Continuation callcc: [ :k | aContinuation := k. aDestination value: aParameter. ]).].
  13.     aBlock value: x value: (Continuation callcc: [ :k | aContinuation := k. ^ self. ]).
  14.  
  15. value: aValue
  16.     aContinuation value: aValue.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement