diff options
| author | Junio C Hamano <gitster@pobox.com> | 2024-04-16 14:50:28 -0700 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2024-04-16 14:50:28 -0700 |
| commit | 2d642afb0a469c0c344f23bc715ea70b6a2dcade (patch) | |
| tree | b3ed8a6b6609bc9b9366026336aa803036f7018c /t/t4018/csharp-method-modifiers | |
| parent | 625ef1c6f16a3e58a26f695ee314adbcd97b8c7b (diff) | |
| parent | ec0e3075d245afa3f3a848bd7bdc6376dea85fe0 (diff) | |
| download | git-2d642afb0a469c0c344f23bc715ea70b6a2dcade.tar.xz | |
Merge branch 'sj/userdiff-c-sharp'
The userdiff patterns for C# has been updated.
Acked-by: Johannes Sixt <j6t@kdbg.org>
cf. <c2154457-3f2f-496e-9b8b-c8ea7257027b@kdbg.org>
* sj/userdiff-c-sharp:
userdiff: better method/property matching for C#
Diffstat (limited to 't/t4018/csharp-method-modifiers')
| -rw-r--r-- | t/t4018/csharp-method-modifiers | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/t/t4018/csharp-method-modifiers b/t/t4018/csharp-method-modifiers new file mode 100644 index 0000000000..caefa8ee99 --- /dev/null +++ b/t/t4018/csharp-method-modifiers @@ -0,0 +1,13 @@ +using System.Threading.Tasks; + +class Example +{ + static internal async Task Method(int RIGHT) + { + // Filler + // Filler + + // ChangeMe + await Task.Delay(1); + } +} |
