mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-09 20:42:52 +07:00
missing test data
This commit is contained in:
+13
@@ -0,0 +1,13 @@
|
||||
class Example {
|
||||
void foo(int a, int b) {
|
||||
new Runnable() {
|
||||
@Override
|
||||
public void run() {
|
||||
bar(<caret>);
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
void bar(int a, int b) {
|
||||
}
|
||||
}
|
||||
+13
@@ -0,0 +1,13 @@
|
||||
class Example {
|
||||
void foo(final int a, final int b) {
|
||||
new Runnable() {
|
||||
@Override
|
||||
public void run() {
|
||||
bar(a, b);<caret>
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
void bar(int a, int b) {
|
||||
}
|
||||
}
|
||||
+9
@@ -0,0 +1,9 @@
|
||||
import java.lang.Runnable;
|
||||
import java.util.List;
|
||||
import java.util.ArrayList;
|
||||
|
||||
public class A {
|
||||
void foo(List<String> parameter) {
|
||||
new Runnable(par<caret>) {}
|
||||
}
|
||||
}
|
||||
+9
@@ -0,0 +1,9 @@
|
||||
import java.lang.Runnable;
|
||||
import java.util.List;
|
||||
import java.util.ArrayList;
|
||||
|
||||
public class A {
|
||||
void foo(List<String> parameter) {
|
||||
new Runnable(parameter<caret>) {}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user