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/GRErrorStub.st

18 lines
240 B
Smalltalk

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