smart enter for try-with-resources body

This commit is contained in:
peter
2016-03-04 17:54:09 +01:00
parent 98d14dcba3
commit 9abaffbeeb
5 changed files with 52 additions and 0 deletions

View File

@@ -79,6 +79,7 @@ public class JavaSmartEnterProcessor extends SmartEnterProcessor {
fixers.add(new BlockBraceFixer());
fixers.add(new MissingIfBranchesFixer());
fixers.add(new MissingWhileBodyFixer());
fixers.add(new MissingTryBodyFixer());
fixers.add(new MissingSwitchBodyFixer());
fixers.add(new MissingCatchBodyFixer());
fixers.add(new MissingSynchronizedBodyFixer());

View File

@@ -0,0 +1,37 @@
/*
* Copyright 2000-2016 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.intellij.codeInsight.editorActions.smartEnter;
import com.intellij.openapi.editor.Document;
import com.intellij.openapi.editor.Editor;
import com.intellij.psi.*;
import com.intellij.util.IncorrectOperationException;
public class MissingTryBodyFixer implements Fixer {
@Override
public void apply(Editor editor, JavaSmartEnterProcessor processor, PsiElement psiElement) throws IncorrectOperationException {
if (!(psiElement instanceof PsiTryStatement)) return;
PsiTryStatement tryStatement = (PsiTryStatement) psiElement;
final Document doc = editor.getDocument();
PsiElement body = tryStatement.getTryBlock();
if (body != null) return;
doc.insertString(tryStatement.getTextRange().getEndOffset(), "{}");
}
}

View File

@@ -0,0 +1,5 @@
public class Foo {
{
try (Foo f = new Foo<caret>())
}
}

View File

@@ -0,0 +1,7 @@
public class Foo {
{
try (Foo f = new Foo()) {
<caret>
}
}
}

View File

@@ -105,6 +105,8 @@ public class CompleteStatementTest extends EditorActionTestCase {
public void testTry1() throws Exception { doTest(); }
public void testInsideResourceVariable() { doTest(); }
public void testBlock1() throws Exception { doTest(); }
public void testAfterFor() throws Exception { doTest(); }