diff --git a/idea/testData/editor/quickDoc/KotlinClassUsedFromJava.java b/idea/testData/editor/quickDoc/KotlinClassUsedFromJava.java index 5b506f6ff27..c01bbe787d9 100644 --- a/idea/testData/editor/quickDoc/KotlinClassUsedFromJava.java +++ b/idea/testData/editor/quickDoc/KotlinClassUsedFromJava.java @@ -6,4 +6,4 @@ class KotlinClassUsedFromJava { } } -//INFO: internal final class Test defined in testing

Some comment

+//INFO: public final class Test defined in testing

Some comment

diff --git a/idea/testData/editor/quickDoc/OnClassDeclarationWithNoPackage.kt b/idea/testData/editor/quickDoc/OnClassDeclarationWithNoPackage.kt index f264773b65c..f906b1ed483 100644 --- a/idea/testData/editor/quickDoc/OnClassDeclarationWithNoPackage.kt +++ b/idea/testData/editor/quickDoc/OnClassDeclarationWithNoPackage.kt @@ -3,4 +3,4 @@ */ class Some -//INFO: internal final class Some defined in root package

Usefull comment

+//INFO: public final class Some defined in root package

Usefull comment

diff --git a/idea/testData/editor/quickDoc/OnFunctionDeclarationWithPackage.kt b/idea/testData/editor/quickDoc/OnFunctionDeclarationWithPackage.kt index 208c243b211..ebf8ec30ffe 100644 --- a/idea/testData/editor/quickDoc/OnFunctionDeclarationWithPackage.kt +++ b/idea/testData/editor/quickDoc/OnFunctionDeclarationWithPackage.kt @@ -12,5 +12,5 @@ package test */ fun testFun(first: String, second: Int) = 12 -//INFO: internal fun testFun(first: String, second: Int): Int defined in test

Test function

+//INFO: public fun testFun(first: String, second: Int): Int defined in test

Test function

//INFO:
Parameters:
first - Some
second - Other
diff --git a/idea/testData/editor/quickDoc/OnInheritedMethodUsage.kt b/idea/testData/editor/quickDoc/OnInheritedMethodUsage.kt index d31a6aed108..29586df5d8e 100644 --- a/idea/testData/editor/quickDoc/OnInheritedMethodUsage.kt +++ b/idea/testData/editor/quickDoc/OnInheritedMethodUsage.kt @@ -14,4 +14,4 @@ fun test() { D().foo() } -//INFO: internal open fun foo(): Int defined in D

This method returns zero.

+//INFO: public open fun foo(): Int defined in D

This method returns zero.

diff --git a/idea/testData/editor/quickDoc/OnInheritedPropertyUsage.kt b/idea/testData/editor/quickDoc/OnInheritedPropertyUsage.kt index be2a1d8a669..6ebf11b717a 100644 --- a/idea/testData/editor/quickDoc/OnInheritedPropertyUsage.kt +++ b/idea/testData/editor/quickDoc/OnInheritedPropertyUsage.kt @@ -14,4 +14,4 @@ fun test() { D().foo } -//INFO: internal open val foo: Int defined in D

This property returns zero.

+//INFO: public open val foo: Int defined in D

This property returns zero.

diff --git a/idea/testData/editor/quickDoc/OnMethodUsage.kt b/idea/testData/editor/quickDoc/OnMethodUsage.kt index 786c241ba16..e6479e4de9b 100644 --- a/idea/testData/editor/quickDoc/OnMethodUsage.kt +++ b/idea/testData/editor/quickDoc/OnMethodUsage.kt @@ -12,5 +12,5 @@ fun test() { testMethod(1, "value") } -//INFO: internal fun testMethod(a: Int, b: String): Unit defined in root package

Some documentation

+//INFO: public fun testMethod(a: Int, b: String): Unit defined in root package

Some documentation

//INFO:
Parameters:
a - Some int
b - String
diff --git a/idea/testData/editor/quickDoc/OnMethodUsageMultiline.kt b/idea/testData/editor/quickDoc/OnMethodUsageMultiline.kt index 12ce680f394..f273b92e222 100644 --- a/idea/testData/editor/quickDoc/OnMethodUsageMultiline.kt +++ b/idea/testData/editor/quickDoc/OnMethodUsageMultiline.kt @@ -10,4 +10,4 @@ fun test() { testMethod() } -//INFO: internal fun testMethod(): Unit defined in root package

Some documentation on two lines.

+//INFO: public fun testMethod(): Unit defined in root package

Some documentation on two lines.

