mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
move postfix templates to java-impl
This commit is contained in:
+6
@@ -0,0 +1,6 @@
|
||||
public class Foo {
|
||||
void m() {
|
||||
Byte foo = 100;
|
||||
foo.fori<caret>
|
||||
}
|
||||
}
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
public class Foo {
|
||||
void m() {
|
||||
Byte foo = 100;
|
||||
for (Byte i = 0; i < foo; i++) {
|
||||
<caret>
|
||||
}
|
||||
}
|
||||
}
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
public class Foo {
|
||||
void m() {
|
||||
Integer[] xs = {1, 2, 3};
|
||||
xs.fori<caret>
|
||||
}
|
||||
}
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
public class Foo {
|
||||
void m() {
|
||||
Integer[] xs = {1, 2, 3};
|
||||
for (int i = 0; i < xs.length; i++) {
|
||||
<caret>
|
||||
}
|
||||
}
|
||||
}
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
public class Foo {
|
||||
void m() {
|
||||
Long[] xs = {1, 2, 3};
|
||||
xs.fori<caret>
|
||||
}
|
||||
}
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
public class Foo {
|
||||
void m() {
|
||||
Long[] xs = {1, 2, 3};
|
||||
for (int i = 0; i < xs.length; i++) {
|
||||
<caret>
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
public class Foo {
|
||||
void m() {
|
||||
byte foo = 100;
|
||||
foo.fori<caret>
|
||||
}
|
||||
}
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
public class Foo {
|
||||
void m() {
|
||||
byte foo = 100;
|
||||
for (byte i = 0; i < foo; i++) {
|
||||
<caret>
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
import java.util.ArrayList;
|
||||
|
||||
public class Foo {
|
||||
void m() {
|
||||
new ArrayList().fori<caret>
|
||||
}
|
||||
}
|
||||
+9
@@ -0,0 +1,9 @@
|
||||
import java.util.ArrayList;
|
||||
|
||||
public class Foo {
|
||||
void m() {
|
||||
for (int i = 0; i < new ArrayList().size(); i++) {
|
||||
<caret>
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
public class Foo {
|
||||
void m() {
|
||||
int[] xs = {1, 2, 3};
|
||||
xs.fori<caret>
|
||||
}
|
||||
}
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
public class Foo {
|
||||
void m() {
|
||||
int[] xs = {1, 2, 3};
|
||||
for (int i = 0; i < xs.length; i++) {
|
||||
<caret>
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
public class Foo {
|
||||
void m() {
|
||||
int foo = 100;
|
||||
foo.fori<caret>
|
||||
}
|
||||
}
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
public class Foo {
|
||||
void m() {
|
||||
int foo = 100;
|
||||
for (int i = 0; i < foo; i++) {
|
||||
<caret>
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user