Andrew Gazelka
01/08/2019, 7:17 PMval
, var
. Is there a corresponding shortcut which allows me to go to type implementation?Andrew Gazelka
01/08/2019, 7:18 PMpoohbar
01/11/2019, 3:16 PMpoohbar
01/11/2019, 3:16 PMprintln("hi")
The line is underlined and I get error:
scratch_4_5.kts:1 Cannot access script base class 'kotlin.script.templates.standard.ScriptTemplateWithArgs'. Check your module classpath for missing or conflicting dependencies
poohbar
01/11/2019, 3:18 PMpoohbar
01/11/2019, 3:18 PMpoohbar
01/11/2019, 3:19 PMkotlin-script-runtime
to my maven pom.xml
file. It makes no sense to me that I should change something in my project to allow for scratch files to work 😕louiscad
01/13/2019, 11:16 PMorangy
arve
01/18/2019, 10:42 PMkarelpeeters
01/18/2019, 11:00 PM{}
aren't actually part of the template, that's too bad.Icaro Temponi
01/18/2019, 11:54 PMCzar
01/20/2019, 10:04 PMfebs
01/21/2019, 12:19 AMEugen Martynov
01/21/2019, 1:53 PMEugen Martynov
01/21/2019, 1:53 PMEugen Martynov
01/21/2019, 1:55 PMpniederw
01/22/2019, 6:57 AM@Nullable
annotation to my Java code and annotating my Java packages with @NonnullByDefault
, I'm getting inexplicable errors for my Kotlin code in IntelliJ (but not in Gradle build). For example, some equality comparisons (!=
) now give this error:
Error:(522, 58) Kotlin: No method 'equals(Any?): Boolean' available
Error:(522, 58) Kotlin: Unresolved reference: !=
Any ideas what's going on here?bjonnh
02/02/2019, 12:11 AMArtur Bosch
02/02/2019, 1:11 PMChris Cunningham
02/05/2019, 12:18 AMDias
02/05/2019, 1:53 PMDalinar
02/05/2019, 6:28 PM{ abc ->
to { _ ->
if abc
is not used? does that really make things better?natpryce
02/05/2019, 6:33 PM{ _, y, _ -> blah(y) }
Dalinar
02/05/2019, 6:40 PMnatpryce
02/05/2019, 11:35 PMbjonnh
02/07/2019, 11:26 PMEugen Martynov
02/08/2019, 7:46 AMEugen Martynov
02/08/2019, 7:46 AMEugen Martynov
02/08/2019, 8:37 AMDecompile to Java
on top of the file