This project is an implementation of Dhall in PureScript. It covers the standard API for representing, parsing, importing, and verifying Dhall expressions.
It works both in the browser and on node.js. Or at least it should! File an issue if you run into problems.
The current weaknesses are lack of efficiency and some bugs/edge cases in parsing and pretty printing.
JS dependencies use npm
, see package.json
:
npm install --save @petamoriken/float16@^2.0.0
npm install --save big-integer@^1.6.48
npm install --save nearley@^2.20.1
npm install --save node-fetch@^2.6.1
npm install --save git://github.com/athanclark/sjcl.git#e6ca43fbcc85689f9e6b212cc88b85a53295a459
You should probably use spago
to install this!
If you want to use bower
, it's in an ugly state since some dependencies are not updated (warning: solving dependencies will take a loooong time):
bower install --force-latest --save MonoidMusician/dhall-purescript#main
rm -rf bower_components/purescript-generics-rep/ bower_components/purescript-proxy/
pulp build -I bower_components/dhall-purescript/src/
Generate the grammar by calling dhall-purescript/grammar.sh
from the root of your project:
./bower_components/dhall-purescript/grammar.sh || ./.spago/dhall-purescript/*/grammar.sh
(this ensures grammar.js
ends up adjacent to output
, so the FFI can find it)
Copy or symlink the cbor-js
library:
mkdir lib
cd lib
ln -s ../.spago/dhall-purescript/main/lib/cbor-js cbor-js
Because Dhall is awesome, relatively simple, and conceptually clean. It has an agreed-upon standard, with lots of tests, is under active development, continually improving.
It is in my experience one of the best (typed!) compile-to-JS languages out there, and it supports all the abstraction I need. (It even has PolyKinds!)
Dhall-Purescript has 100% compliance with the test suite. Nevertheless there are some gaps in the API, particularly in the untested pretty printer, lack of consumer API, and incomplete CLI interface.
It implements the syntax, a parser, and all the judgments of the Dhall standard: import resolution, typechecking, alpha- and beta-normalization, and all the smaller judgments needed to support them. Additionally, there is a small and incomplete API for converting to PureScript types (like the Haskell implementation provides).
The main expression type is Dhall.Core.AST.Types.Expr m a
. It is a newtype of the Free
monad on top of VariantF
(an extensible sum functor, although the extensibility is rarely used in this library). The first parameter m :: Type -> Type
is the functor used for records/unions; it is usually Data.Map.Map String
(unordered) or Dhall.Map.InsOrdStrMap
(ordered), see Dhall.Core.AST.Operations
for functions to change it. The second parameter a :: Type
represents the leaves (usually used for imports), it can be mapped over using the Functor
instance (along with Traversable
and even Monad
, for substitution).
A word of warning: most of the library is implemented in more generality than you should ever want or need. In particular, the algorithms are meant to work with various different types of trees, and some of them are very scary complicated, like Ospr
. The public API works solely with the simple Expr m a
tree, however.
Dhall.Variables.alphaNormalize
implements alpha-normalization.Dhall.Normalize.normalize
implements beta-normalization. Note that this will not sort the tree, so useDhall.Core.AST.Operations.unordered
for that.Dhall.Imports.Hash.neutralize
will fully normalize an AST andDhall.Imports.Hash.hash
will calculate the sha256 value of it.Dhall.TypeCheck.typeOf
(and friends) implements typechecking, returning results in the error functorValidation.These.Erroring
(which is bundled with this library), where the error parameter is an extensible variant.Dhall.TypeCheck.Errors.explain
can be used to render those errors, or just useDhall.TypeCheck.oneStopShop
.Dhall.Imports.Resolve.resolveImports
implements import resolution, but it is agnostic to the retrieval mechanism used, some of which can be found inDhall.Imports.Retrieve
(for both node and browser). See those files for more docs, and the tests and CLI for example usage.Dhall.Parser.parse
implements parsing, using the externalnearley.js
library. Sorry, there are no meaningful errors provided.Dhall.Printer.printAST
implements a basic pretty printer.Dhall.API.Conversions
implements conversions to/from PS types.
You can use the npm commands cli
and normalize
to access the basic command-line interface:
npm run cli -- normalize-all -b "dhall-lang/Prelude/Double/*.dhall"
npm run normalize https://test.dhall-lang.org/Bool/package.dhall
You can run the tests with npm run test -- --
. You can specify test categories (parser, normalization, alpha-normalization, semantic-hash, type-inference, import, and binary-decode) and individual tests (starting with ./dhall-lang/
but NOT including the suffix of {A,B}.*
!!). You can also exclude test categories or tests by prepending a minus sign. The prelude doesn't complete without OOMing so I typically exclude it.
npm run test -- parser
npm run test -- -type-inference -b -import
npm run test -- -./dhall-lang/tests/type-inference/success/prelude