Changeset 1596 for cobra/trunk/Source/CobraParser.cobra
- Timestamp:
- 08/28/08 05:23:09 (4 months ago)
- Files:
-
- 1 modified
-
cobra/trunk/Source/CobraParser.cobra (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
cobra/trunk/Source/CobraParser.cobra
r1593 r1596 1150 1150 initExpr = nil 1151 1151 if type is nil 1152 type = .typeProvider.d ynamicType1152 type = .typeProvider.defaultType 1153 1153 docString = '' to ? 1154 1154 isNames = List<of String>(_isNamesStack) … … 1398 1398 returnType = .typeId to ITypeProxy 1399 1399 else 1400 returnType = _typeProvider.d ynamicType1400 returnType = _typeProvider.defaultType 1401 1401 # TODO: implements? 1402 1402 hasIsNames = false … … 1528 1528 returnType = .typeId to ITypeProxy 1529 1529 else 1530 returnType = _typeProvider.d ynamicType1530 returnType = _typeProvider.defaultType 1531 1531 # TODO: implements? 1532 1532 hasIsNames = false … … 1659 1659 isMissingType = false 1660 1660 else 1661 type = TypeProxy(_typeProvider.d ynamicType) # the default type for a parameter is dynamic1661 type = TypeProxy(_typeProvider.defaultType) 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
