summaryrefslogtreecommitdiff
path: root/dhall/src/semantics/core (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Move Value-related stuff under semantics::nzeNadrieril2020-01-305-908/+0
|
* Introduce Thunks and normalize lazilyNadrieril2020-01-302-13/+59
|
* Remove NF marker; it was premature optimizationNadrieril2020-01-301-22/+11
|
* Increase encapsulation for ClosuresNadrieril2020-01-301-7/+27
|
* Make unnormalized Values unobservableNadrieril2020-01-301-7/+2
|
* s/as_whnf/kind/Nadrieril2020-01-301-5/+5
|
* TweakNadrieril2020-01-301-9/+4
|
* Remove use of take_mutNadrieril2020-01-301-25/+22
|
* Encapsulate partially applied builtin in a separate structNadrieril2020-01-302-32/+17
|
* Move builtins-related code to its own moduleNadrieril2020-01-301-9/+22
|
* Cleanup variable handlingNadrieril2020-01-293-38/+6
|
* Move envs to their own filesNadrieril2020-01-291-2/+2
|
* Finally get rid of all of the shift/subst_shift !Nadrieril2020-01-292-82/+0
|
* s/QuoteEnv/VarEnv/Nadrieril2020-01-291-18/+18
|
* Remove dead codeNadrieril2020-01-293-135/+0
|
* Use TyExpr in TypedNadrieril2020-01-291-6/+1
|
* Implement assert & merge and fix more bugsNadrieril2020-01-281-11/+36
|
* Thread env through nztion to fix Foo/build closuresNadrieril2020-01-282-9/+21
|
* Fix all sorts of variable shenanigansNadrieril2020-01-281-108/+10
|
* Start rewriting value comparisonNadrieril2020-01-271-0/+107
|
* Fix a bunch of bugs and more tckNadrieril2020-01-271-1/+7
|
* Enable comparing Closures for equalityNadrieril2020-01-251-9/+11
|
* Implement basic typecheck with new approachNadrieril2020-01-241-3/+2
|
* Fix some variable shifting failuresNadrieril2020-01-242-9/+26
|
* Disable runtime type checksNadrieril2020-01-241-6/+7
|
* Normalize more expressionsNadrieril2020-01-241-1/+5
|
* Restore all types in Value::to_tyexprNadrieril2020-01-242-54/+81
|
* Implement basic env-based normalization for Value-based TyExprNadrieril2020-01-232-108/+177
|
* Prepare Value for reverse variablesNadrieril2020-01-213-17/+35
| | | | I thought it would work ><. It's a bit too early
* Simplify type error typeNadrieril2020-01-211-2/+1
|
* Reimplement basic tck/nze with proper environmentsNadrieril2020-01-201-0/+3
| | | | Inspired from dhall_haskell
* Restore more types in value_to_tyexprNadrieril2020-01-192-28/+63
|
* fixup! Introduce intermediate representation that stores typed exprNadrieril2020-01-181-65/+62
|
* Introduce intermediate representation that stores typed exprNadrieril2020-01-182-25/+80
|
* SimplifyNadrieril2020-01-173-40/+19
|
* Replace all bulk shifting by a single shiftNadrieril2020-01-173-72/+8
|
* Use alpha variables everywhereNadrieril2020-01-172-22/+10
| | | | Don't bother keeping name around, it complicates matters
* Implement bulk shiftingNadrieril2020-01-174-63/+134
|
* Simplify a bitNadrieril2020-01-173-33/+42
|
* Remove Shift/Subst traitsNadrieril2020-01-173-212/+114
|
* Simplify Shift and Subst instancesNadrieril2020-01-172-270/+39
|
* Remove binder idsNadrieril2020-01-173-136/+16
| | | | The underlying purpose of them turned out to be unsound
* Use binder ids to reconstruct variables in expr outputNadrieril2020-01-173-28/+49
|
* Simplify Value::to_exprNadrieril2020-01-171-9/+9
|
* Use binder ids for Value equalityNadrieril2020-01-172-8/+74
|
* Store corresponding binder id in AlphaVarNadrieril2020-01-171-10/+14
|
* Assign a unique id to each binderNadrieril2020-01-172-5/+25
|
* Introduce a notion of binderNadrieril2020-01-174-33/+42
|
* Implement traverse_ref for ValueKindNadrieril2020-01-173-0/+165
|
* Parameterize ValueKind by its subnodesNadrieril2020-01-171-15/+18
|