mirror of
https://github.com/anoma/juvix.git
synced 2025-01-07 08:08:44 +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
8 lines
117 B
Plaintext
8 lines
117 B
Plaintext
module Data.Ord;
|
|
inductive Ordering {
|
|
LT : Ordering;
|
|
EQ : Ordering;
|
|
GT : Ordering;
|
|
};
|
|
end;
|