
- top.ss - removed top: prefix from exports - renamed parse-file to ast-from-file to prevent name clash - removed test case list and run-tests - test-cases.ss - added test case list and run-tests - test-tools.ss - renamed from test.ss svn: r945
11 lines
155 B
Scheme
11 lines
155 B
Scheme
(module test-tools mzscheme
|
|
|
|
(require (lib "class.ss")
|
|
"utils.ss")
|
|
|
|
(provide (all-from (lib "class.ss")))
|
|
|
|
(define/p mixin? null?)
|
|
|
|
)
|