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-protocol | |
parent | Merge branch 'py/shortlog-list-options-for-log' (diff) | |
parent | userdiff: add Elixir to supported userdiff languages (diff) | |
download | tgif-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-protocol')
-rw-r--r-- | t/t4018/elixir-protocol | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/t/t4018/elixir-protocol b/t/t4018/elixir-protocol new file mode 100644 index 0000000000..7d9173691e --- /dev/null +++ b/t/t4018/elixir-protocol @@ -0,0 +1,6 @@ +defprotocol RIGHT do + @doc """ + Calculates the size (and not the length!) of a data structure + """ + def size(data, ChangeMe) +end |