
- top.ss - Added top:eval-after-program to evaluate a new syntax in the context of Honu definitions - Added previous contents of test.ss - testing is a top-level behavior - test.ss - Removed top-level testing calls - Added bindings useful from testcase code - New purpose is to be auto-required from *-test.ss when *.honu is tested - examples/point-test.ss - Removed now-redundant definitions - examples/BoundedStack-test.ss - Wrote tests for BoundedStack, both of defined names and actual code results - examples/BoundedStack.honu - Removed test results that are now in ...-test.ss svn: r930
16 lines
614 B
Scheme
16 lines
614 B
Scheme
(append (map interface? (list MovingPoint<%>
|
|
Point3D<%>
|
|
Point<%>
|
|
ColorPoint<%>
|
|
Color<%>))
|
|
(map class? (list ColorC%
|
|
Point3DC%
|
|
ColorPointC%
|
|
ColorMovingPointC%
|
|
MovingColorPointC%
|
|
PointC%
|
|
MovingPointC%))
|
|
(map mixin? (list makeMobile-mixin
|
|
addColor-mixin
|
|
$Point3DC-mixin)))
|