Skip to content

Commit

Permalink
Support ApplyUsingTree in metap
Browse files Browse the repository at this point in the history
  • Loading branch information
tanishiking committed Sep 5, 2021
1 parent bf2f5f7 commit 5d4965f
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,11 @@ trait SyntheticPrinter extends BasePrinter with RangePrinter with SymbolInformat
out.print("[")
rep(tree.typeArguments, ", ")(pprint)
out.print("]")
case tree: ApplyUsingTree =>
pprint(tree.function)
out.print("(using")
rep(tree.arguments, ", ")(pprint)
out.print(")")
case NoTree =>
out.print("<?>")
}
Expand Down

0 comments on commit 5d4965f

Please sign in to comment.