Changeset 1605 for cobra/trunk/Source/CobraParser.cobra
- Timestamp:
- 08/28/08 07:42:22 (4 months ago)
- Files:
-
- 1 modified
-
cobra/trunk/Source/CobraParser.cobra (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
cobra/trunk/Source/CobraParser.cobra
r1596 r1605 1662 1662 isMissingType = true 1663 1663 # 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) 1668 1665 1669 1666
