Skip to content

Commit a037420

Browse files
authored
Merge pull request #142 from goretkin/prettify-noalias
Allow skipping `alias_gensyms` in prettify
2 parents 512fb50 + 070bdd8 commit a037420

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/utils.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -504,5 +504,5 @@ end
504504
505505
Makes generated code generaly nicer to look at.
506506
"""
507-
prettify(ex; lines = false) =
508-
ex |> (lines ? identity : striplines) |> flatten |> unresolve |> resyntax |> alias_gensyms
507+
prettify(ex; lines = false, alias = true) =
508+
ex |> (lines ? identity : striplines) |> flatten |> unresolve |> resyntax |> (alias ? alias_gensyms : identity)

0 commit comments

Comments
 (0)