mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 15:27:45 +07:00
IDEA-123355 Postfix template expansions .null/.notnull after 'else' fail to provide a valid Java output
allow JavaWithIfExpressionSurrounder just after else keywords
This commit is contained in:
+11
@@ -0,0 +1,11 @@
|
||||
class Test {
|
||||
boolean foo() {
|
||||
return true;
|
||||
}
|
||||
|
||||
void bar() {
|
||||
if (true) {
|
||||
}
|
||||
else <selection>foo()</selection>
|
||||
}
|
||||
}
|
||||
+11
@@ -0,0 +1,11 @@
|
||||
class Test {
|
||||
boolean foo() {
|
||||
return true;
|
||||
}
|
||||
|
||||
void bar() {
|
||||
if (true) {
|
||||
}
|
||||
else <selection>foo()</selection>
|
||||
}
|
||||
}
|
||||
+14
@@ -0,0 +1,14 @@
|
||||
class Test {
|
||||
boolean foo() {
|
||||
return true;
|
||||
}
|
||||
|
||||
void bar() {
|
||||
if (true) {
|
||||
}
|
||||
else if (foo()) {
|
||||
<caret>
|
||||
} else {
|
||||
}
|
||||
}
|
||||
}
|
||||
+13
@@ -0,0 +1,13 @@
|
||||
class Test {
|
||||
boolean foo() {
|
||||
return true;
|
||||
}
|
||||
|
||||
void bar() {
|
||||
if (true) {
|
||||
}
|
||||
else if (foo()) {
|
||||
<caret>
|
||||
}
|
||||
}
|
||||
}
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
public class Foo {
|
||||
void m(Object o) {
|
||||
if (true) {
|
||||
|
||||
}
|
||||
else o.notnull<caret>
|
||||
}
|
||||
}
|
||||
+10
@@ -0,0 +1,10 @@
|
||||
public class Foo {
|
||||
void m(Object o) {
|
||||
if (true) {
|
||||
|
||||
}
|
||||
else if (o != null) {
|
||||
<caret>
|
||||
}
|
||||
}
|
||||
}
|
||||
+10
@@ -145,6 +145,16 @@ public class JavaSurroundWithTest extends LightCodeInsightTestCase {
|
||||
TemplateManagerImpl.setTemplateTesting(getProject(), getTestRootDisposable());
|
||||
doTest(getTestName(false), new JavaWithNotSurrounder());
|
||||
}
|
||||
|
||||
public void testSurroundExpressionWithElseIf() {
|
||||
TemplateManagerImpl.setTemplateTesting(getProject(), getTestRootDisposable());
|
||||
doTest(getTestName(false), new JavaWithIfExpressionSurrounder());
|
||||
}
|
||||
|
||||
public void testSurroundExpressionWithElseIfElse() {
|
||||
TemplateManagerImpl.setTemplateTesting(getProject(), getTestRootDisposable());
|
||||
doTest(getTestName(false), new JavaWithIfElseExpressionSurrounder());
|
||||
}
|
||||
|
||||
private void doTest(@NotNull String fileName, final Surrounder surrounder) {
|
||||
configureByFile(BASE_PATH + fileName + ".java");
|
||||
|
||||
+1
-3
@@ -17,9 +17,6 @@ package com.intellij.codeInsight.template.postfix.templates;
|
||||
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
|
||||
/**
|
||||
* @author ignatov
|
||||
*/
|
||||
public class NotNullPostfixTemplateTest extends PostfixTemplateTestCase {
|
||||
@NotNull
|
||||
@Override
|
||||
@@ -29,4 +26,5 @@ public class NotNullPostfixTemplateTest extends PostfixTemplateTestCase {
|
||||
public void testPrimitive() { doTest(); }
|
||||
public void testNn() { doTest(); }
|
||||
public void testSecondStatement() { doTest(); }
|
||||
public void testElseStatement() { doTest(); }
|
||||
}
|
||||
Reference in New Issue
Block a user