Changeset 5499

Show
Ignore:
Timestamp:
07/12/05 15:52:37 (3 years ago)
Author:
Stevan
svk:copy_cache_prev:
7501
Message:

Tree - pouring more water on the fire .oO( <smoke> )

Location:
ext/Tree
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • ext/Tree/lib/Tree/Visitor.pm

    r5285 r5499  
    2020 
    2121# it is abstract 
    22 method visit ($self: Tree $tree) return Void { ... } 
     22method visit ($self: Tree $tree) returns Void { ... } 
    2323 
    2424=pod 
  • ext/Tree/t/subclass.t

    r5003 r5499  
    88class Birch is Tree { 
    99    has $.bark; 
     10     
     11    submethod BUILD (Str $.bark) {} 
    1012} 
    1113