Squeak
  links to this page:    
View this PageEdit this PageUploads to this PageHistory of this PageTop of the SwikiRecent ChangesSearch the SwikiHelp Guide
MultiByteFileStream fileOutClass: extraClass andObject: theObject
Last updated at 11:39 am UTC on 12 January 2019
 fileOutClass: extraClass andObject: theObject 
	self binary.
	UTF8TextConverter writeBOMOn: self.
	self text.
	^ super fileOutClass: extraClass andObject: theObject

The call to super makes the code implemented in WriteStream to be executed.

WriteStream fileOutClass: extraClass andObject: theObject