diff options
author | Adam Chlipala <adam@chlipala.net> | 2014-02-20 15:50:33 -0500 |
---|---|---|
committer | Adam Chlipala <adam@chlipala.net> | 2014-02-20 15:50:33 -0500 |
commit | c3b5b20061b27b3533645def1a9cdea53eba2f83 (patch) | |
tree | 1a606412147d4e63047ac96534fd12868d2ae40f /src | |
parent | 023d9ecbbc2bd1fc14098e84f5b0216da12a48a0 (diff) |
Tweaked parameter renaming for functors, so now demos and the original bug-triggering application work
Diffstat (limited to 'src')
-rw-r--r-- | src/elaborate.sml | 10 | ||||
-rw-r--r-- | src/expl_rename.sml | 14 |
2 files changed, 14 insertions, 10 deletions
diff --git a/src/elaborate.sml b/src/elaborate.sml index 6d223585..5dd86f18 100644 --- a/src/elaborate.sml +++ b/src/elaborate.sml @@ -4455,16 +4455,6 @@ and elabStr (env, denv) (str, loc) = subSgn env' loc actual ran'; (ran', gs) end - - (* Later compiler phases are simplified by alpha-varying - * the functor formal argument here, if the same name - * will be defined independently in the functor body. *) - fun ensureUnused m = - case E.projectStr env' {sgn = actual, str = (L'.StrVar 0, loc), field = m} of - NONE => m - | SOME _ => ensureUnused ("?" ^ m) - - val m = ensureUnused m in ((L'.StrFun (m, n, dom', formal, str'), loc), (L'.SgnFun (m, n, dom', formal), loc), diff --git a/src/expl_rename.sml b/src/expl_rename.sml index a17e0a3b..7e7a155a 100644 --- a/src/expl_rename.sml +++ b/src/expl_rename.sml @@ -422,6 +422,20 @@ fun rename {NextId, FormalName, FormalId, Body = all as (str, loc)} = val (st, n) = St.bind (st, FormalId) val (ds, st) = ListUtil.foldlMapConcat dupDecl st ds + + (* Revenge of the functor parameter renamer! + * See comment in elaborate.sml for the start of the saga. + * We need to alpha-rename the argument to allow sufficient shadowing in the body. *) + + fun mungeName m = + if List.exists (fn (DStr (x, _, _, _), _) => x = m + | _ => false) ds then + mungeName ("?" ^ m) + else + m + + val FormalName = mungeName FormalName + val ds = (DStr (FormalName, n, (SgnConst [], loc), (StrVar FormalId, loc)), loc) :: ds in (St.next st, (StrConst ds, loc)) |