Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Analysis refactor #2

Open
wants to merge 33 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
3d1b460
consolidate `collections` types
ralexstokes Jan 16, 2022
7b98f75
introduce "ast" `Form` type
ralexstokes Jan 16, 2022
0e8b1a1
consolidate `writer` crate
ralexstokes Jan 16, 2022
af73d48
refactor `Atom` as "subform"
ralexstokes Jan 16, 2022
6862337
begin analyzer refactor
ralexstokes Jan 16, 2022
3c76d6d
rename to lay the groundwork for integration of analyzer
ralexstokes Jan 18, 2022
e755d9f
add reified symbol type
ralexstokes Jan 19, 2022
dd04793
wip: analysis refactor
ralexstokes Jan 27, 2022
2bf4856
wip: begin integration work
ralexstokes Feb 23, 2022
ce02c65
wip: lol
ralexstokes Feb 26, 2022
06ce0ab
bugfixes
ralexstokes Feb 27, 2022
4df5816
more bugfixes
ralexstokes Mar 1, 2022
5096f0f
refactorings
ralexstokes Mar 1, 2022
3a0164a
wip: get quoting working
ralexstokes Mar 2, 2022
09296a9
progress on macros
ralexstokes Mar 3, 2022
a002e29
progress on captures
ralexstokes Mar 5, 2022
406c4a6
refactor to split out bound vs. unbound lexical forms
ralexstokes Mar 9, 2022
7d75a7a
implement capture hoisting
ralexstokes Mar 9, 2022
46774b1
update core fn impl
ralexstokes Mar 9, 2022
d605924
clean ups
ralexstokes Mar 9, 2022
6a7109a
being fixing `=`
ralexstokes Mar 9, 2022
e17d416
sort imports
ralexstokes Mar 11, 2022
9d9666a
unify apply flows
ralexstokes Mar 11, 2022
0d8c547
fix semantics of `=` for (list, vector) instances
ralexstokes Mar 11, 2022
0bc8a53
print debug fix
ralexstokes Mar 11, 2022
6d3967b
formatting
ralexstokes Mar 11, 2022
aca5ef8
quiet testing warnings
ralexstokes Mar 11, 2022
4a1ab86
fix `read-string`
ralexstokes Mar 11, 2022
c6c9299
comment out warning for now
ralexstokes Mar 11, 2022
3d964bc
expose analyzer for `read-string`
ralexstokes Mar 11, 2022
27241d0
bugfix with `unquote` analysis
ralexstokes Mar 11, 2022
802e9c0
internalize names to vars and namespaces
ralexstokes Mar 11, 2022
bba1104
add representation for unbound var at runtime
ralexstokes Mar 11, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ license = "MIT OR Apache-2.0"
thiserror = "1.0"
itertools = "0.10"
rpds = "0.11"
archery = "0.4"

rustyline = { version = "9.1", optional = true }
rustyline-derive = { version = "0.6", optional = true }
Expand Down
480 changes: 0 additions & 480 deletions src/analyzer.rs

This file was deleted.

Loading