summaryrefslogtreecommitdiff
path: root/src-3.0/GF/Parsing/FCFG/PInfo.hs
diff options
context:
space:
mode:
authorkrasimir <krasimir@chalmers.se>2008-05-29 11:43:28 +0000
committerkrasimir <krasimir@chalmers.se>2008-05-29 11:43:28 +0000
commit363ddd7b916a48f86f1520350097f83175a0debf (patch)
tree55c3dbc6cb3d80e8e0d4d72c93e988d937607678 /src-3.0/GF/Parsing/FCFG/PInfo.hs
parent4d1809ef2d824eb6e80fc1bf1d0f5e0aaf23ec16 (diff)
simplify FSymbol type
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]