- top.ss
- commented out compile-failure tests for now
- cce-notes.txt
- added my preliminary notes about the Honu codebase
- examples/*-test.ss
- added *-test.ss files for all *.honu files
svn: r943
- 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
- test.ss
- added list of examples files to test
- added test-file function to run file and related test cases
- added run-tests to run automated honu tests
- examples/
- added test case file for point.honu
- top.ss
- imported util.ss
- added run-programs
- moved test-program to test.ss
- util.ss
- removed unnecessary "ast.ss" import
- added "contract.ss" import
- changed names to prevent import name-clash
- added definitions of define/p (provide) and define/c (provide/contract),
plus define-struct versions
- added map-values for mapping functions which return arbitrary numbers of values
- tenv.ss
- added sqrt() function to Honu environment
svn: r909
of a supertype and subtype, where the subtype was not yet added to
the tenv. Had to hack to get around that one.
Also little problems like the fact that list can be captured by the
user program, so we can't use that -- used list* (with a null at the
end) and null (for empty lists) instead.
Since the power was down and I couldn't get the earlier stuff committed,
I have even more changes. Bug-fixes, mostly, though now top-level
functions that are defined consecutively are mutually recursive as they
should be.
svn: r300