The Trunk: Compiler-ul.182.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-ul.182.mcz

commits-2
Levente Uzonyi uploaded a new version of Compiler to project The Trunk:
http://source.squeak.org/trunk/Compiler-ul.182.mcz

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

Name: Compiler-ul.182
Author: ul
Time: 23 November 2010, 1:37:48.497 pm
UUID: ee785fb8-9a21-9b4a-a451-03f648a97ded
Ancestors: Compiler-nice.181

- removed #isLiteral from the ParseNode hierarchy, because it means something else. Added #isLiteralNode instead.

=============== Diff against Compiler-nice.181 ===============

Item was removed:
- ----- Method: LiteralNode>>isLiteral (in category 'testing') -----
- isLiteral
-
- ^ true!

Item was added:
+ ----- Method: LiteralNode>>isLiteralNode (in category 'testing') -----
+ isLiteralNode
+
+ ^ true!

Item was removed:
- ----- Method: ParseNode>>isLiteral (in category 'testing') -----
- isLiteral
-
- ^ false!

Item was added:
+ ----- Method: ParseNode>>isLiteralNode (in category 'testing') -----
+ isLiteralNode
+
+ ^ false!