[squeak-dev] The Trunk: System-ul.477.mcz

commits at source.squeak.org commits at source.squeak.org
Fri Mar 30 10:57:26 UTC 2012


Levente Uzonyi uploaded a new version of System to project The Trunk:
http://source.squeak.org/trunk/System-ul.477.mcz

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

Name: System-ul.477
Author: ul
Time: 30 March 2012, 12:27:45.894 pm
UUID: fb2ac551-9367-134f-9872-2f65037f69ff
Ancestors: System-dtl.476

- restored the original behavior of SystemNavigation >> #allCallsOn:from:, so it returns calls in subclasses too
- temporarily restored NaturalLanguageTranslator class >> #translationSuffix so FileList can be used again

=============== Diff against System-dtl.476 ===============

Item was added:
+ ----- Method: NaturalLanguageTranslator class>>translationSuffix (in category 'accessing') -----
+ translationSuffix
+ 
+ 	^'translation'!

Item was changed:
  ----- Method: SystemNavigation>>allCallsOn:from: (in category 'query') -----
  allCallsOn: aSymbol from: aBehavior
+ 	"Answer a sorted collection of all the methods from aBehavior and it's subclasses that call on aSymbol."
- 	"Answer a sorted collection of all the methods from aBehavior that call on aSymbol."
  
+ 	^self allCallsOn: aSymbol fromBehaviors: aBehavior withAllSubclasses sorted: true!
- 	^self allCallsOn: aSymbol fromBehaviors: { aBehavior } sorted: true!



More information about the Squeak-dev mailing list