Skip to content

Commit 5461ef7

Browse files
committed
Reformat.
1 parent 9d9f644 commit 5461ef7

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

semantic-analysis/src/Analysis/Syntax.hs

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -77,18 +77,18 @@ infixl 1 :>>
7777

7878
subterms :: Term -> Set.Set Term
7979
subterms t = Set.singleton t <> case t of
80-
Var _ -> mempty
81-
Noop -> mempty
82-
Iff c t e -> subterms c <> subterms t <> subterms e
83-
Bool _ -> mempty
84-
String _ -> mempty
85-
Throw t -> subterms t
86-
Let _ v b -> subterms v <> subterms b
87-
a :>> b -> subterms a <> subterms b
88-
Import _ -> mempty
80+
Var _ -> mempty
81+
Noop -> mempty
82+
Iff c t e -> subterms c <> subterms t <> subterms e
83+
Bool _ -> mempty
84+
String _ -> mempty
85+
Throw t -> subterms t
86+
Let _ v b -> subterms v <> subterms b
87+
a :>> b -> subterms a <> subterms b
88+
Import _ -> mempty
8989
Function _ _ b -> subterms b
90-
Call f as -> subterms f <> foldMap subterms as
91-
Locate _ b -> subterms b
90+
Call f as -> subterms f <> foldMap subterms as
91+
Locate _ b -> subterms b
9292

9393

9494
-- Abstract interpretation

0 commit comments

Comments
 (0)