Merge branch 'th/userdiff-more-java'
The userdiff pattern for "java" language has been updated. * th/userdiff-more-java: userdiff: improve java hunk header regexmaint
commit
a896086851
|
@ -3,6 +3,10 @@ public class Beer
|
||||||
int special;
|
int special;
|
||||||
public static void main(String RIGHT[])
|
public static void main(String RIGHT[])
|
||||||
{
|
{
|
||||||
|
someMethodCall();
|
||||||
|
someOtherMethod("17")
|
||||||
|
.doThat();
|
||||||
|
// Whatever
|
||||||
System.out.print("ChangeMe");
|
System.out.print("ChangeMe");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,6 @@
|
||||||
|
private enum RIGHT {
|
||||||
|
ONE,
|
||||||
|
TWO,
|
||||||
|
THREE,
|
||||||
|
ChangeMe
|
||||||
|
}
|
|
@ -0,0 +1,9 @@
|
||||||
|
class MyExample {
|
||||||
|
public <T extends Bar & Foo<T>, R> Map<T, R[]> foo(String[] RIGHT) {
|
||||||
|
someMethodCall();
|
||||||
|
someOtherMethod()
|
||||||
|
.doThat();
|
||||||
|
// Whatever...
|
||||||
|
return (List<T>) Arrays.asList("ChangeMe");
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,9 @@
|
||||||
|
class MyExample {
|
||||||
|
public List<? extends Comparable> foo(String[] RIGHT) {
|
||||||
|
someMethodCall();
|
||||||
|
someOtherMethod()
|
||||||
|
.doThat();
|
||||||
|
// Whatever...
|
||||||
|
return Arrays.asList("ChangeMe");
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,6 @@
|
||||||
|
class MyExample {
|
||||||
|
private static class RIGHT {
|
||||||
|
// change an inner class field
|
||||||
|
String inner = "ChangeMe";
|
||||||
|
}
|
||||||
|
}
|
|
@ -152,7 +152,11 @@ PATTERNS("html",
|
||||||
"[^<>= \t]+"),
|
"[^<>= \t]+"),
|
||||||
PATTERNS("java",
|
PATTERNS("java",
|
||||||
"!^[ \t]*(catch|do|for|if|instanceof|new|return|switch|throw|while)\n"
|
"!^[ \t]*(catch|do|for|if|instanceof|new|return|switch|throw|while)\n"
|
||||||
"^[ \t]*(([A-Za-z_][A-Za-z_0-9]*[ \t]+)+[A-Za-z_][A-Za-z_0-9]*[ \t]*\\([^;]*)$",
|
/* Class, enum, and interface declarations */
|
||||||
|
"^[ \t]*(([a-z]+[ \t]+)*(class|enum|interface)[ \t]+[A-Za-z][A-Za-z0-9_$]*[ \t]+.*)$\n"
|
||||||
|
/* Method definitions; note that constructor signatures are not */
|
||||||
|
/* matched because they are indistinguishable from method calls. */
|
||||||
|
"^[ \t]*(([A-Za-z_<>&][][?&<>.,A-Za-z_0-9]*[ \t]+)+[A-Za-z_][A-Za-z_0-9]*[ \t]*\\([^;]*)$",
|
||||||
/* -- */
|
/* -- */
|
||||||
"[a-zA-Z_][a-zA-Z0-9_]*"
|
"[a-zA-Z_][a-zA-Z0-9_]*"
|
||||||
"|[-+0-9.e]+[fFlL]?|0[xXbB]?[0-9a-fA-F]+[lL]?"
|
"|[-+0-9.e]+[fFlL]?|0[xXbB]?[0-9a-fA-F]+[lL]?"
|
||||||
|
|
Loading…
Reference in New Issue