'From PharoCore1.0rc1 of 19 October 2009 [Latest update: #10502] on 11 January 2010 at 4:52:29 pm'!!Inspector methodsFor: 'menu commands' stamp: 'CedrickBeler 1/11/2010 08:59'!fieldListMenu: aMenu	"Arm the supplied menu with items for the field-list of the receiver"	aMenu addStayUpItemSpecial.	aMenu addList: #(		('inspect (i)'						inspectSelection)		('explore (I)'						exploreSelection)).	self addCollectionItemsTo: aMenu.	aMenu addList: #(		-		('method refs to this inst var'		referencesToSelection)		('methods storing into this inst var'	defsOfSelection)		('objects pointing to this value'		objectReferencesToSelection)		('chase pointers'					chasePointers)		('explore pointers'					explorePointers)		-		('browse full (b)'					browseMethodFull)		('browse class'						browseClass)		('browse hierarchy (h)'				classHierarchy)		('browse protocol (p)'				browseFullProtocol)		-		('inst var refs...'					browseInstVarRefs)		('inst var defs...'					browseInstVarDefs)		('class var refs...'					classVarRefs)		('class variables'					browseClassVariables)		('class refs (N)'						browseClassRefs)		-		('copy name (c)'					copyName)				('copy object' 							bufferSelection)								('basic inspect'						inspectBasic)		).	^ aMenu! !