remove unresolved irrelevant references from completion test data

GitOrigin-RevId: b6906281d2dad6ee7f4500496d570964ecdbeccc
This commit is contained in:
Peter Gromov
2020-01-21 15:37:39 +00:00
committed by intellij-monorepo-bot
parent 8a6a967e44
commit 8e77928299
10 changed files with 15 additions and 15 deletions
@@ -1,4 +1,4 @@
public class TestCase extends Zzz {
public class TestCase {
Object ooo() {}
@@ -1,4 +1,4 @@
public class TestCase extends Zzz {
public class TestCase {
Object ooo() {}
@@ -6,6 +6,6 @@ public class TestCase extends Zzz {
if (!(ooo() instanceof String)) {
return;
}
Object s = o<caret>
Object s = oo<caret>
}
}
@@ -1,4 +1,4 @@
public class TestCase extends Zzz {
public class TestCase {
Object ooo() {}
@@ -1,10 +1,10 @@
public class TestCase extends Zzz {
public class TestCase {
Object ooo() {}
{
((String) ooo()).toString();
String s = o<caret>
String s = oo<caret>
}
}
@@ -1,4 +1,4 @@
public class TestCase extends Zzz {
public class TestCase {
Object ooo() {}
@@ -1,4 +1,4 @@
public class TestCase extends Zzz {
public class TestCase {
Object ooo() {}
@@ -6,6 +6,6 @@ public class TestCase extends Zzz {
if (!(ooo() instanceof String)) {
return;
}
String s = o<caret>
String s = oo<caret>
}
}
@@ -1,4 +1,4 @@
public class TestCase extends Zzz {
public class TestCase {
boolean foo(String s) {
}
@@ -1,11 +1,11 @@
public class TestCase extends Zzz {
public class TestCase {
boolean foo(String s) {
}
{
Object ooo;
if (ooo instanceof String && foo(o<caret>)) {
if (ooo instanceof String && foo(oo<caret>)) {
}
}
}
@@ -1,4 +1,4 @@
public class TestCase extends Zzz {
public class TestCase {
Object ooo() {}
@@ -1,11 +1,11 @@
public class TestCase extends Zzz {
public class TestCase {
Object ooo() {}
{
if (!(ooo() instanceof String)) {
} else {
String s = o<caret>
String s = oo<caret>
}
}
}