smalltalk
/
osmo-st-all
Archived
1
0
Fork 0
This repository has been archived on 2022-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
osmo-st-all/grease/Core/Text/GRSequentialPrinter.st

23 lines
415 B
Smalltalk

GRPrinter subclass: GRSequentialPrinter [
| parts |
<comment: nil>
<category: 'Grease-Core-Text'>
initialize [
<category: 'initialization'>
super initialize.
parts := OrderedCollection new
]
, aConverter [
<category: 'operators'>
parts add: aConverter
]
print: anObject on: aStream [
<category: 'printing'>
parts do: [:each | each print: anObject on: aStream]
]
]