Show
Ignore:
Timestamp:
08/28/08 07:42:22 (4 months ago)
Author:
Chuck.Esterbrook
Message:

Code cleanup.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • cobra/trunk/Source/CobraParser.cobra

    r1596 r1605  
    16621662                        isMissingType = true 
    16631663                # note: isTypeless is currently used to generate a warning in .paramDecls above, but in the future it may also be needed for when parameter types are inferred for anon methods 
    1664                 p = Param(token, type) # CC: put property sets in initializer (absorb next line) 
    1665                 p.isMissingType = isMissingType 
    1666                 p.kind = kind 
    1667                 return p 
     1664                return Param(token, type, isMissingType=isMissingType, kind=kind) 
    16681665 
    16691666