Skip to content

Commit f161c9f

Browse files
committed
MPP: Temporary workaround so that snapshot Kotlin 1.2.30 can compile it
1 parent 72b8fe1 commit f161c9f

File tree

12 files changed

+36
-0
lines changed

12 files changed

+36
-0
lines changed

common/kotlinx-coroutines-core-common/src/main/kotlin/kotlinx/coroutines/experimental/CommonCancellableContinuation.kt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@
1414
* limitations under the License.
1515
*/
1616

17+
// :todo: Remove after transition to Kotlin 1.2.30+
18+
@file:Suppress("ACTUAL_FUNCTION_WITH_DEFAULT_ARGUMENTS")
19+
1720
package kotlinx.coroutines.experimental
1821

1922
import kotlin.coroutines.experimental.Continuation

common/kotlinx-coroutines-core-common/src/main/kotlin/kotlinx/coroutines/experimental/CommonJob.kt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@
1414
* limitations under the License.
1515
*/
1616

17+
// :todo: Remove after transition to Kotlin 1.2.30+
18+
@file:Suppress("ACTUAL_FUNCTION_WITH_DEFAULT_ARGUMENTS")
19+
1720
package kotlinx.coroutines.experimental
1821

1922
import kotlin.coroutines.experimental.CoroutineContext

core/kotlinx-coroutines-core/src/main/kotlin/kotlinx/coroutines/experimental/Builders.kt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@
1414
* limitations under the License.
1515
*/
1616

17+
// :todo: Remove after transition to Kotlin 1.2.30+
18+
@file:Suppress("ACTUAL_FUNCTION_WITH_DEFAULT_ARGUMENTS")
19+
1720
package kotlinx.coroutines.experimental
1821

1922
import kotlinx.coroutines.experimental.intrinsics.*

core/kotlinx-coroutines-core/src/main/kotlin/kotlinx/coroutines/experimental/CancellableContinuation.kt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@
1414
* limitations under the License.
1515
*/
1616

17+
// :todo: Remove after transition to Kotlin 1.2.30+
18+
@file:Suppress("ACTUAL_FUNCTION_WITH_DEFAULT_ARGUMENTS")
19+
1720
package kotlinx.coroutines.experimental
1821

1922
import kotlinx.coroutines.experimental.internal.LockFreeLinkedListNode

core/kotlinx-coroutines-core/src/main/kotlin/kotlinx/coroutines/experimental/CompletableDeferred.kt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@
1414
* limitations under the License.
1515
*/
1616

17+
// :todo: Remove after transition to Kotlin 1.2.30+
18+
@file:Suppress("ACTUAL_FUNCTION_WITH_DEFAULT_ARGUMENTS")
19+
1720
package kotlinx.coroutines.experimental
1821

1922
import kotlinx.coroutines.experimental.selects.*

core/kotlinx-coroutines-core/src/main/kotlin/kotlinx/coroutines/experimental/Deferred.kt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@
1414
* limitations under the License.
1515
*/
1616

17+
// :todo: Remove after transition to Kotlin 1.2.30+
18+
@file:Suppress("ACTUAL_FUNCTION_WITH_DEFAULT_ARGUMENTS")
19+
1720
package kotlinx.coroutines.experimental
1821

1922
import kotlinx.coroutines.experimental.intrinsics.*

core/kotlinx-coroutines-core/src/main/kotlin/kotlinx/coroutines/experimental/Job.kt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@
1414
* limitations under the License.
1515
*/
1616

17+
// :todo: Remove after transition to Kotlin 1.2.30+
18+
@file:Suppress("ACTUAL_FUNCTION_WITH_DEFAULT_ARGUMENTS")
19+
1720
package kotlinx.coroutines.experimental
1821

1922
import kotlinx.atomicfu.*

js/kotlinx-coroutines-core-js/src/main/kotlin/kotlinx/coroutines/experimental/Builders.kt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@
1414
* limitations under the License.
1515
*/
1616

17+
// :todo: Remove after transition to Kotlin 1.2.30+
18+
@file:Suppress("ACTUAL_FUNCTION_WITH_DEFAULT_ARGUMENTS")
19+
1720
package kotlinx.coroutines.experimental
1821

1922
import kotlinx.coroutines.experimental.intrinsics.*

js/kotlinx-coroutines-core-js/src/main/kotlin/kotlinx/coroutines/experimental/CancellableContinuation.kt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@
1414
* limitations under the License.
1515
*/
1616

17+
// :todo: Remove after transition to Kotlin 1.2.30+
18+
@file:Suppress("ACTUAL_FUNCTION_WITH_DEFAULT_ARGUMENTS")
19+
1720
package kotlinx.coroutines.experimental
1821

1922
import kotlin.coroutines.experimental.Continuation

js/kotlinx-coroutines-core-js/src/main/kotlin/kotlinx/coroutines/experimental/CompletableDeferred.kt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@
1414
* limitations under the License.
1515
*/
1616

17+
// :todo: Remove after transition to Kotlin 1.2.30+
18+
@file:Suppress("ACTUAL_FUNCTION_WITH_DEFAULT_ARGUMENTS")
19+
1720
package kotlinx.coroutines.experimental
1821

1922
/**

0 commit comments

Comments
 (0)