1

Regenerate nvim config

This commit is contained in:
2024-06-02 03:29:20 +02:00
parent 75eea0c030
commit ef2e28883d
5576 changed files with 604886 additions and 503 deletions

View File

@ -0,0 +1,3 @@
abstract public @interface Foo {
abstract public String Bar();
}

View File

@ -0,0 +1,8 @@
@ContextConfiguration(
classes = {
WireMockConfig.class,
}
)
public class Foo {
}

View File

@ -0,0 +1,3 @@
@Nothing
public class Testo {
}

View File

@ -0,0 +1,6 @@
public class Testo {
public Testo(
String a
) {
}
}

View File

@ -0,0 +1,4 @@
public enum Foo {
THING_A,
THING_C;
}

View File

@ -0,0 +1,3 @@
@Nothing
public enum Testo {
}

View File

@ -0,0 +1,2 @@
public interface Foo {
}

View File

@ -0,0 +1,6 @@
// https://github.com/nvim-treesitter/nvim-treesitter/issues/2571
class Testo {
void foo() {
System.out.println("foo");
}
}

View File

@ -0,0 +1,6 @@
// https://github.com/nvim-treesitter/nvim-treesitter/issues/2583
public class Testo {
void foo() {
new StringBuilder().append("a",
}
}

View File

@ -0,0 +1,5 @@
public class Foo {
/**
*/
void foo() {}
}

View File

@ -0,0 +1,2 @@
public class Method {
}

View File

@ -0,0 +1,6 @@
public class Foo {
void foo() {
new StringBuilder()
.append("a")
}
}

View File

@ -0,0 +1,6 @@
public class Testo {
void hello(
String a
) {
}
}