kotlin
kotlin copied to clipboard
The Kotlin Programming Language.
Motivation to create this pull request was fact that syntax errors can lead to weird semantic errors. I made some changes in parser to make this situations less frequent. 1....
Added samples for doubles in the kotlin.math package https://youtrack.jetbrains.com/issue/KT-20357
Implementation of [KT-37288](https://youtrack.jetbrains.com/issue/KT-37288). Adds the following overloads to BigIntegers.kt: ```kotlin /** * Returns the value of this [Byte] number as a [BigInteger]. */ @SinceKotlin("1.3") @kotlin.internal.InlineOnly public inline fun Byte.toBigInteger(): BigInteger...
Opening this PR up sort of as a heads-up and hopefully a bit of discussion - I wrote a gradle plugin for my employer that started failing with the kotlin...
See: https://youtrack.jetbrains.com/issue/KT-23017
Fixes a variety of warnings about implicit type conversions by making them explicit.
add samples for `withDefault` and `getValue`
[^KT-56197](https://youtrack.jetbrains.com/issue/KT-56197/If-use-classpathSnaptshot-the-invoke-place-of-subclasss-super-function-who-has-default-parameters-will-not-recompiled-if-it-is) If classpathSnapshot is enable, if subclass's supertype's function which has default parameters has changed, it will not regenerate the subclass's invoke place which has invoked the function