CVS: sml-dist/src/compiler/Elaborator/modules sigmatch.sig, NONE, 1.1.2.1
George Kuan <[email protected]> Mon, 19 Jun 2006 21:20:51 -0700
| Newsgroups | gmane.comp.lang.sml.smlnj.commits |
|---|---|
| Message-ID | <[email protected]> |
Update of /cvsroot/smlnj/sml-dist/src/compiler/Elaborator/modules
In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv19798/Elaborator/modules
Added Files:
Tag: primop-branch-2
sigmatch.sig
Log Message:
Separated out SIGMATCH and TYPECHECK sig files in elaborate.cm group
--- NEW FILE: sigmatch.sig ---
signature SIGMATCH =
sig
structure EvalEntity : EVALENTITY
(*** these four functions are only called inside elabmod.sml ***)
val matchStr :
{sign : Modules.Signature,
str : Modules.Structure,
strExp : Modules.strExp,
evOp : EntPath.entVar option,
depth : DebIndex.depth,
entEnv : Modules.entityEnv,
rpath : InvPath.path,
statenv : StaticEnv.staticEnv,
region : SourceMap.region,
compInfo : ElabUtil.compInfo} -> {resDec : Absyn.dec,
resStr : Modules.Structure,
resExp : Modules.strExp}
val matchFct :
{sign : Modules.fctSig,
fct : Modules.Functor,
fctExp : Modules.fctExp,
depth : DebIndex.depth,
entEnv : Modules.entityEnv,
rpath : InvPath.path,
statenv : StaticEnv.staticEnv,
region : SourceMap.region,
compInfo : ElabUtil.compInfo} -> {resDec : Absyn.dec,
resFct : Modules.Functor,
resExp : Modules.fctExp}
val packStr :
{sign : Modules.Signature,
str : Modules.Structure,
strExp : Modules.strExp,
depth : DebIndex.depth,
entEnv : Modules.entityEnv,
rpath : InvPath.path,
statenv : StaticEnv.staticEnv,
region : SourceMap.region,
compInfo : ElabUtil.compInfo} -> {resDec : Absyn.dec,
resStr : Modules.Structure,
resExp : Modules.strExp}
val applyFct :
{fct : Modules.Functor,
fctExp : Modules.fctExp,
argStr : Modules.Structure,
argExp : Modules.strExp,
evOp : EntPath.entVar option,
depth : DebIndex.depth,
epc : EntPathContext.context,
statenv : StaticEnv.staticEnv,
rpath : InvPath.path,
region : SourceMap.region,
compInfo : ElabUtil.compInfo} -> {resDec : Absyn.dec,
resStr : Modules.Structure,
resExp : Modules.strExp}
val debugging : bool ref
val showsigs : bool ref
end (* signature SIGMATCH *)