mirror of
https://github.com/anoma/juvix.git
synced 2024-12-12 14:28:08 +03:00
2cf3f85439
* work in progress towards implicit arguments * Wip towards implicit types * improve arity checker * Add version of SimpleFungibleToken with implicit arguments * guess arity of body before checking the lhs of a clause * add ArityUnknown and fix some tests * wip: proper errors in arity checker * fix bugs, improve errors and add tests * format * set hlint version to 3.4 in the ci * update pre-commit version to 3.0.0 * minor changes * added more revisions * minor Co-authored-by: Jonathan Cubides <jonathan.cubides@uib.no>
11 lines
157 B
Haskell
11 lines
157 B
Haskell
module Arity
|
|
( allTests,
|
|
)
|
|
where
|
|
|
|
import Arity.Negative qualified as N
|
|
import Base
|
|
|
|
allTests :: TestTree
|
|
allTests = testGroup "Arity tests" [N.allTests]
|