summaryrefslogtreecommitdiff
path: root/src/AST.hs
diff options
context:
space:
mode:
authorTom Smeding <tom@tomsmeding.com>2024-09-02 21:07:06 +0200
committerTom Smeding <tom@tomsmeding.com>2024-09-02 21:07:06 +0200
commit54198e8ab3be3b83507c448ffdad27c2491d2161 (patch)
tree8cceadd80cafc88a05be8a1335b796985dc038df /src/AST.hs
parent625c2c28d49dbdceb8864554acdfe1776d5333e0 (diff)
Code cleanup, and OverloadedLabels for LSeg
Diffstat (limited to 'src/AST.hs')
-rw-r--r--src/AST.hs22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/AST.hs b/src/AST.hs
index e33c10b..15e6d43 100644
--- a/src/AST.hs
+++ b/src/AST.hs
@@ -1,18 +1,18 @@
{-# LANGUAGE DataKinds #-}
-{-# LANGUAGE TypeOperators #-}
-{-# LANGUAGE GADTs #-}
-{-# LANGUAGE StandaloneKindSignatures #-}
-{-# LANGUAGE TypeFamilies #-}
-{-# LANGUAGE StandaloneDeriving #-}
-{-# LANGUAGE FlexibleContexts #-}
-{-# LANGUAGE RankNTypes #-}
-{-# LANGUAGE QuantifiedConstraints #-}
-{-# LANGUAGE LambdaCase #-}
-{-# LANGUAGE PolyKinds #-}
-{-# LANGUAGE DeriveFunctor #-}
{-# LANGUAGE DeriveFoldable #-}
+{-# LANGUAGE DeriveFunctor #-}
{-# LANGUAGE DeriveTraversable #-}
{-# LANGUAGE EmptyCase #-}
+{-# LANGUAGE FlexibleContexts #-}
+{-# LANGUAGE GADTs #-}
+{-# LANGUAGE LambdaCase #-}
+{-# LANGUAGE PolyKinds #-}
+{-# LANGUAGE QuantifiedConstraints #-}
+{-# LANGUAGE RankNTypes #-}
+{-# LANGUAGE StandaloneDeriving #-}
+{-# LANGUAGE StandaloneKindSignatures #-}
+{-# LANGUAGE TypeFamilies #-}
+{-# LANGUAGE TypeOperators #-}
module AST (module AST, module AST.Weaken) where
import Data.Functor.Const