about summary refs log tree commit diff
path: root/src/parser
AgeCommit message (Collapse)AuthorFilesLines
2021-03-14 Universally quantified type variablesGriffin Smith3-9/+74
Implement universally quantified type variables, both explicitly given by the user and inferred by the type inference algorithm.
2021-03-14 Make string and bool parsing completeGriffin Smith2-5/+10
2021-03-14 Add string support to the frontendGriffin Smith3-5/+43
2021-03-13 Add the start of a hindley-milner typecheckerGriffin Smith3-4/+27
The beginning of a parse-don't-validate-based hindley-milner typechecker, which returns on success an IR where every AST node trivially knows its own type, and using those types to determine LLVM types in codegen.
2021-03-13 Allow exprs+bindings to optionally be ascriptedGriffin Smith3-25/+224
2021-03-13 Factor out expr parser into its own moduleGriffin Smith3-495/+509
2021-03-08 Implement functions, both top-level and anonymousGriffin Smith1-13/+154
Implement both top-level and anonymous functions, but not closures in either case.
2021-03-07 Initial commitGriffin Smith1-0/+445