diff --git a/idea/testData/editor/quickDoc/OnMethodUsageWithBracketsInParam.kt b/idea/testData/editor/quickDoc/OnMethodUsageWithBracketsInParam.kt index b3b584e0eed..db96215889f 100644 --- a/idea/testData/editor/quickDoc/OnMethodUsageWithBracketsInParam.kt +++ b/idea/testData/editor/quickDoc/OnMethodUsageWithBracketsInParam.kt @@ -12,5 +12,5 @@ fun test() { testMethod(1, "value") } -//INFO: internal fun testMethod(a: Int, b: String): Unit defined in root package

Some documentation

+//INFO: public fun testMethod(a: Int, b: String): Unit defined in root package

Some documentation

//INFO:
Parameters:
a - Some int
b - String
diff --git a/idea/testData/editor/quickDoc/OnMethodUsageWithCodeBlock.kt b/idea/testData/editor/quickDoc/OnMethodUsageWithCodeBlock.kt index 47ad5990e6e..663b7325cc0 100644 --- a/idea/testData/editor/quickDoc/OnMethodUsageWithCodeBlock.kt +++ b/idea/testData/editor/quickDoc/OnMethodUsageWithCodeBlock.kt @@ -17,7 +17,7 @@ fun test() { testMethod(1, "value") } -//INFO: internal fun testMethod(): Unit defined in root package

Some documentation.

+//INFO: public fun testMethod(): Unit defined in root package

Some documentation.

//INFO:

 //INFO: Code block
 //INFO: Second line
diff --git a/idea/testData/editor/quickDoc/OnMethodUsageWithMarkdown.kt b/idea/testData/editor/quickDoc/OnMethodUsageWithMarkdown.kt
index c32fd5d1ebb..6c1708fa14e 100644
--- a/idea/testData/editor/quickDoc/OnMethodUsageWithMarkdown.kt
+++ b/idea/testData/editor/quickDoc/OnMethodUsageWithMarkdown.kt
@@ -18,7 +18,7 @@ fun test() {
     testMethod(1, "value")
 }
 
-//INFO: internal fun testMethod(): Unit defined in root package

Some documentation. Bold underline code foo: bar (baz) quux 'apos'

+//INFO: public fun testMethod(): Unit defined in root package

Some documentation. Bold underline code foo: bar (baz) quux 'apos'

//INFO:

Kotlin

//INFO:

C

//INFO:

See this class

diff --git a/idea/testData/editor/quickDoc/OnMethodUsageWithReturnAndThrows.kt b/idea/testData/editor/quickDoc/OnMethodUsageWithReturnAndThrows.kt index df8929d1cef..50bbd0bd200 100644 --- a/idea/testData/editor/quickDoc/OnMethodUsageWithReturnAndThrows.kt +++ b/idea/testData/editor/quickDoc/OnMethodUsageWithReturnAndThrows.kt @@ -14,7 +14,7 @@ fun test() { testMethod(1, "value") } -//INFO: internal fun testMethod(a: Int, b: String): Unit defined in root package

Some documentation

+//INFO: public fun testMethod(a: Int, b: String): Unit defined in root package

Some documentation

//INFO:
Parameters:
a - Some int
b - String
//INFO:
Returns:
Return value
//INFO:
Throws:
IllegalArgumentException - if the weather is bad
diff --git a/idea/testData/editor/quickDoc/OnMethodUsageWithSee.kt b/idea/testData/editor/quickDoc/OnMethodUsageWithSee.kt index 263cb3f9bed..0d608a1bf20 100644 --- a/idea/testData/editor/quickDoc/OnMethodUsageWithSee.kt +++ b/idea/testData/editor/quickDoc/OnMethodUsageWithSee.kt @@ -16,5 +16,5 @@ fun test() { testMethod(1, "value") } -//INFO: internal fun testMethod(): Unit defined in root package
+//INFO: public fun testMethod(): Unit defined in root package
//INFO:
See Also:
C, D
diff --git a/idea/testData/editor/quickDoc/TopLevelMethodFromJava.java b/idea/testData/editor/quickDoc/TopLevelMethodFromJava.java index 88fb621eb85..d015199b1ba 100644 --- a/idea/testData/editor/quickDoc/TopLevelMethodFromJava.java +++ b/idea/testData/editor/quickDoc/TopLevelMethodFromJava.java @@ -8,4 +8,4 @@ class Testing { } } -//INFO: internal fun foo(bar: Int): Unit defined in some

KDoc foo

+//INFO: public fun foo(bar: Int): Unit defined in some

KDoc foo