diff options
author | Jaydeep P Das <jaydeepjd.8914@gmail.com> | 2022-03-12 10:18:32 +0530 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2022-03-12 18:15:47 -0800 |
commit | 09188ed930bcb08e56d1846fbf9f5cb972a2d188 (patch) | |
tree | b4fec1636c1447a69ad3527ffb3edb456802ce7b /t/t4018/kotlin-nested-fun | |
parent | 715d08a9e51251ad8290b181b6ac3b9e1f9719d7 (diff) |
userdiff: add builtin diff driver for kotlin language.
The xfuncname pattern finds func/class declarations
in diffs to display as a hunk header. The word_regex
pattern finds individual tokens in Kotlin code to generate
appropriate diffs.
This patch adds xfuncname regex and word_regex for Kotlin
language.
Signed-off-by: Jaydeep P Das <jaydeepjd.8914@gmail.com>
Acked-by: Johannes Sixt <j6t@kdbg.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t4018/kotlin-nested-fun')
-rw-r--r-- | t/t4018/kotlin-nested-fun | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/t/t4018/kotlin-nested-fun b/t/t4018/kotlin-nested-fun new file mode 100644 index 0000000000..12186858cb --- /dev/null +++ b/t/t4018/kotlin-nested-fun @@ -0,0 +1,9 @@ +class LEFT{ + class CENTER{ + fun RIGHT( a:Int){ + //comment + //comment + ChangeMe + } + } +} |