mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-21 18:59:32 -06:00
GenIP, GenRP in Extra and any_Quant in ExtraEng
This commit is contained in:
@@ -24,6 +24,7 @@
|
||||
|
||||
module GF.Compile.Rename (
|
||||
renameSourceTerm,
|
||||
renameSourceJudgement,
|
||||
renameModule
|
||||
) where
|
||||
|
||||
@@ -50,6 +51,14 @@ renameSourceTerm g m t = do
|
||||
status <- buildStatus g m mo
|
||||
renameTerm status [] t
|
||||
|
||||
-- | this gives top-level access to renaming term input in the cj command
|
||||
renameSourceJudgement :: SourceGrammar -> Ident -> (Ident,Info) -> Check (Ident,Info)
|
||||
renameSourceJudgement g m (i,t) = do
|
||||
mo <- checkErr $ lookupModule g m
|
||||
status <- buildStatus g m mo
|
||||
t2 <- renameInfo status m i t
|
||||
return (i,t2)
|
||||
|
||||
renameModule :: [SourceModule] -> SourceModule -> Check SourceModule
|
||||
renameModule ms (name,mo) = checkIn (text "renaming module" <+> ppIdent name) $ do
|
||||
let js1 = jments mo
|
||||
|
||||
@@ -5,6 +5,7 @@ module GF.Grammar.Parser
|
||||
, pModDef
|
||||
, pModHeader
|
||||
, pExp
|
||||
, pTopDef
|
||||
) where
|
||||
|
||||
import GF.Infra.Ident
|
||||
@@ -20,6 +21,7 @@ import GF.Compile.Update (buildAnyTree)
|
||||
}
|
||||
|
||||
%name pModDef ModDef
|
||||
%name pTopDef TopDef
|
||||
%partial pModHeader ModHeader
|
||||
%name pExp Exp
|
||||
|
||||
|
||||
Reference in New Issue
Block a user