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/Tests/Core/GRObjectStub.st

19 lines
243 B
Smalltalk

GRObject subclass: GRObjectStub [
| foo |
<comment: nil>
<category: 'Grease-Tests-Core'>
foo [
<category: 'accessing'>
^foo
]
initialize [
<category: 'initialization'>
super initialize.
foo := true
]
]