[java-highlighting] fixes after review IDEA-216258

GitOrigin-RevId: 52b88a888751bb74e37b332c69d4ee0878ea26da
This commit is contained in:
Andrey.Cherkasov
2021-05-12 02:05:37 +03:00
committed by intellij-monorepo-bot
parent 1834b2357d
commit c7ee606c95
8 changed files with 80 additions and 19 deletions

View File

@@ -0,0 +1,4 @@
// "Move 'this' to the beginning of the list" "true"
class X {
void foo(/*1*/ /*2*/ X /*3*/ this /*4*/ /*5*/, X x) {}
}

View File

@@ -0,0 +1,4 @@
// "Move 'this' to the beginning of the list" "true"
class X {
void foo(/*1*/ /*2*/ X /*3*/ this /*4*/ /*5*/, X x, String s) {}
}

View File

@@ -0,0 +1,4 @@
// "Move 'this' to the beginning of the list" "true"
class X {
void foo(X x, /*1*/ /*2*/ X /*3*/ this<caret> /*4*/ /*5*/) {}
}

View File

@@ -0,0 +1,4 @@
// "Move 'this' to the beginning of the list" "true"
class X {
void foo(X x, /*1*/ /*2*/ X /*3*/ this<caret> /*4*/ /*5*/, String s) {}
}