Dmitry Jemerov

Results 35 comments of Dmitry Jemerov

@Jacksgong This is not a code style issue, this is a language syntax issue. The confusion of your developers is unfortunate, but you do have to wrap after `+` and...

I'm not sure what you mean by "we can't know". You can know this; `a` will be 1.

I'm not going to transfer ownership of this project. If anyone is seriously interested in helping me maintain the plugin ("seriously" means at least submitting a pull request that doesn't...

See https://github.com/jetbrains/kotlinconf-app and https://github.com/yole/kxhtml-isomorphic for other example projects that demo this.

Just to clarify: The main issue with line numbers and inline functions is that inline functions can be declared in different source files, so the .class file contains line numbers...

The /tutorials directory is for projects that are used at http://kotlinlang.org/docs/tutorials/ . Please move the project to a different directory.

Please don't @-mention random people when asking questions.

What exactly doesn't work? There is no support for showing documentation from external javadoc for Kotlin declarations, it's only supported for Java.

IntelliJ IDEA does not support any external documentation for Kotlin sources. Given that the vast majority of Kotlin code available today is open-source, it's unclear what benefit exactly the support...

Your discussion of alternatives is incomplete, because you don't mention the possibility of using extension functions for converting values to BigDecimal/BigInteger. `val x = "1.0".big` Also, your proposed support for...