summaryrefslogtreecommitdiff
path: root/dhall_generator/src (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Rename dhall_generator to dhall_proc_macrosNadrieril2019-05-043-432/+0
|
* Rename dhall_core to dhall_syntaxNadrieril2019-05-042-38/+38
|
* An empty optional value is purely semanticNadrieril2019-04-201-5/+2
|
* Make App() only store one argumentNadrieril2019-04-191-1/+0
|
* Remove obsolete dhall_expr!() macroNadrieril2019-04-181-6/+0
|
* Remove more duplicationNadrieril2019-04-181-4/+4
|
* Reduce duplication between mapping functionsNadrieril2019-04-181-2/+2
|
* Start cleaning up the mess of mapping functionsNadrieril2019-04-181-2/+2
|
* Prepare for nullary union variantsNadrieril2019-04-162-40/+54
|
* rustfmtNadrieril2019-04-151-1/+2
|
* Remove leftover bx() functionNadrieril2019-04-151-5/+5
|
* Namespace deserialization functions in a `de` submoduleNadrieril2019-04-141-6/+6
| | | | Closes #73
* Document roughly the dhall subcratesNadrieril2019-04-141-0/+5
| | | | Closes #72
* Capture `Span`s in the AST and thread them through Parsed and ResolvedNadrieril2019-04-121-2/+2
|
* Thread lifetimes through other newtypesNadrieril2019-04-111-1/+2
| | | | Closes #55
* Add SimpleType and SimpeStaticType. Derive the latterNadrieril2019-04-102-15/+26
|
* clippyNadrieril2019-04-081-2/+2
|
* Avoid constructing exprs manually when possibleNadrieril2019-04-071-0/+3
|
* Rename some modulesNadrieril2019-04-063-8/+10
|
* s/Type/StaticType/Nadrieril2019-04-062-6/+6
|
* Split dhall_expr!() into 2Nadrieril2019-04-063-9/+65
|
* Refactor and clarify various map methodsNadrieril2019-04-011-8/+6
|
* Make Expr generic in LabelNadrieril2019-03-311-5/+8
|
* Make quoting genericNadrieril2019-03-312-98/+70
|
* Remove evil Deref implNadrieril2019-03-311-1/+1
|
* Move recursion out of ExprNadrieril2019-03-312-20/+20
|
* rustfmtNadrieril2019-03-311-3/+1
|
* Make SubExpr a newtypeNadrieril2019-03-311-4/+3
|
* Remove some redundant namespacingNadrieril2019-03-312-18/+18
|
* Manually rustfmt like a naziNadrieril2019-03-272-2/+4
|
* Derive DhallType for anonymous structs and enumsNadrieril2019-03-261-22/+123
|
* Derive DhallType for structsNadrieril2019-03-262-8/+82
|
* Lay groundwork for DhallType derivingNadrieril2019-03-243-1/+26
|
* Correctly namespace interpolations in dhall_expr!()Nadrieril2019-03-241-19/+19
|
* Prepare dhall_generator for a new moduleNadrieril2019-03-242-163/+171
|
* Refactor printerNadrieril2019-03-241-3/+3
| | | | | Avoids stupid stack overflows when adding variants, gets precedences right, and updates to latest grammar changes
* Represent Optional literals more faithfullyNadrieril2019-03-211-15/+7
|
* Rename Record/Union to RecordType/UnionTypeNadrieril2019-03-211-2/+2
|
* Reorganize dhall_core a bitNadrieril2019-03-211-12/+12
|
* CI tweaksNadrieril2019-03-191-1/+0
|
* Skip build-only subcrates in code coverageNadrieril2019-03-191-0/+1
|
* Implement a few more primitivesNadrieril2019-03-181-0/+8
|
* Split List literal between empty and non-emptyNadrieril2019-03-181-3/+6
|
* Use Rc consistently everywhereNadrieril2019-03-171-2/+2
|
* Use Rc instead of Box in AST to allow structural sharingNadrieril2019-03-161-7/+8
| | | | Closes #29
* Use Box more uniformly in ASTNadrieril2019-03-161-4/+6
| | | | Closes #28
* Store an Option in OptionalLit instead of a vecNadrieril2019-03-161-3/+3
| | | | Closes #21
* Store a vec in AppNadrieril2019-03-151-1/+1
| | | | Closes #26
* Considerably simplify typecheck using dhall_expr!()Nadrieril2019-03-091-27/+57
| | | | Closes #17
* Obey clippy lintsNadrieril2019-03-091-8/+7
| | | | Closes #14