Changeset 1594
- Timestamp:
- 08/28/08 04:32:56 (3 months ago)
- Location:
- cobra/trunk
- Files:
-
- 2 modified
-
Source/Members.cobra (modified) (1 diff)
-
Tests/200-misc/820-partial/100-partial-class.cobra (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
cobra/trunk/Source/Members.cobra
r1586 r1594 1556 1556 return '' 1557 1557 1558 def mergedIntoPartialBox(newBox as Box) 1559 base.mergedIntoPartialBox(newBox) 1560 if .getPart, .getPart.mergedIntoPartialBox(newBox) 1561 if .setPart, .setPart.mergedIntoPartialBox(newBox) 1562 1558 1563 def unNilReturnType is override 1559 1564 assert _returnType is nil -
cobra/trunk/Tests/200-misc/820-partial/100-partial-class.cobra
r1593 r1594 31 31 def over2(i as int) 32 32 pass 33 34 get prop as bool 35 return true
