summaryrefslogtreecommitdiff
path: root/src/GF/Formalism/GCFG.hs
diff options
context:
space:
mode:
Diffstat (limited to 'src/GF/Formalism/GCFG.hs')
-rw-r--r--src/GF/Formalism/GCFG.hs4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/GF/Formalism/GCFG.hs b/src/GF/Formalism/GCFG.hs
index 9cf47637a..bfe90bac9 100644
--- a/src/GF/Formalism/GCFG.hs
+++ b/src/GF/Formalism/GCFG.hs
@@ -29,10 +29,6 @@ data Abstract cat name = Abs cat [cat] name
data Concrete lin term = Cnc lin [lin] term
deriving (Eq, Ord, Show)
-abstract2chart :: (Ord n, Ord e) => [Abstract e n] -> SyntaxChart n e
-abstract2chart rules = accumAssoc groupPairs $
- [ (e, (n, es)) | Abs e es n <- rules ]
-
----------------------------------------------------------------------
instance (Print c, Print n, Print l, Print t) => Print (Rule n c l t) where