mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
Support several postfix live templates on the same key
Need it for GO-4845 where same postfix sort template is expanded differently depending on the type of the element it is invoked on.
This commit is contained in:
+5
@@ -0,0 +1,5 @@
|
||||
public class Foo {
|
||||
void m(boolean x) {
|
||||
x.sameKey<caret>
|
||||
}
|
||||
}
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
public class Foo {
|
||||
void m(boolean x) {
|
||||
Boolean.toString(x);
|
||||
}
|
||||
}
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
public class Foo {
|
||||
void m(int x) {
|
||||
x.sameKey<caret>
|
||||
}
|
||||
}
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
public class Foo {
|
||||
void m(int x) {
|
||||
Integer.toString(x);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user