mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
inplace introduce api: inplace introduce parameter: tests
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
class Test {
|
||||
void simpleMethod() {
|
||||
System.out.println("<caret>");
|
||||
System.out.println("");
|
||||
}
|
||||
}
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
class Test {
|
||||
void simpleMethod() {
|
||||
boolean b<caret>b;
|
||||
}
|
||||
}
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
class Test {
|
||||
void simpleMethod() {
|
||||
boolean <caret>bb;
|
||||
}
|
||||
}
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
class Test {
|
||||
void simpleMethod() {
|
||||
System.out.println(<caret>"");
|
||||
System.out.println("");
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
class Test {
|
||||
void foo() {
|
||||
System.out.println("hello");
|
||||
System.out.println("hel<caret>lo");
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
class Test {
|
||||
void foo(String hello) {
|
||||
System.out.println(hello);
|
||||
System.out.println(<caret>hello);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user