[squeak-dev] The Trunk: Morphic-mt.1494.mcz

commits at source.squeak.org commits at source.squeak.org
Mon Jul 22 09:46:59 UTC 2019


Marcel Taeumel uploaded a new version of Morphic to project The Trunk:
http://source.squeak.org/trunk/Morphic-mt.1494.mcz

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

Name: Morphic-mt.1494
Author: mt
Time: 22 July 2019, 11:46:46.821271 am
UUID: accf580c-8888-4787-9250-bc4518ebcfb5
Ancestors: Morphic-mt.1493

In text editors, [cmd]+[shift]+[N] now correctly includes references in pool dictionaries.

=============== Diff against Morphic-mt.1493 ===============

Item was changed:
  ----- Method: TextEditor>>referencesToIt (in category 'menu messages') -----
  referencesToIt
  	"Open a MessageSet with the references to the selected global or variable name."
  	| selection environment binding |
  	self selection isEmpty ifTrue: [ self selectWord ].
  	environment := (model respondsTo: #selectedClassOrMetaClass)
  		ifTrue: [ model selectedClassOrMetaClass ifNil: [ model environment ] ]
  		ifFalse: [ model environment ].
  	selection := self selectedSymbol ifNil: [ self selection asString ].
  	(environment isBehavior and:
  		[ (environment
  			instVarIndexFor: selection
  			ifAbsent: [ 0 ]) ~= 0 ]) ifTrue: [ ^ self systemNavigation
  			browseAllAccessesTo: selection
  			from: environment ].
  	selection isSymbol ifFalse: [ ^ morph flash ].
  	binding := (environment bindingOf: selection) ifNil: [ ^ morph flash ].
+ 	
+ 	self systemNavigation browseAllCallsOnClass: binding.!
- 	self systemNavigation browseAllCallsOn: binding!



More information about the Squeak-dev mailing list