The Trunk: Compiler-eem.284.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Trunk: Compiler-eem.284.mcz

commits-2
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]!