aboutsummaryrefslogtreecommitdiffstats
path: root/test (unfollow)
Commit message (Collapse)AuthorFilesLines
2025-07-10add display-no-eval for debuggingGravatar Peter McGoron 3-11/+37
2025-07-10Fix evaluation to do substitutions under lambdas even when evaluating toGravatar Peter McGoron 2-15/+46
weak head normal form Also evaluates identifiers when they are looked up
2025-07-09fix improper list patternsGravatar Peter McGoron 3-9/+10
2025-07-09add syntax-error, only evaluate defined terms to weak head normal formGravatar Peter McGoron 6-123/+67
2025-07-09clean up syntax-object.scmGravatar Peter McGoron 2-75/+114
2025-07-09test normal order evaluationGravatar Peter McGoron 1-0/+5
2025-07-09normal order evaluatorGravatar Peter McGoron 5-20/+184
2025-07-03debruijnize converts functions to curry formGravatar Peter McGoron 5-206/+79
2025-07-02add inject-primitiveGravatar Peter McGoron 1-7/+13
2025-07-02Store names in lexical locationsGravatar Peter McGoron 4-102/+137
The previous implementation used what amounted to dynamic binding. This is now used for global state (for instance, what the top-level `lambda` is bound to) only. When a location is bound (either through a syntax or variable binder), its lexical location is given a value that describes what the location "is". For variable bindings it is just the special symbol 'variable, but for syntax transformers the value in the lexical location is the syntax transformer (in the examples case, either a syntax-rules expander or a builtin like `lambda`). TODO: replace all instances of `empty-wrap` with an identifier that is bound with a lexical location whose value is the empty wrap value.
2025-06-28replace location-comparator with free-identifier-comparatorGravatar Peter McGoron 4-26/+56
2025-06-28move tests to their own file; use debruijn form to test alpha equivalenceGravatar Peter McGoron 5-47/+121
2025-06-28Fix list ellipses pattern matchingGravatar Peter McGoron 7-36/+100
A lot of multisyntax was written to use `unwrap-syntax` deliberately, which I now see as a mistake. Implict unwrapping using `syntax-cxr` (and maybe variants like `syntax-vector-ref`) is probably less error prone.
2025-06-28Change environments in untyped LC to use location comparators instead ofGravatar Peter McGoron 5-60/+83
bound identifier comparators NOTE: location comparators are a non-standard thing equivalent to a free identifier comparator. Should replace later. The previous code would fail when attempting to process identifiers that came from the output of a macro transformer, because those are marked.
2025-06-28fix self-syntax and shadowing of syntax keywordsGravatar Peter McGoron 4-8/+35
2025-06-28first pass at a syntax expander for pure LCGravatar Peter McGoron 6-22/+708
2025-06-20reenable testsGravatar Peter McGoron 1-2/+2
2025-06-20test (x ... y ... z ...)Gravatar Peter McGoron 2-3/+41
2025-06-20add vector patternsGravatar Peter McGoron 2-2/+47
2025-06-20add extra tests and fix temporary generation for renamingGravatar Peter McGoron 4-27/+95
2025-06-19more list testsGravatar Peter McGoron 1-1/+36
2025-06-19self-syntax tests for producerGravatar Peter McGoron 1-25/+41
2025-06-19Add ellipsis escape formGravatar Peter McGoron 5-40/+77
`(... <template>)` in R6RS+ will escape a single form of ellipses in the production. I personally do not recommend this: overriding the ellipsis with a new identifier is the better approach in all circumstances.
2025-06-19add support for multiple ellipses in a sequence in producersGravatar Peter McGoron 2-17/+35
Adopts behavior such that x ... ... => {append ((x ...) ...} x ... ... ... => {append {append (((x ...) ...) ...)}} where `{append ...}` occurs at the meta-level after expanding the patterns. (In the code this is done with an accumulator.)
2025-06-19Rework PNL calculations in pattern producer, fix producer testGravatar Peter McGoron 2-27/+49
Previous PNL calculations calculated the PNL against the entire pattern. This is not useful, because the PNL at each ellipsis pattern is what is useful. This is also nice because it does not require a parameter: the PNL can always be calculated locally.
2025-06-17pattern testingGravatar Peter McGoron 6-36/+130
2025-06-16producerGravatar Peter McGoron 5-20/+341
2025-05-02move common procedures for matcher and producer to internalGravatar Peter McGoron 8-88/+183
2025-04-26move utils to new library, emit ellipsis dag from matcher compilerGravatar Peter McGoron 7-54/+128
The compiler now returns a DAG implemented as a hash table. The keys are ellipsis group IDs and the values are lists of ellipsis group IDS. When a producer encounters a repeated form, it uses the information in this DAG to confirm that the production is valid.
2025-04-26document pattern matcher, add ellipsis groupsGravatar Peter McGoron 3-111/+191
Add precise definitions, with examples, for concepts like the ellipsis nesting level. This should clarify what the matcher is doing. They should apply to any implementation of the Macrological Fascicle's description of patterns. This also adds ellipsis grouping. This is used to determine which identifiers are allowed to be repeated with each other in output. TODO: The concept of group needs to encompass nested identifiers. For instance (let-values (((name ...) value) ...) body ...) does not allow ((name ...) body ...) but the current system does not handle this.
2025-04-25reorganize pattern moduleGravatar Peter McGoron 5-8/+11
2025-04-25test vectors with matches after an ellipsesGravatar Peter McGoron 2-10/+53
2025-04-25support literals as a list of identifiers, test literalsGravatar Peter McGoron 2-17/+44
2025-04-25fix nested ellipsesGravatar Peter McGoron 2-7/+99
2025-04-25rewrite expanderGravatar Peter McGoron 3-145/+276
Expander now uses dynamically scoped variables. The old lexical scope variable implementation was getting to four nested lambdas, which was unreadable. The dynamic variables are clearly labeled and segregated from the rest of the code. The actual compiler interacts with the dynamic variables through an API. The previous compiler did not handle empty ellipses match properly. This has some more work to fix that.
2025-04-24fix pattern list creationGravatar Peter McGoron 4-20/+38
2025-04-24fix is-ellipsis-listGravatar Peter McGoron 1-1/+1
2025-04-24add pattern matcher and some testsGravatar Peter McGoron 5-0/+309
2025-04-24add tests for bound-identifier-comparatorGravatar Peter McGoron 3-121/+175