Skip to content

Commit

Permalink
first shot at a fix for #351 (#352)
Browse files Browse the repository at this point in the history
  • Loading branch information
ivoysey committed Jul 21, 2021
1 parent 59a95ff commit caa951f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/scala/edu/cmu/cs/obsidian/codegen/yulAST.scala
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,8 @@ case class YulObject(name: String, code: Code, subobjects: Seq[YulObject], data:
replaceAll(">", ">").
replaceAll("
", "\n").
replaceAll("=", "=").
replaceAll(""", "\"")
replaceAll(""", "\"").
replaceAll("
", "\r")
}

// ObjScope and FuncScope are designed to facilitate mustache templates, with the following rules
Expand Down

0 comments on commit caa951f

Please sign in to comment.