summaryrefslogtreecommitdiff
path: root/dhall/src/typecheck.rs (follow)
Commit message (Expand)AuthorAgeFilesLines
* Remove dummy lifetimesNadrieril2019-05-041-93/+74
* rustfmtNadrieril2019-05-041-1/+1
* Rename dhall_generator to dhall_proc_macrosNadrieril2019-05-041-1/+1
* Rename dhall_core to dhall_syntaxNadrieril2019-05-041-14/+14
* Remove some deprecated functionsNadrieril2019-05-031-1/+1
* Avoid unnecessary RefCell::borrow_mutNadrieril2019-05-031-14/+4
* Update dhall-lang submoduleNadrieril2019-05-021-0/+1
* Typecheck text interpolationNadrieril2019-05-021-3/+16
* Typecheck missing builtin casesNadrieril2019-05-021-29/+47
* Remove shift0Nadrieril2019-05-021-14/+5
* Instead of possibly nonexistent Type, treat Sort speciallyNadrieril2019-05-021-156/+117
* Store Thunk in NormalizedNadrieril2019-05-021-21/+5
* TweaksNadrieril2019-05-021-30/+38
* Remove now useless TypedOrType typeNadrieril2019-04-301-86/+34
* Avoid some rewrapping of thunksNadrieril2019-04-301-2/+2
* Don't borrow from thunk more than necessaryNadrieril2019-04-301-37/+58
* Pass references when possibleNadrieril2019-04-301-26/+33
* Merge Typed and PartiallyNormalizedNadrieril2019-04-301-75/+62
* Store a Thunk in TypedNadrieril2019-04-301-6/+11
* Store thunks behind Rc<RefCell<_>> to ensure minimal computationNadrieril2019-04-301-4/+1
* Remove NF/WHNF distinction at runtimeNadrieril2019-04-291-6/+6
* Allow representing normal form as a semantic valueNadrieril2019-04-291-22/+27
* Don't need to store original expression in TypeErrorNadrieril2019-04-291-48/+14
* Properly substitute when typing AppNadrieril2019-04-291-45/+45
* Use PartiallyNormalized throughout typecheckingNadrieril2019-04-281-86/+87
* Move Pi to WHNFNadrieril2019-04-271-36/+41
* BuiltinsNadrieril2019-04-271-15/+11
* Replace TypeInternal::UnionType with WHNF::UnionTypeNadrieril2019-04-271-23/+23
* Replace TypeInternal::RecordType with WHNF::RecordTypeNadrieril2019-04-271-28/+51
* Rework TypeInternalNadrieril2019-04-271-83/+72
* Lists and OptionalsNadrieril2019-04-261-42/+94
* ensure_is_const is not that helpfulNadrieril2019-04-261-59/+35
* Union typesNadrieril2019-04-261-66/+117
* Fix shifting againNadrieril2019-04-251-13/+9
* Now I can use TypeInternal::RecordType fullyNadrieril2019-04-251-11/+10
* Revert "Try property testing against reference implementation"Nadrieril2019-04-251-133/+0
* Try property testing against reference implementationNadrieril2019-04-251-0/+133
* Correctly shift values before inserting into contextNadrieril2019-04-251-4/+7
* normalize_to_type can use the captured contextNadrieril2019-04-251-14/+14
* RecordTypesNadrieril2019-04-231-62/+108
* Fix shifting under PiNadrieril2019-04-231-13/+29
* Avoid duplicating TypeInternal in TypedImprovedNadrieril2019-04-231-44/+40
* Avoid constructing ExprF::Pi while typecheckingNadrieril2019-04-231-57/+93
* Avoid duplicating work when matching on Pi typesNadrieril2019-04-231-35/+100
* Pass TypedImproved directly to type_last_layerNadrieril2019-04-231-40/+55
* Temporarily simplify functions depending on TypeInternalNadrieril2019-04-221-26/+14
* Pass through new TypedImproved typeNadrieril2019-04-221-25/+92
* Store context in TypedNadrieril2019-04-221-13/+18
* Avoid shift_subst in typecheckNadrieril2019-04-221-31/+25
* Prepare for interop between two contextsNadrieril2019-04-211-8/+53