J2K: adapted for default visibility modifier 'public'
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
class F {
|
||||
fun f1(p1: Int, p2: Int, p3: Int, p4: Int, vararg p5: Int) {
|
||||
internal class F {
|
||||
internal fun f1(p1: Int, p2: Int, p3: Int, p4: Int, vararg p5: Int) {
|
||||
}
|
||||
|
||||
fun f2(array: IntArray) {
|
||||
internal fun f2(array: IntArray) {
|
||||
f1(1, 2,
|
||||
3, 4,
|
||||
*array)
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
class F {
|
||||
internal class F {
|
||||
|
||||
fun f1() {
|
||||
internal fun f1() {
|
||||
}
|
||||
|
||||
|
||||
fun f2() {
|
||||
internal fun f2() {
|
||||
}
|
||||
|
||||
var i: Int? = 0
|
||||
internal var i: Int? = 0
|
||||
|
||||
fun f3() {
|
||||
internal fun f3() {
|
||||
}
|
||||
}
|
||||
@@ -1,10 +1,10 @@
|
||||
class F {
|
||||
internal class F {
|
||||
|
||||
//c1
|
||||
|
||||
/*c2*/
|
||||
|
||||
fun f1() {
|
||||
internal fun f1() {
|
||||
}
|
||||
|
||||
|
||||
@@ -13,12 +13,12 @@ class F {
|
||||
|
||||
//c4
|
||||
|
||||
fun f2() {
|
||||
internal fun f2() {
|
||||
}
|
||||
|
||||
var i: Int? = 0
|
||||
internal var i: Int? = 0
|
||||
|
||||
fun f3() {
|
||||
internal fun f3() {
|
||||
}
|
||||
|
||||
//c5
|
||||
|
||||
+7
-7
@@ -1,4 +1,4 @@
|
||||
class F {
|
||||
internal class F {
|
||||
|
||||
|
||||
//c3
|
||||
@@ -6,13 +6,13 @@ class F {
|
||||
|
||||
//c4
|
||||
|
||||
fun f2() {
|
||||
internal fun f2() {
|
||||
}
|
||||
|
||||
fun f3() {
|
||||
internal fun f3() {
|
||||
}
|
||||
|
||||
fun f4() {
|
||||
internal fun f4() {
|
||||
}
|
||||
|
||||
companion object {
|
||||
@@ -21,14 +21,14 @@ class F {
|
||||
|
||||
/*c2*/
|
||||
|
||||
fun f1() {
|
||||
internal fun f1() {
|
||||
}
|
||||
|
||||
var i: Int? = 0
|
||||
internal var i: Int? = 0
|
||||
|
||||
//c5
|
||||
|
||||
fun f5() {
|
||||
internal fun f5() {
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
object F {
|
||||
internal object F {
|
||||
|
||||
//c1
|
||||
|
||||
/*c2*/
|
||||
|
||||
fun f1() {
|
||||
internal fun f1() {
|
||||
}
|
||||
|
||||
|
||||
@@ -13,12 +13,12 @@ object F {
|
||||
|
||||
//c4
|
||||
|
||||
fun f2() {
|
||||
internal fun f2() {
|
||||
}
|
||||
|
||||
var i: Int? = 0
|
||||
internal var i: Int? = 0
|
||||
|
||||
fun f3() {
|
||||
internal fun f3() {
|
||||
}
|
||||
|
||||
//c5
|
||||
|
||||
Reference in New Issue
Block a user