'From Pharo0.1 of 16 May 2008 [Latest update: #10330] on 8 June 2009 at 9:51:07 pm'!

!Compiler methodsFor: 'public access' stamp: 'alain.plantec 6/8/2009 21:50'!
format: textOrStream in: aClass notifying: aRequestor contentsSymbol: aSymbol	 
	"Compile a parse tree from the argument, textOrStream. 
	Answer a string containing the original code, formatted nicely."  
	
	self deprecated: #colorWhenPrettyPrintingAsBeenRemoved.
	^ self format: textOrStream in: aClass notifying: aRequestor
! !


!Compiler class methodsFor: 'evaluating' stamp: 'alain.plantec 6/8/2009 21:50'!
format: textOrStream in: aClass notifying: aRequestor contentsSymbol: aSymbol 
	^ self new format: textOrStream in: aClass notifying: aRequestor contentsSymbol: aSymbol
! !

