forked from GitHub/gf-core
overload syntax; type printing in CheckGrammar
This commit is contained in:
@@ -189,7 +189,9 @@ checkResInfo gr mo (c,info) = do
|
|||||||
ResOverload tysts -> chIn "overloading" $ do
|
ResOverload tysts -> chIn "overloading" $ do
|
||||||
tysts' <- mapM (uncurry $ flip check) tysts
|
tysts' <- mapM (uncurry $ flip check) tysts
|
||||||
---- TODO: check uniqueness of arg type lists
|
---- TODO: check uniqueness of arg type lists
|
||||||
return (c,ResOverload [(y,x) | (x,y) <- tysts'])
|
let tysts2 = [(y,x) | (x,y) <- tysts']
|
||||||
|
checkUniq $ sort [map snd xs | (x,_) <- tysts2, Ok (xs,_) <- [typeFormCnc x]]
|
||||||
|
return (c,ResOverload tysts2)
|
||||||
|
|
||||||
ResParam (Yes (pcs,_)) -> chIn "parameter type" $ do
|
ResParam (Yes (pcs,_)) -> chIn "parameter type" $ do
|
||||||
---- mapM ((mapM (computeLType gr . snd)) . snd) pcs
|
---- mapM ((mapM (computeLType gr . snd)) . snd) pcs
|
||||||
@@ -204,6 +206,12 @@ checkResInfo gr mo (c,info) = do
|
|||||||
chIn cat = checkIn ("Happened in" +++ cat +++ prt c +++ ":")
|
chIn cat = checkIn ("Happened in" +++ cat +++ prt c +++ ":")
|
||||||
comp = computeLType gr
|
comp = computeLType gr
|
||||||
|
|
||||||
|
checkUniq xss = case xss of
|
||||||
|
x:y:xs
|
||||||
|
| x == y -> raise $ "ambiguous for argument list" +++
|
||||||
|
unwords (map prtType x)
|
||||||
|
| otherwise -> checkUniq $ y:xs
|
||||||
|
_ -> return ()
|
||||||
|
|
||||||
|
|
||||||
checkCncInfo :: SourceGrammar -> Ident -> (Ident,SourceAbs) ->
|
checkCncInfo :: SourceGrammar -> Ident -> (Ident,SourceAbs) ->
|
||||||
@@ -397,7 +405,8 @@ inferLType gr trm = case trm of
|
|||||||
then return val
|
then return val
|
||||||
else substituteLType [(z,a')] val
|
else substituteLType [(z,a')] val
|
||||||
return (App f' a',ty)
|
return (App f' a',ty)
|
||||||
_ -> prtFail ("function type expected for"+++ prt f +++"instead of") fty
|
_ -> raise ("function type expected for"+++
|
||||||
|
prt f +++"instead of" +++ prtType fty)
|
||||||
|
|
||||||
S f x -> do
|
S f x -> do
|
||||||
(f', fty) <- infer f
|
(f', fty) <- infer f
|
||||||
@@ -573,9 +582,9 @@ inferLType gr trm = case trm of
|
|||||||
let (tts,tys) = unzip ttys
|
let (tts,tys) = unzip ttys
|
||||||
case lookupOverloadInstance tys typs of
|
case lookupOverloadInstance tys typs of
|
||||||
Just (val,fun) -> return (mkApp fun tts, val)
|
Just (val,fun) -> return (mkApp fun tts, val)
|
||||||
_ -> fail $ "no overload instance of" +++ prt f +++
|
_ -> raise $ "no overload instance of" +++ prt f +++
|
||||||
"for" +++ unwords (map prt_ tys) +++ "among" ++++
|
"for" +++ unwords (map prtType tys) +++ "among" ++++
|
||||||
unlines [unwords (map prt_ ty) | (ty,_) <- typs]
|
unlines [unwords (map prtType ty) | (ty,_) <- typs]
|
||||||
++++ "DEBUG" +++ unwords (map show tys) +++ ";" ++++
|
++++ "DEBUG" +++ unwords (map show tys) +++ ";" ++++
|
||||||
unlines (map (show . fst) typs) ----
|
unlines (map (show . fst) typs) ----
|
||||||
|
|
||||||
@@ -599,7 +608,7 @@ checkLType env trm typ0 = do
|
|||||||
check c b'
|
check c b'
|
||||||
checkReset
|
checkReset
|
||||||
return $ (Abs x c', Prod x a b')
|
return $ (Abs x c', Prod x a b')
|
||||||
_ -> prtFail "product expected instead of" typ
|
_ -> raise $ "product expected instead of" +++ prtType typ
|
||||||
|
|
||||||
T _ [] ->
|
T _ [] ->
|
||||||
prtFail "found empty table in type" typ
|
prtFail "found empty table in type" typ
|
||||||
@@ -617,7 +626,7 @@ checkLType env trm typ0 = do
|
|||||||
_ -> return () -- happens with variable types
|
_ -> return () -- happens with variable types
|
||||||
cs' <- mapM (checkCase arg val) cs
|
cs' <- mapM (checkCase arg val) cs
|
||||||
return (T (TTyped arg) cs', typ)
|
return (T (TTyped arg) cs', typ)
|
||||||
_ -> prtFail "table type expected for table instead of" typ
|
_ -> raise $ "table type expected for table instead of" +++ prtType typ
|
||||||
|
|
||||||
R r -> case typ of --- why needed? because inference may be too difficult
|
R r -> case typ of --- why needed? because inference may be too difficult
|
||||||
RecType rr -> do
|
RecType rr -> do
|
||||||
@@ -672,7 +681,8 @@ checkLType env trm typ0 = do
|
|||||||
(arg',val) <- check arg p
|
(arg',val) <- check arg p
|
||||||
checkEq typ t trm
|
checkEq typ t trm
|
||||||
return (S tab' arg', t)
|
return (S tab' arg', t)
|
||||||
_ -> prtFail "table type expected for applied table instead of" ty'
|
_ -> raise $ "table type expected for applied table instead of" +++
|
||||||
|
prtType ty'
|
||||||
, do
|
, do
|
||||||
(arg',ty) <- infer arg
|
(arg',ty) <- infer arg
|
||||||
ty' <- comp ty
|
ty' <- comp ty
|
||||||
@@ -812,7 +822,8 @@ checkEqLType env t u trm = do
|
|||||||
checkWarn $ "WARNING: missing lock field" +++ unwords (map prt lo)
|
checkWarn $ "WARNING: missing lock field" +++ unwords (map prt lo)
|
||||||
return t'
|
return t'
|
||||||
Bad s -> raise (s +++ "type of" +++ prt trm +++
|
Bad s -> raise (s +++ "type of" +++ prt trm +++
|
||||||
": expected" ++++ prt t' ++++ "inferred" ++++ prt u' ++++ show u')
|
": expected" ++++ prtType t' ++++
|
||||||
|
"inferred" ++++ prtType u' ++++ show u')
|
||||||
where
|
where
|
||||||
|
|
||||||
-- t is a subtype of u
|
-- t is a subtype of u
|
||||||
@@ -873,6 +884,15 @@ checkEqLType env t u trm = do
|
|||||||
sTypes = [typeStr, typeTok, typeString]
|
sTypes = [typeStr, typeTok, typeString]
|
||||||
comp = computeLType env
|
comp = computeLType env
|
||||||
|
|
||||||
|
-- printing a type with a lock field lock_C as C
|
||||||
|
prtType :: Type -> String
|
||||||
|
prtType ty = case ty of
|
||||||
|
RecType fs -> case filter isLockLabel $ map fst fs of
|
||||||
|
[lock] -> drop 5 $ prt lock
|
||||||
|
_ -> prt ty
|
||||||
|
Prod x a b -> prtType a +++ "->" +++ prtType b
|
||||||
|
_ -> prt ty
|
||||||
|
|
||||||
-- | linearization types and defaults
|
-- | linearization types and defaults
|
||||||
linTypeOfType :: SourceGrammar -> Ident -> Type -> Check (Context,Type)
|
linTypeOfType :: SourceGrammar -> Ident -> Type -> Check (Context,Type)
|
||||||
linTypeOfType cnc m typ = do
|
linTypeOfType cnc m typ = do
|
||||||
|
|||||||
@@ -96,7 +96,8 @@ trAnyDef (i,info) = let i' = tri i in case info of
|
|||||||
|
|
||||||
ResOverload tysts ->
|
ResOverload tysts ->
|
||||||
[P.DefOper [P.DDef [mkName i'] (
|
[P.DefOper [P.DDef [mkName i'] (
|
||||||
P.ERecord [P.LDFull [i'] (trt ty) (trt fu) | (ty,fu) <- tysts])]]
|
P.EApp (P.EIdent $ identC "overload")
|
||||||
|
(P.ERecord [P.LDFull [i'] (trt ty) (trt fu) | (ty,fu) <- tysts]))]]
|
||||||
|
|
||||||
CncCat (Yes ty) Nope _ ->
|
CncCat (Yes ty) Nope _ ->
|
||||||
[P.DefLincat [P.PrintDef [mkName i'] (trt ty)]]
|
[P.DefLincat [P.PrintDef [mkName i'] (trt ty)]]
|
||||||
|
|||||||
@@ -299,7 +299,7 @@ transResDef x = case x of
|
|||||||
(p,pars) <- pardefs', (f,co) <- pars]
|
(p,pars) <- pardefs', (f,co) <- pars]
|
||||||
DefOper defs -> do
|
DefOper defs -> do
|
||||||
defs' <- liftM concat $ mapM getDefs defs
|
defs' <- liftM concat $ mapM getDefs defs
|
||||||
returnl [mkOverload (f, G.ResOper pt pe) | (f,(pt,pe)) <- defs']
|
returnl $ concatMap mkOverload [(f, G.ResOper pt pe) | (f,(pt,pe)) <- defs']
|
||||||
|
|
||||||
DefLintype defs -> do
|
DefLintype defs -> do
|
||||||
defs' <- liftM concat $ mapM getDefs defs
|
defs' <- liftM concat $ mapM getDefs defs
|
||||||
@@ -309,10 +309,17 @@ transResDef x = case x of
|
|||||||
_ -> Bad $ "illegal definition form in resource" +++ printTree x
|
_ -> Bad $ "illegal definition form in resource" +++ printTree x
|
||||||
where
|
where
|
||||||
mkOverload (c,j) = case j of
|
mkOverload (c,j) = case j of
|
||||||
G.ResOper Nope (Yes (G.R fs@(_:_:_))) | isOverloading c fs ->
|
G.ResOper _ (Yes (G.App keyw (G.R fs@(_:_:_)))) |
|
||||||
(c,G.ResOverload [(ty,fu) | (_,(Just ty,fu)) <- fs])
|
isOverloading keyw c fs ->
|
||||||
_ -> (c,j)
|
[(c,G.ResOverload [(ty,fu) | (_,(Just ty,fu)) <- fs])]
|
||||||
isOverloading c fs = all (== GP.prt c) (map (GP.prt . fst) fs)
|
|
||||||
|
-- to enable separare type signature --- not type-checked
|
||||||
|
G.ResOper (Yes (G.App keyw (G.RecType fs@(_:_:_)))) _ |
|
||||||
|
isOverloading keyw c fs -> []
|
||||||
|
_ -> [(c,j)]
|
||||||
|
isOverloading keyw c fs =
|
||||||
|
GP.prt keyw == "overload" && -- overload is a "soft keyword"
|
||||||
|
all (== GP.prt c) (map (GP.prt . fst) fs)
|
||||||
|
|
||||||
transParDef :: ParDef -> Err (Ident, [G.Param])
|
transParDef :: ParDef -> Err (Ident, [G.Param])
|
||||||
transParDef x = case x of
|
transParDef x = case x of
|
||||||
|
|||||||
Reference in New Issue
Block a user