mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-19 21:11:28 +07:00
smart enter for try-with-resources body
This commit is contained in:
@@ -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());
|
||||
|
||||
@@ -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(), "{}");
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
public class Foo {
|
||||
{
|
||||
try (Foo f = new Foo<caret>())
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
public class Foo {
|
||||
{
|
||||
try (Foo f = new Foo()) {
|
||||
<caret>
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -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(); }
|
||||
|
||||
Reference in New Issue
Block a user