mirror of
https://github.com/anoma/juvix.git
synced 2024-12-11 08:25:46 +03:00
4c5fee3e95
* Compute name dependency graph and filter unreachable declarations * bugfix: recurse into type signatures * positive tests * make ormolu happy * get starting nodes from ExportInfo * make ormolu happy * cosmetic refactoring of DependencyInfo * fix tests & style
11 lines
178 B
Haskell
11 lines
178 B
Haskell
module Reachability
|
|
( allTests,
|
|
)
|
|
where
|
|
|
|
import Base
|
|
import Reachability.Positive qualified as P
|
|
|
|
allTests :: TestTree
|
|
allTests = testGroup "Reachability tests" [P.allTests]
|