[squeak-dev] The Trunk: Compiler-eem.284.mcz

commits at source.squeak.org commits at source.squeak.org
Thu Jun 26 19:40:20 UTC 2014


Eliot Miranda uploaded a new version of Compiler to project The Trunk:
http://source.squeak.org/trunk/Compiler-eem.284.mcz

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

Name: Compiler-eem.284
Author: eem
Time: 26 June 2014, 12:39:57.941 pm
UUID: 2a34ef9b-610f-48c7-b117-14cc50941311
Ancestors: Compiler-eem.283

Fix parseSelector: for allowUnderscoreSelectors regime.

=============== Diff against Compiler-eem.283 ===============

Item was changed:
  ----- Method: Parser>>parseSelector: (in category 'public access') -----
  parseSelector: aString 
  	"Answer the message selector for the argument, aString, which should 
  	 parse successfully up to the temporary declaration or the end of the 
  	 method header."
  
+ 	self allowUnderscoreSelectors ifFalse: [self initScannerForTokenization].
- 	self initScannerForTokenization.
  	^self
  		initPattern: aString
  		return: [:pattern | pattern at: 1]!



More information about the Squeak-dev mailing list