Skip to content

Commit

Permalink
finally?
Browse files Browse the repository at this point in the history
  • Loading branch information
dours committed Oct 31, 2022
1 parent 30706dc commit 0b1e6c7
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -415,7 +415,7 @@ object PrintLinearizedMutableEOWithCage {
def printModule(moduleName : String, st : Statement.T) : Text = {
HackName.count = 0
val theTest@FuncDef(_, _, _, _, _, _, _, _, _, _) =
ComputeAccessibleIdents.computeAccessibleIdents(FuncDef(moduleName, List(), None, None, None, st, Decorators(List()),
ComputeAccessibleIdents.computeAccessibleIdents(FuncDef(moduleName.substring(1), List(), None, None, None, st, Decorators(List()),
HashMap(), isAsync = false, st.ann.pos))
val fakeStackUp = List(
"[] > stackUp",
Expand All @@ -426,8 +426,8 @@ object PrintLinearizedMutableEOWithCage {
val almost =
"+package xmodules" ::
headers ++
("" :: s"[] > x$moduleName" :: hack.tail)
almost.init :+ " ((ap)).result > @"
("" :: s"[] > $moduleName" :: hack.tail)
almost.init.init :+ " (return 0)" :+ " ((ap)).result > @"
}

}

0 comments on commit 0b1e6c7

Please sign in to comment.