mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
With
fun f(b: kotlin.Byte) {
val x = b.describeConstable()
}
and -language-version 1.9 we get
test.kt:2:15: warning: 'describeConstable(): Optional<DynamicConstantDesc<Byte!>!>!' is deprecated. This member is not fully supported by Kotlin compiler, so it may be absent or have different signature in next major version
and with 2.0
test.kt:2:15: error: unresolved reference 'describeConstable'.
53 lines
1.5 KiB
Plaintext
53 lines
1.5 KiB
Plaintext
| java.lang.Byte | byteValue |
|
|
| java.lang.Byte | compare |
|
|
| java.lang.Byte | compareTo |
|
|
| java.lang.Byte | compareUnsigned |
|
|
| java.lang.Byte | decode |
|
|
| java.lang.Byte | describeConstable |
|
|
| java.lang.Byte | doubleValue |
|
|
| java.lang.Byte | equals |
|
|
| java.lang.Byte | floatValue |
|
|
| java.lang.Byte | hashCode |
|
|
| java.lang.Byte | intValue |
|
|
| java.lang.Byte | longValue |
|
|
| java.lang.Byte | parseByte |
|
|
| java.lang.Byte | shortValue |
|
|
| java.lang.Byte | toString |
|
|
| java.lang.Byte | toUnsignedInt |
|
|
| java.lang.Byte | toUnsignedLong |
|
|
| java.lang.Byte | valueOf |
|
|
| java.lang.Number | byteValue |
|
|
| java.lang.Number | doubleValue |
|
|
| java.lang.Number | floatValue |
|
|
| java.lang.Number | intValue |
|
|
| java.lang.Number | longValue |
|
|
| java.lang.Number | shortValue |
|
|
| kotlin.Byte | byteValue |
|
|
| kotlin.Byte | compareTo |
|
|
| kotlin.Byte | dec |
|
|
| kotlin.Byte | div |
|
|
| kotlin.Byte | doubleValue |
|
|
| kotlin.Byte | equals |
|
|
| kotlin.Byte | floatValue |
|
|
| kotlin.Byte | inc |
|
|
| kotlin.Byte | intValue |
|
|
| kotlin.Byte | longValue |
|
|
| kotlin.Byte | minus |
|
|
| kotlin.Byte | plus |
|
|
| kotlin.Byte | rangeTo |
|
|
| kotlin.Byte | rangeUntil |
|
|
| kotlin.Byte | rem |
|
|
| kotlin.Byte | shortValue |
|
|
| kotlin.Byte | times |
|
|
| kotlin.Byte | toChar |
|
|
| kotlin.Byte | toString |
|
|
| kotlin.Byte | unaryMinus |
|
|
| kotlin.Byte | unaryPlus |
|
|
| kotlin.Number | byteValue |
|
|
| kotlin.Number | doubleValue |
|
|
| kotlin.Number | floatValue |
|
|
| kotlin.Number | intValue |
|
|
| kotlin.Number | longValue |
|
|
| kotlin.Number | shortValue |
|
|
| kotlin.Number | toChar |
|