mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-06 11:50:54 +07:00
Additional fix for IDEABKL-4743 Automatic placement of ";" characters
-- added test case for typing in block comment
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
class Foo {
|
||||
void foo() {
|
||||
/*some block comment foo(;<caret>)*/
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
class Foo {
|
||||
void foo() {
|
||||
/*some block comment foo(<caret>)*/
|
||||
}
|
||||
}
|
||||
@@ -128,6 +128,10 @@ public class JavaTypingTest extends LightPlatformCodeInsightFixtureTestCase {
|
||||
doMultiTypeTest(';');
|
||||
}
|
||||
|
||||
public void testSemicolonBeforeRightParenInBlockComment() {
|
||||
doTest(';');
|
||||
}
|
||||
|
||||
public void testCommaAfterDefaultAnnotationArgumentWhenArrayIsExpected() {
|
||||
doTest(',');
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user