compiler: cleanup 'public', property access syntax

This commit is contained in:
Dmitry Jemerov
2016-01-07 17:57:35 +01:00
parent b72ea1ff07
commit 117a0d8b7b
488 changed files with 3147 additions and 3287 deletions
@@ -24,8 +24,8 @@ import org.jetbrains.asm4.Opcodes
import org.jetbrains.kotlin.test.ConfigurationKind
import java.util.*
public class MethodOrderTest: CodegenTestCase() {
public fun testDelegatedMethod() {
class MethodOrderTest: CodegenTestCase() {
fun testDelegatedMethod() {
doTest(
"""
interface Trait {
@@ -48,7 +48,7 @@ public class MethodOrderTest: CodegenTestCase() {
)
}
public fun testLambdaClosureOrdering() {
fun testLambdaClosureOrdering() {
doTest(
"""
class Klass {
@@ -62,7 +62,7 @@ public class MethodOrderTest: CodegenTestCase() {
)
}
public fun testAnonymousObjectClosureOrdering() {
fun testAnonymousObjectClosureOrdering() {
doTest(
"""
class Klass {
@@ -80,7 +80,7 @@ public class MethodOrderTest: CodegenTestCase() {
)
}
public fun testMemberAccessor() {
fun testMemberAccessor() {
doTest(
"""
class Outer(private val a: Int, private var b: String) {