# HG changeset patch # User Stefan Vogel # Date 1480000585 -3600 # Node ID ef54a29bf2896de443daf7e3e34757424c0e2363 # Parent a5700813414fbfd6d1e1fa80855526859ec068a5 #DOCUMENTATION by stefan class: Stream added: #isAbstract diff -r a5700813414f -r ef54a29bf289 Stream.st --- a/Stream.st Thu Nov 24 16:16:15 2016 +0100 +++ b/Stream.st Thu Nov 24 16:16:25 2016 +0100 @@ -214,6 +214,12 @@ ^ ChunkSeparator ! ! +!Stream class methodsFor:'testing'! + +isAbstract + ^ self == Stream +! ! + !Stream methodsFor:'Compatibility-Dolphin'! display:someObject @@ -223,6 +229,7 @@ self nextPutAll: someObject asString. ! ! + !Stream methodsFor:'Compatibility-VW'! nl @@ -232,6 +239,7 @@ self nextPut:(Character nl) ! ! + !Stream methodsFor:'accessing'! contents