kotlin
kotlin copied to clipboard
The Kotlin Programming Language.
This solves an issue I reported myself: https://youtrack.jetbrains.com/issue/KT-52071 Some environments still use the Java Security Manager (despite its impending deprecation). They're also likely to block reading unknown system variables. If...
- Only modify generic signatures for declarations that *erase* to an override of a Java declaration with a different generic signature, instead of modifying all special bridges. This fixes KT-52929....
Partially fix [KT-16279](https://youtrack.jetbrains.com/issue/KT-16279). It seems that JVM-backend and JS-backend adopt different approaches of writing metadata, so I think it's better to keep JS-backend untouched, and take care of it later....
Kotlin-gradle-plugin maintains the dependency relationship between modules from gradle taskGraph, and it is used in incremental compilation. Assume there are two modules called moduleA and moduleB. If modulesA depends on...
Addresses [KT-35867](https://youtrack.jetbrains.com/issue/KT-35867) for the any() function.
Issue: https://youtrack.jetbrains.com/issue/KT-52724 * The `--timeout` flag is missing in the dry-run of the underlying mocha command * Since dry-run actually runs all the tests (just without the reporter) it might...
At the moment gradle plugin boolean properties aren't strictly parsed, meaning that invalid values are interpreted as `false`. Even `true ` is silently ignored and interpreted as `false`. Using `toBooleanStrict`...
Addresses [KT-35867](https://youtrack.jetbrains.com/issue/KT-35867) for the findLast() function. Would you review, please?