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 testingSome 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 @@ */ classUsefull comment
+//INFO: public final class Some defined in root packageUsefull 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 */ funTest function
+//INFO: public fun testFun(first: String, second: Int): Int defined in testTest function
//INFO:first - Somesecond - OtherThis method returns zero.
+//INFO: public open fun foo(): Int defined in DThis 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().fThis property returns zero.
+//INFO: public open val foo: Int defined in DThis 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() {Some documentation
+//INFO: public fun testMethod(a: Int, b: String): Unit defined in root packageSome documentation
//INFO:a - Some intb - StringSome documentation on two lines.
+//INFO: public fun testMethod(): Unit defined in root packageSome 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() {Some documentation
+//INFO: public fun testMethod(a: Int, b: String): Unit defined in root packageSome documentation
//INFO:a - Some intb - StringSome documentation.
+//INFO: public fun testMethod(): Unit defined in root packageSome 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 packageSome documentation. Bold underline code foo: bar (baz) quux 'apos'
+//INFO: public fun testMethod(): Unit defined in root packageSome documentation. Bold underline code foo: bar (baz) quux 'apos'
//INFO:
//INFO:
//INFO:
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 packageSome documentation
+//INFO: public fun testMethod(a: Int, b: String): Unit defined in root packageSome documentation
//INFO: - Parameters:
a - Some intb - 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 someKDoc foo
+//INFO: public fun foo(bar: Int): Unit defined in someKDoc foo