KT-7704 Intention actions on visibility modifier for quick changing it
#KT-7704 Fixed
This commit is contained in:
@@ -0,0 +1 @@
|
||||
org.jetbrains.kotlin.idea.intentions.ChangeVisibilityModifierIntention$Protected
|
||||
@@ -0,0 +1,3 @@
|
||||
abstract class C {
|
||||
<caret>abstract fun foo()
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
abstract class C {
|
||||
<caret>protected abstract fun foo()
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
// IS_APPLICABLE: false
|
||||
object O {
|
||||
<caret>public fun foo(){}
|
||||
}
|
||||
@@ -0,0 +1,2 @@
|
||||
// IS_APPLICABLE: false
|
||||
<caret>public fun String.foo(){}
|
||||
@@ -0,0 +1,3 @@
|
||||
class C {
|
||||
<caret>public fun foo(){}
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
class C {
|
||||
<caret>protected fun foo(){}
|
||||
}
|
||||
Reference in New Issue
Block a user