Minor: uncomment code fragments in ic tests which already should work

Original commit: ba180f915a
This commit is contained in:
Zalim Bashorov
2015-11-18 21:08:07 +03:00
parent 43b6a9dbbc
commit 5d8730f912
10 changed files with 20 additions and 30 deletions
@@ -4,9 +4,8 @@ package test
fun commonFun1() {}
// TODO uncomment when generated value will also be private in bytecode
//private val deletedVal1: Int = 20
private val deletedVal1: Int = 20
private fun deletedFun1(): Int = 10
private fun changedFun1(arg: Int) {}
private fun changedFun1(arg: Int) {}
@@ -4,9 +4,8 @@ package test
fun commonFun1() {}
// TODO uncomment when generated value will also be private in bytecode
//private val addedVal1: Int = 20
private val addedVal1: Int = 20
private fun addedFun1(): Int = 50
private fun changedFun1(arg: String) {}
private fun changedFun1(arg: String) {}
@@ -6,9 +6,8 @@ fun commonFun2() {}
fun publicDeletedFun2() {}
// TODO uncomment when generated value will also be private in bytecode
//private val deletedVal2: Int = 20
private val deletedVal2: Int = 20
private fun deletedFun2(): Int = 10
private fun changedFun2(arg: Int) {}
private fun changedFun2(arg: Int) {}
@@ -6,9 +6,8 @@ fun commonFun2() {}
fun publicAddedFun2() {}
// TODO uncomment when generated value will also be private in bytecode
//private val addedVal2: Int = 20
private val addedVal2: Int = 20
private fun addedFun2(): Int = 50
private fun changedFun2(arg: String) {}
private fun changedFun2(arg: String) {}
@@ -4,9 +4,8 @@ package test
fun commonFun1() {}
// TODO uncomment when generated value will also be private in bytecode
//private val deletedVal1: Int = 20
private val deletedVal1: Int = 20
private fun deletedFun1(): Int = 10
private fun changedFun1(arg: Int) {}
private fun changedFun1(arg: Int) {}
@@ -4,9 +4,8 @@ package test
fun commonFun1() {}
// TODO uncomment when generated value will also be private in bytecode
//private val addedVal1: Int = 20
private val addedVal1: Int = 20
private fun addedFun1(): Int = 50
private fun changedFun1(arg: String) {}
private fun changedFun1(arg: String) {}
@@ -4,9 +4,8 @@ package test
fun commonFun2() {}
// TODO uncomment when generated value will also be private in bytecode
//private val deletedVal2: Int = 20
private val deletedVal2: Int = 20
private fun deletedFun2(): Int = 10
private fun changedFun2(arg: Int) {}
private fun changedFun2(arg: Int) {}
@@ -4,9 +4,8 @@ package test
fun commonFun2() {}
// TODO uncomment when generated value will also be private in bytecode
//private val addedVal2: Int = 20
private val addedVal2: Int = 20
private fun addedFun2(): Int = 50
private fun changedFun2(arg: String) {}
private fun changedFun2(arg: String) {}
@@ -2,9 +2,8 @@ package test
fun commonFun() {}
// TODO uncomment when generated value will also be private in bytecode
//private val deletedVal: Int = 20
private val deletedVal: Int = 20
private fun deletedFun(): Int = 10
private fun changedFun(arg: Int) {}
private fun changedFun(arg: Int) {}
@@ -2,9 +2,8 @@ package test
fun commonFun() {}
// TODO uncomment when generated value will also be private in bytecode
//private val addedVal: Int = 20
private val addedVal: Int = 20
private fun addedFun(): Int = 50
private fun changedFun(arg: String) {}
private fun changedFun(arg: String) {}