Benoit Quenaudon
10/20/2021, 1:16 PMrachael
10/21/2021, 6:46 PMjw
10/21/2021, 7:41 PMPhilip Dukhov
10/25/2021, 2:11 PMcoroutines-extensions
does not support iosSimulatorArm64
. Am I missing something? Wasn't it supposed to be added along with the fix for this issue?jw
10/25/2021, 2:11 PMjw
10/25/2021, 2:12 PMPhilip Dukhov
10/25/2021, 2:16 PMruntime
, and coroutines-extensions
is still missing them.jw
10/25/2021, 2:16 PMPhilip Dukhov
10/25/2021, 3:39 PMPhilip Dukhov
10/26/2021, 7:35 AM1.6.0-SNAPSHOT
. AS hangs on loading gradle-plugin-1.6.0-20211019
. Do I need to use the previous version of the gradle plugin? I tried the 1.5.2
plugin, it seems to build fine(yet the version is still from 19 Oct), is it reliable to use an older version of the plugin?
Also, when can I expect a fresh SNAPSHOT containing my changes?Piotr Prus
10/26/2021, 10:04 AMDouble
in sqldelight. I would like to limit the decimal point to 6th place. In SQL
I can write
DOUBLE(3, 6)
where 3 is size of digits before decimal point and 6 is number of digits after decimal point. In sqldelight
we have REAL, but
REAL(3, 6)
do not compile.jw
10/26/2021, 10:41 AMhfhbd
10/26/2021, 11:06 AM1.5.2
. https://github.com/cashapp/sqldelight/pull/2650saket
10/26/2021, 4:10 PMLastExceed
10/27/2021, 12:08 PMjw
10/27/2021, 12:10 PMLastExceed
10/27/2021, 12:11 PMFileSpec.builder(packagename, filename)
.addType(TypeSpec.interfaceBuilder("I").build())
.addType(TypeSpec.classBuilder("C").build())
.build()
LastExceed
10/27/2021, 12:13 PM.addTypeVariable()
on the interface builder, but i dont understand its parameter typeLastExceed
10/27/2021, 12:14 PMLastExceed
10/27/2021, 3:27 PMfun foo() = 42
?Benoit Quenaudon
10/27/2021, 3:29 PMLastExceed
10/27/2021, 3:29 PMLastExceed
10/27/2021, 3:30 PMLastExceed
10/27/2021, 3:52 PMLastExceed
10/27/2021, 3:56 PMval x: fully.qualified.path.to.MyClass = <http://fully.qualified.path.to|fully.qualified.path.to>.MyClass()
instead of just
val x = MyClass()
im looking through the tests rn but so far havent found anything like this
edit: turns out you can if u use an empty string as packageName. kinda hacky but it worksLastExceed
10/27/2021, 5:07 PMvar
or val
to a primary constructor parameter ?LastExceed
10/27/2021, 5:15 PMLastExceed
10/27/2021, 5:27 PMFunSpec.builder("get").build()
generates
public fun `get`(): kotlin.Unit {
}
how do i get it to generate without ` ?