diff options
| author | Junio C Hamano <gitster@pobox.com> | 2019-12-01 09:04:35 -0800 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2019-12-01 09:04:36 -0800 |
| commit | 376e7309e142d4cc95343faa5afd78fc5e27a135 (patch) | |
| tree | 875ef67a8a1cf895b282ae0910a6e91a493a2549 /t/t4018/elixir-module | |
| parent | 9a5d34c6dc7e0b98b02482e30d459d4198018a72 (diff) | |
| parent | a807200f67588f6e30a7b6ac4a3ad97ad176ccc7 (diff) | |
| download | git-376e7309e142d4cc95343faa5afd78fc5e27a135.tar.xz | |
Merge branch 'ln/userdiff-elixir'
The patterns to detect function boundary for Elixir language has
been added.
* ln/userdiff-elixir:
userdiff: add Elixir to supported userdiff languages
Diffstat (limited to 't/t4018/elixir-module')
| -rw-r--r-- | t/t4018/elixir-module | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/t/t4018/elixir-module b/t/t4018/elixir-module new file mode 100644 index 0000000000..91a4e7aa20 --- /dev/null +++ b/t/t4018/elixir-module @@ -0,0 +1,9 @@ +defmodule RIGHT do + @moduledoc """ + Foo bar + """ + + def ChangeMe(a) where is_map(a) do + a + end +end |
