Rename test data directories

This commit is contained in:
Alexey Sedunov
2014-03-20 17:50:49 +04:00
parent 6524adee0f
commit 6ddcd51af2
257 changed files with 26 additions and 32 deletions
@@ -0,0 +1,9 @@
package a
private class Foo {
}
private fun foo(value: Foo) {
}
@@ -0,0 +1,7 @@
package a
private var test: String
get() = ""
set(value: String) {
foo(Foo())
}
@@ -0,0 +1,8 @@
package a;
class J {
void bar() {
APackage.setTest("");
System.out.println(APackage.getTest());
}
}
@@ -0,0 +1,6 @@
package a
fun bar() {
test = ""
println(test)
}
@@ -0,0 +1,9 @@
package a
private class Foo {
}
private fun foo(value: Foo) {
}
@@ -0,0 +1,7 @@
package a
private var <caret>test: String
get() = ""
set(value: String) {
foo(Foo())
}
@@ -0,0 +1,8 @@
package a;
class J {
void bar() {
APackage.setTest("");
System.out.println(APackage.getTest());
}
}
@@ -0,0 +1,6 @@
package a
fun bar() {
test = ""
println(test)
}
@@ -0,0 +1,4 @@
Package-private property a.test will no longer be accessible from function a.bar
Package-private property a.test will no longer be accessible from method J.bar()
Property a.test uses package-private class a.Foo
Property a.test uses package-private function a.foo
@@ -0,0 +1,5 @@
{
"mainFile": "a/main.kt",
"type": "MOVE_KOTLIN_TOP_LEVEL_DECLARATIONS",
"targetPackage": "b"
}