[Pkg] The Trunk: System-ul.429.mcz

commits at source.squeak.org commits at source.squeak.org
Sat Apr 2 12:03:05 UTC 2011


Levente Uzonyi uploaded a new version of System to project The Trunk:
http://source.squeak.org/trunk/System-ul.429.mcz

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

Name: System-ul.429
Author: ul
Time: 2 April 2011, 2:02:24.802 pm
UUID: 2065453c-d28d-d949-9a84-31226ee986bf
Ancestors: System-nice.428

- added #newParser and #newCompiler to PseudoClass

=============== Diff against System-nice.428 ===============

Item was added:
+ ----- Method: PseudoClass>>newCompiler (in category 'accessing') -----
+ newCompiler
+ 	"Answer a Compiler suitable for compiling this Behavior"
+ 	^self compilerClass new parser: self newParser!

Item was added:
+ ----- Method: PseudoClass>>newParser (in category 'accessing') -----
+ newParser
+ 	"Answer a Parser suitable for parsing source code in this Behavior"
+ 	^self parserClass new!



More information about the Packages mailing list