1
0
mirror of https://github.com/helix-editor/helix synced 2026-07-28 23:33:35 +02:00
Files
helix/tests/query/highlights/elixir/calls.ex
2026-06-20 14:49:53 +09:00

11 lines
164 B
Elixir

def f(x) do
helper(x)
# ^ @function
x |> Mod.doThing()
# ^ @function
"#{String.upcase(x)}"
# ^ @function
is_binary(x)
# ^ @function
end