[squeak-dev] The Inbox: System-ct.1094.mcz

commits at source.squeak.org commits at source.squeak.org
Sat Sep 21 15:24:08 UTC 2019


A new version of System was added to project The Inbox:
http://source.squeak.org/inbox/System-ct.1094.mcz

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

Name: System-ct.1094
Author: ct
Time: 21 September 2019, 5:24:03.679935 pm
UUID: 93831414-eb3d-c64c-9855-48515c407f92
Ancestors: System-mt.1093

Rephrase MethodReference class comment

=============== Diff against System-mt.1093 ===============

Item was changed:
  Object subclass: #MethodReference
  	instanceVariableNames: 'classSymbol classIsMeta methodSymbol stringVersion category environment'
  	classVariableNames: 'InvalidReference'
  	poolDictionaries: ''
  	category: 'System-Tools'!
  
+ !MethodReference commentStamp: 'ct 9/21/2019 17:22' prior: 0!
+ A MethodReference is is a lightweight proxy for a CompiledMethod.  Has methods to refer to the CompileMethod's source statements, byte codes. Is heavily used by Tools.
- !MethodReference commentStamp: 'tlk 5/9/2006 18:43' prior: 0!
- A MethodReference is is a lightweight proxy for a CompiledMethod.  Has methods for pointed to the CompileMethod's source statements, byte codes. Is heavily used my Tools.
  
  Instance Variables
+ 	classIsMeta:		Boolean class vs. instance
- 	classIsMeta:		     Boolean class vs. instance
  	classSymbol:		Symbol for method's class (without class keyword if meta)
+ 	methodSymbol:	Symbol for method's selector
- 	methodSymbol:		Symbol for method's selector
  	stringVersion:		'Class>>selector:' format
  
  !



More information about the Squeak-dev mailing list