first letter case sensitivity should match pattern start with name start even in middle matches

This commit is contained in:
peter
2013-09-02 09:25:18 +02:00
parent ec36ca85a5
commit 44011ffd99
11 changed files with 49 additions and 69 deletions
@@ -1,5 +1,5 @@
public class A {
void foo(Foo myXxxxxxxxx) {
Xxxxx<caret>
xxxxx<caret>
}
}
@@ -1,5 +1,5 @@
public class A {
void foo(Foo myXxxxxxxxx) {
Xxxxx<caret>
xxxxx<caret>
}
}
@@ -1,12 +0,0 @@
public class Foo {
Zoo foo() {
return r<caret>
}
void rMethod() {}
}
enum Zoo {
LEFT, RIGHT
}
@@ -3,6 +3,6 @@ import java.lang.String;
public class Foo {
void foo(Object vx) {
String s = "" + v<caret>
String s = "" + v<caret>z
}
}