summaryrefslogtreecommitdiff
path: root/src-3.0/GF/Parsing/FCFG/PInfo.hs
diff options
context:
space:
mode:
Diffstat (limited to 'src-3.0/GF/Parsing/FCFG/PInfo.hs')
-rw-r--r--src-3.0/GF/Parsing/FCFG/PInfo.hs24
1 files changed, 10 insertions, 14 deletions
diff --git a/src-3.0/GF/Parsing/FCFG/PInfo.hs b/src-3.0/GF/Parsing/FCFG/PInfo.hs
index 08d40df85..2d6385feb 100644
--- a/src-3.0/GF/Parsing/FCFG/PInfo.hs
+++ b/src-3.0/GF/Parsing/FCFG/PInfo.hs
@@ -55,19 +55,19 @@ data FCFPInfo
}
-getLeftCornerTok lins
+getLeftCornerTok (FRule _ _ _ _ lins)
| inRange (bounds syms) 0 = case syms ! 0 of
- FSymTok tok -> Just tok
- _ -> Nothing
- | otherwise = Nothing
+ FSymTok tok -> [tok]
+ _ -> []
+ | otherwise = []
where
syms = lins ! 0
-getLeftCornerCat lins
+getLeftCornerCat (FRule _ _ args _ lins)
| inRange (bounds syms) 0 = case syms ! 0 of
- FSymCat c _ _ -> Just c
- _ -> Nothing
- | otherwise = Nothing
+ FSymCat _ d -> [args !! d]
+ _ -> []
+ | otherwise = []
where
syms = lins ! 0
@@ -88,12 +88,8 @@ buildFCFPInfo (grammar,startup) = -- trace (unlines [prt (x,Set.toList set) | (x
topdownrules = accumAssoc id [(cat, ruleid) | (ruleid, FRule _ _ _ cat _) <- assocs allrules]
epsilonrules = [ ruleid | (ruleid, FRule _ _ _ _ lins) <- assocs allrules,
not (inRange (bounds (lins ! 0)) 0) ]
- leftcorncats = accumAssoc id
- [ (fromJust (getLeftCornerCat lins), ruleid) |
- (ruleid, FRule _ _ _ _ lins) <- assocs allrules, isJust (getLeftCornerCat lins) ]
- leftcorntoks = accumAssoc id
- [ (fromJust (getLeftCornerTok lins), ruleid) |
- (ruleid, FRule _ _ _ _ lins) <- assocs allrules, isJust (getLeftCornerTok lins) ]
+ leftcorncats = accumAssoc id [ (cat, ruleid) | (ruleid, rule) <- assocs allrules, cat <- getLeftCornerCat rule ]
+ leftcorntoks = accumAssoc id [ (tok, ruleid) | (ruleid, rule) <- assocs allrules, tok <- getLeftCornerTok rule ]
grammarcats = aElems topdownrules
grammartoks = nubsort [t | (FRule _ _ _ _ lins) <- grammar, lin <- elems lins, FSymTok t <- elems lin]