Additional fix for IDEABKL-4743 Automatic placement of ";" characters

-- added test case for typing in block comment
This commit is contained in:
Petr Kudriavtsev
2018-01-15 16:57:47 +03:00
parent e0dd292c00
commit 51044549a7
3 changed files with 14 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
class Foo {
void foo() {
/*some block comment foo(;<caret>)*/
}
}

View File

@@ -0,0 +1,5 @@
class Foo {
void foo() {
/*some block comment foo(<caret>)*/
}
}

View File

@@ -128,6 +128,10 @@ public class JavaTypingTest extends LightPlatformCodeInsightFixtureTestCase {
doMultiTypeTest(';');
}
public void testSemicolonBeforeRightParenInBlockComment() {
doTest(';');
}
public void testCommaAfterDefaultAnnotationArgumentWhenArrayIsExpected() {
doTest(',');
}