This commit is contained in:
Folkert 2021-07-02 20:34:11 +02:00
parent 6e3a2cd94d
commit 3c2ee9e447
4 changed files with 600 additions and 4 deletions

View file

@ -157,8 +157,8 @@ struct VarInfo {
}
type VarMap = MutMap<Symbol, VarInfo>;
type LiveVarSet = MutSet<Symbol>;
type JPLiveVarMap = MutMap<JoinPointId, LiveVarSet>;
pub type LiveVarSet = MutSet<Symbol>;
pub type JPLiveVarMap = MutMap<JoinPointId, LiveVarSet>;
#[derive(Clone, Debug)]
struct Context<'a> {