summaryrefslogtreecommitdiff
path: root/src/GF/Devel
diff options
context:
space:
mode:
authoraarne <aarne@cs.chalmers.se>2007-10-16 17:38:57 +0000
committeraarne <aarne@cs.chalmers.se>2007-10-16 17:38:57 +0000
commitcec3d7d603a9e810c3b7f1287f7328ec39cff98d (patch)
tree5bbe992775ad6bd4ad78a6e2fc6c9c99c462ff77 /src/GF/Devel
parent869da61a5b965f4a6db9d54706ce333a902298d4 (diff)
found and temporarily solved the bug in LangGer gfcc generation
Diffstat (limited to 'src/GF/Devel')
-rw-r--r--src/GF/Devel/GrammarToGFCC.hs32
1 files changed, 16 insertions, 16 deletions
diff --git a/src/GF/Devel/GrammarToGFCC.hs b/src/GF/Devel/GrammarToGFCC.hs
index 79c45f337..213f5d304 100644
--- a/src/GF/Devel/GrammarToGFCC.hs
+++ b/src/GF/Devel/GrammarToGFCC.hs
@@ -177,16 +177,20 @@ reorder abs cg = M.MGrammar $
finfo <- tree2list (M.jments mo)]
predefADefs =
[(IC c, AbsCat (Yes []) Nope) | c <- ["Float","Int","String"]]
- aflags = nubFlags $ concat [M.flags mo | (_,mo) <- M.allModMod cg, M.isModAbs mo]
+ aflags = nubFlags $
+ concat [M.flags mo | (_,mo) <- M.allModMod cg, M.isModAbs mo]
cncs = sortIds [(lang, concr lang) | lang <- M.allConcretes cg abs]
- concr la = (nubFlags (concat flags), sortIds (predefCDefs ++ concat jments)) where
- (flags,jments) = unzip $ cdata la
- cdata la = [(M.flags mo, tree2list (M.jments mo)) |
- (i,mo) <- mos, M.isModCnc mo, elem i (M.allExtends cg la)]
- predefCDefs =
- [(IC c, CncCat (Yes GM.defLinType) Nope Nope) | ---- lindef,printname
- c <- ["Float","Int","String"]]
+ concr la = (nubFlags flags,
+ sortIds (predefCDefs ++ jments)) where
+ jments = Look.allOrigInfos cg la
+ flags = concat [M.flags mo |
+ (i,mo) <- mos, M.isModCnc mo,
+ Just r <- [lookup i (M.allExtendSpecs cg la)]]
+
+ predefCDefs = [(IC c, CncCat (Yes GM.defLinType) Nope Nope) |
+ ---- lindef,printname
+ c <- ["Float","Int","String"]]
sortIds = sortBy (\ (f,_) (g,_) -> compare f g)
nubFlags = nubBy (\ (Opt (f,_)) (Opt (g,_)) -> f == g)
@@ -301,7 +305,9 @@ paramValues cgr = (labels,untyps,typs) where
Map.fromList $ concatMap Map.toList [typ | (_,typ) <- Map.toList typs]
lincats =
[(IC cat,[(LIdent "s",GM.typeStr)]) | cat <- ["Int", "Float", "String"]] ++
- [(cat,(unlockTyp ls)) | (_,(cat,CncCat (Yes (RecType ls)) _ _)) <- jments]
+ reverse ---- TODO: really those lincats that are reached
+ ---- reverse is enough to expel overshadowed ones...
+ [(cat,(unlockTyp ls)) | (_,(cat,CncCat (Yes (RecType ls)) _ _)) <- jments]
labels = Map.fromList $ concat
[((cat,[lab]),(typ,i)):
[((cat,[lab,lab2]),(ty,j)) |
@@ -400,13 +406,7 @@ term2term cgr env@(labels,untyps,typs) tr = case tr of
valNum tr = maybe (tryPerm tr) EInt $ Map.lookup tr untyps
where
- tryPerm tr = case tr of
-{- obsolete ----
- R rs -> case Map.lookup (R rs) untyps of
- Just v -> EInt v
- _ -> valNumFV $ tryVar tr
--}
- _ -> valNumFV $ tryVar tr
+ tryPerm tr = valNumFV $ tryVar tr
tryVar tr = case GM.appForm tr of
(c@(QC _ _), ts) -> [GM.mkApp c ts' | ts' <- combinations (map tryVar ts)]
(FV ts,_) -> ts