Ilya Muradyan

Results 109 comments of Ilya Muradyan

Yes, because of usage of "top-level" variable `shiftModel` inside `ShiftManager` it was implicitly made `inner`. It's the consequence of the recent fix for https://youtrack.jetbrains.com/issue/KT-19423. But the fix isn't complete: following...

https://gist.github.com/ileasile/1016cf09608df8f9b7f4cfe2d64625f6?permalink_comment_id=5023207#gistcomment-5023207

Yes, fully qualified name for `ShiftID` is actually `Line_X.ShiftID` (`X` is some number). And it's all related to redesigning of scripting.

Hi! You can use this artifact with the 0.12.0-85 version or any other published version. Kotlin kernel isn't a part of a Kotlin distribution, so that's expected that version 1.9.20...

Hi! Provided code samples seem to work for us. Do they fail for you or you have attached already fixed code samples? It would be also great to have minimal...

@maxandersen Some users in our public Slack complain there is a problem connecting to the runtime (it's connecting infinitely) ![image-37.png](https://github.com/Kotlin/kotlin-jupyter/assets/20319593/5210f39c-d783-4c5d-b06f-93a850bbe1bf) Don't you know what could be a reason and how...

There is a number of options in Jupyter Console: https://jupyter-console.readthedocs.io/en/latest/config_options.html Try to use bigger value of `ZMQTerminalInteractiveShell.kernel_is_complete_timeout`: ``` jupyter console --kernel=kotlin --ZMQTerminalInteractiveShell.kernel_is_complete_timeout=10.0 ``` But I think it is generally a...

Hello, Sergey. There is a corresponding issue in Kotlin scripting: https://youtrack.jetbrains.com/issue/KT-19423, we'll fix it once it will be fixed in scripting backend.

@altavir That's your case 1. With object ```kotlin fun h() = 1 object A { fun g(): Int = h() } ``` ``` Back-end (JVM) Internal error: Failed to generate...

Yes, it's a bug, thanks for reporting!