[squeak-dev] The Trunk: Morphic-ar.272.mcz

commits at source.squeak.org commits at source.squeak.org
Tue Dec 22 11:54:25 UTC 2009


Andreas Raab uploaded a new version of Morphic to project The Trunk:
http://source.squeak.org/trunk/Morphic-ar.272.mcz

==================== Summary ====================

Name: Morphic-ar.272
Author: ar
Time: 22 December 2009, 12:51:54 pm
UUID: 2f10e62d-4c76-7740-92db-387033039a5b
Ancestors: Morphic-kb.271

CompiledMethodTrailer phase 2.

=============== Diff against Morphic-kb.271 ===============

Item was changed:
  ----- Method: TextEditor>>compileSelectionFor:in: (in category 'do-its') -----
  compileSelectionFor: anObject in: evalContext
  
+ 	| methodNode |
- 	| methodNode method |
  	methodNode := [Compiler new
  		compileNoPattern: self selectionAsStream
  		in: anObject class
  		context: evalContext
  		notifying: self
  		ifFail: [^nil]]
  			on: OutOfScopeNotification
  			do: [:ex | ex resume: true].
+ 	^ methodNode generateWithTempNames!
- 	method := methodNode generate: #(0 0 0 0).
- 	^method copyWithTempsFromMethodNode: methodNode!




More information about the Squeak-dev mailing list