6 lines
189 B
Smalltalk
6 lines
189 B
Smalltalk
accessing
|
|
tweets
|
|
self messages messages ifEmpty: [ self getMessages ].
|
|
^ TweetsCollection new
|
|
messages: (self messages messages select: [ :each | each authorId = self id ]);
|
|
yourself |