[squeak-dev] The Trunk: Tools-topa.734.mcz

commits at source.squeak.org commits at source.squeak.org
Wed Nov 30 20:11:55 UTC 2016


Tobias Pape uploaded a new version of Tools to project The Trunk:
http://source.squeak.org/trunk/Tools-topa.734.mcz

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

Name: Tools-topa.734
Author: topa
Time: 30 November 2016, 9:11:47.629631 pm
UUID: 27819c9e-a945-4829-bc77-1feffe7f997f
Ancestors: Tools-topa.733

¯\_(ô_o)_/¯

=============== Diff against Tools-topa.733 ===============

Item was changed:
  ----- Method: Behavior>>createGetterFor: (in category '*Tools-Browser-accessors') -----
  createGetterFor: aName
  
  	| code |
+ 	code := '{1}\	\	^ {1}\' withCRs format: {aName.}.
- 	code := '{1}\	<generated>\\	^ {1}\' withCRs format: {aName.}.
  	self compile: code classified: #accessing notifying: nil.!

Item was changed:
  ----- Method: Behavior>>createSetterFor: (in category '*Tools-Browser-accessors') -----
  createSetterFor: aName
  
  	| code |
+ 	code := '{1}: anObject\	\	{2}{1} := anObject.\' withCRs
- 	code := '{1}: anObject\	<generated>\\	{2}{1} := anObject.\' withCRs
  		format: {aName. self settersReturnValue ifTrue: ['^ '] ifFalse: [''].}.
  	self compile: code classified: #accessing notifying: nil.!



More information about the Squeak-dev mailing list