summaryrefslogtreecommitdiff
path: root/dhall (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Move api into its own crateNadrieril2019-08-138-505/+16
|
* Remove ensure_... macros in typecheckNadrieril2019-08-121-115/+89
| | | | They weren't worth it
* Fix a testNadrieril2019-08-121-2/+0
|
* Remove dhall::expr!() macroNadrieril2019-08-106-61/+137
| | | | It's a lot of hassle for not a lot of benefit
* Update dhall-lang submoduleNadrieril2019-08-102-4/+22
|
* Update dhall-lang submoduleNadrieril2019-08-082-0/+4
|
* Add support for dependent typesNadrieril2019-08-088-27/+87
|
* Update dhall-lang submoduleNadrieril2019-08-072-0/+4
|
* Flatten nested let bindingsNadrieril2019-08-072-6/+43
|
* Normalize field selection further by inspecting the argumentNadrieril2019-08-071-0/+12
|
* Remove an annoying redundancy in the test harnessNadrieril2019-08-073-50/+33
|
* Add binary-decode testsNadrieril2019-08-073-3/+74
|
* Add truncated Natural subtractionNadrieril2019-08-072-0/+11
|
* Remove union literals from the languageNadrieril2019-08-074-37/+6
|
* Various parsing tweaksNadrieril2019-08-072-7/+3
|
* Forbid surrogate pairs and non-charactersNadrieril2019-08-071-0/+2
|
* Generalize empty list annotationsNadrieril2019-08-062-2/+8
|
* Prepare for https://github.com/dhall-lang/dhall-lang/pull/630Nadrieril2019-08-064-45/+71
|
* rustfmtNadrieril2019-08-061-1/+2
|
* Add toMap keywordNadrieril2019-08-061-0/+21
|
* Auto-generate typechecking tests listNadrieril2019-08-062-398/+33
|
* Change URL parsingNadrieril2019-08-061-0/+1
|
* Change some testsNadrieril2019-08-062-15/+18
|
* RFC3986 URLsNadrieril2019-08-062-3/+25
|
* Add some testsNadrieril2019-08-062-2/+28
|
* Add some new tests and implement import alternativesNadrieril2019-08-063-4/+4
|
* rustfmtNadrieril2019-08-061-7/+10
|
* Update dhall-lang submoduleNadrieril2019-08-061-0/+2
|
* Remove old-style optional literalsNadrieril2019-08-063-37/+16
|
* Inline headersNadrieril2019-08-064-15/+29
|
* rustfmtNadrieril2019-08-032-26/+64
|
* Merge pull request #93 from Nadrieril/catchup-specNadrieril Feneanar2019-08-033-19/+24
|\ | | | | Do some catch up on the spec
| * Update dhall-lang submoduleNadrieril2019-08-031-5/+10
| |
| * Update dhall-lang submoduleNadrieril2019-08-031-12/+12
| |
| * Update dhall-lang submoduleNadrieril2019-08-031-2/+2
| |
* | Merge remote-tracking branch 'origin/master' into fintan/typecheck-combine-typesFintanH2019-08-033-9/+129
|\|
| * Merge remote-tracking branch 'origin/master' into fintan/typecheck-combineFintanH2019-08-033-15/+58
| |\
| * | Mark RecursiveRecordMerge as unreachableFintanH2019-08-011-0/+1
| | |
| * | Add the typechecking of RecursiveRecordMerge.FintanH2019-08-013-8/+129
| | | | | | | | | | | | | | | | | | | | | | | | | | | This introduces an external function for HashMaps to perform an outer join so that you can do a unionWith but with more power by having a new tagert type. Using outer_join and recursively looking through records of records we have an implementation for combining records.
* | | Simplify Const checking logicFintanH2019-08-031-11/+7
| | |
* | | Merge remote-tracking branch 'origin/master' into fintan/typecheck-combine-typesFintanH2019-08-033-6/+50
|\ \ \ | | |/ | |/|
| * | Add unreachable call for RightBasedRecordMerge caseFintanH2019-07-311-0/+1
| | |
| * | Reuse the merge_maps function to implement the right-biased unionFintanH2019-07-312-7/+7
| | |
| * | Add case for RightBasedRecordMerge in the typechecking phase.Fintan Halpenny2019-07-312-5/+48
| |/ | | | | | | | | | | | | | | | | | | | | | | The implementation checks the types and kinds of the LHS and RHS. In the happy path it unions the HashMap prefering keys on the RHS over the LHS, and the result is the type of the resulting HashMap. The error cases are: - If the kinds of the records differ it results in a RecordMismatch error. - If either the LHS or RHS are not records it results in a MustCombineRecord error.
* / Add typechecking for RecursiveRecordTypeMerge.FintanH2019-08-013-7/+120
|/ | | | | | | | | | The implementation brings with it intersection_with_key over HashMaps to help with the type checking of records of records. The implementation first checks that the Const values line up with the LHS and RHS. Then checks that combining the records does not result in a FieldCollision. It will finally return the shared Const type of the arguments.
* Finish implementing binary encodingNadrieril2019-05-122-8/+11
|
* clippyNadrieril2019-05-126-126/+118
|
* Split-off printer and binary encoding tests from parser testsNadrieril2019-05-122-37/+85
|
* Include success or failure prefix in test filteringNadrieril2019-05-124-24/+18
|
* Implement binary encodingNadrieril2019-05-128-32/+359
| | | | Closes #39