Skip to content
This repository was archived by the owner on Jul 13, 2021. It is now read-only.

Commit 32551b2

Browse files
devulexcy6erGn0m
authored andcommitted
Upgrade Kotlin to 1.1.4-3
1 parent f76a0a8 commit 32551b2

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version = '0.0.1-SNAPSHOT'
33

44
subprojects { p ->
55
p.buildscript {
6-
ext.kotlin_version = "1.1.2-2"
6+
ext.kotlin_version = "1.1.4-3"
77

88
repositories {
99
mavenLocal()
@@ -19,7 +19,7 @@ subprojects { p ->
1919
}
2020

2121
subprojects {
22-
ext.kotlin_version = "1.1.1"
22+
ext.kotlin_version = "1.1.4-3"
2323
ext.html_version = "0.6.2"
2424
ext.ktor_version = "0.3.0"
2525
ext.squash_version = "0.2.2"

frontend/src/org/jetbrains/react/ReactBuilder.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,14 +59,14 @@ open class ReactBuilder {
5959
return P::class.createInstance()
6060
}
6161

62-
internal inline operator fun <reified T: ReactComponent<P, S>, reified P : RProps, S: RState> ReactComponentSpec<T, P, S>.invoke(
62+
inline operator fun <reified T: ReactComponent<P, S>, reified P : RProps, S: RState> ReactComponentSpec<T, P, S>.invoke(
6363
noinline handler: P.() -> Unit = {}
6464
) : ReactElement {
6565
val props = instantiateProps<P>()
6666
return node(props) { props.handler() }
6767
}
6868

69-
internal inline operator fun <reified T: ReactComponent<P, S>, reified P : RProps, S: RState> ReactComponentSpec<T, P, S>.invoke(
69+
inline operator fun <reified T: ReactComponent<P, S>, reified P : RProps, S: RState> ReactComponentSpec<T, P, S>.invoke(
7070
props: P,
7171
noinline handler: P.() -> Unit = {}
7272
) : ReactElement {
@@ -78,7 +78,7 @@ open class ReactBuilder {
7878
noinline handler: ReactBuilder.() -> Unit = {}
7979
) = enterReactNode(ReactComponent.wrap(T::class), props, handler)
8080

81-
internal inline operator fun <reified P : RProps> ReactExternalComponentSpec<P>.invoke(
81+
inline operator fun <reified P : RProps> ReactExternalComponentSpec<P>.invoke(
8282
noinline handler: P.() -> Unit = {}
8383
) : ReactElement {
8484
val props = instantiateProps<P>()

0 commit comments

Comments
 (0)