aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Merge typecheck macro into c-parser.Hugo Hörnquist2022-07-09
|\ | | | | | | Merge branch 'new-object-system' into c-parser
| * Document type and object system.new-object-systemHugo Hörnquist2022-07-09
| |
| * Move type checking macros to own module.Hugo Hörnquist2022-07-09
| |
| * Change list-of and pair-of validator to separate macros.Hugo Hörnquist2022-07-08
| | | | | | | | | | The functionallity is still the same, but this demonstrates that the system is easily extensible.
* | work.Hugo Hörnquist2022-07-07
| |
* | Change makefile to explicit list of files.Hugo Hörnquist2022-07-07
| |
* | Major work.Hugo Hörnquist2022-07-07
| |
* | Merge branch 'new-object-system' into c-parserHugo Hörnquist2022-07-07
|\|
| * Add pair-of to object system.Hugo Hörnquist2022-07-07
| |
| * Extend object type system to allow list-of.Hugo Hörnquist2022-07-07
| |
| * Change date/time interface.Hugo Hörnquist2022-07-07
| |
| * Add tests for lenses.Hugo Hörnquist2022-07-07
| |
| * Add lenses.Hugo Hörnquist2022-07-07
| |
| * Add new object system.Hugo Hörnquist2022-07-07
| | | | | | | | fixup object tests.
* | Merge path-absolute? and better test running.Hugo Hörnquist2022-07-07
|\ \
| * | Add srfi-64 util.Hugo Hörnquist2022-07-07
| | |
| * | Tests allows multiple --only and --skip.Hugo Hörnquist2022-07-07
| | |
| * | Better expected/actual printing in tests.Hugo Hörnquist2022-07-07
| | |
| * | Add path-absolute?Hugo Hörnquist2022-07-07
| |/
* | Add basic c evaluator.Hugo Hörnquist2022-07-07
| |
* | C parser minor cleanup.Hugo Hörnquist2022-07-07
| |
* | Fix escape sequences in chars and strings.Hugo Hörnquist2022-07-07
| |
* | C parser add basic float support.Hugo Hörnquist2022-07-07
| |
* | Char parse tests, these were broken by strings.Hugo Hörnquist2022-07-07
| |
* | C parser add unary minus.Hugo Hörnquist2022-07-07
| |
* | C-parser add strings.Hugo Hörnquist2022-07-07
| |
* | C-parser #define without body.Hugo Hörnquist2022-07-07
| |
* | Fix C order of operations.Hugo Hörnquist2022-07-07
| |
* | Add split-by-one-of.Hugo Hörnquist2022-07-07
| | | | | | | | | | A rather peculiar procedure, but "needed" to implement order of operations on a flat list.
* | Major work on c parser.Hugo Hörnquist2022-07-07
|/
* JS user addition for parsing Microsoft Teams links.Hugo Hörnquist2022-07-07
|
* Extend javascript formatters to also take VEvent.Hugo Hörnquist2022-07-07
|
* Import missing car+cdr.Hugo Hörnquist2022-07-07
|
* Cleanup (vcomponent datetime).Hugo Hörnquist2022-07-07
|
* Note that with-working-directory isn't thread-safe.Hugo Hörnquist2022-07-07
|
* Various test cleanups.Hugo Hörnquist2022-07-07
|
* Clean up crypto test.Hugo Hörnquist2022-07-07
|
* Module dependants sort output.Hugo Hörnquist2022-07-07
|
* Better messages for test-assert failures.Hugo Hörnquist2022-07-07
|
* Automatic test name now narrower.Hugo Hörnquist2022-07-07
| | | | | Truncated-width defaults to 79 chars, which is to wide with our padding and tree structure to the left.
* Change run-tests shebang.Hugo Hörnquist2022-07-07
| | | | Now works no matter where bash is.
* Cleanup in graph.Hugo Hörnquist2022-07-07
|
* module-dependents: use $GUILE.Hugo Hörnquist2022-07-07
|
* Remove set! from datetime.Hugo Hörnquist2022-07-07
|
* Add time[+-] overflow tests.Hugo Hörnquist2022-07-07
|
* Remove case*.Hugo Hörnquist2022-07-07
| | | | It has its uses, but like others, its extra weight.
* Move each imported symbol to own line for easier removal.Hugo Hörnquist2022-07-07
| | | | | This allows each of the following commits to remove a single symbol from the import list without problem.
* Ensure proper environment while compiling.Hugo Hörnquist2022-07-07
|
* Group base64 tests.Hugo Hörnquist2022-07-07
|
* Tests '--skip'-flag now uses test names.Hugo Hörnquist2022-07-07
| | | | | | | | This allows us both to (as before) skip complete files, as every file is run with its own name as a test group, but also individual tests and test group inside files. See GitHub issue #57