Unnamed repository; edit this file 'description' to name the repository.
1
2
3
4
5
6
7
8
9
10
def f(x) do
  helper(x)
# ^ @function
  x |> Mod.doThing()
#          ^ @function
  "#{String.upcase(x)}"
#            ^ @function
  is_binary(x)
# ^ @function
end