765cad8448
Consider the following code:
```
fun test(a: List<String>) {
a.first()
}
```
The dispatch receiver type of `first` in this case is `List<T>` before
this change. After this change, it's `List<String>`.
In addition, this change also replace the dispatch receiver type with
the more specific type if available. For example, consider the following
```
class MyList: ArrayList<String>()
fun test(a: MyList) {
a.get(0)
}
```
The dispatch receiver type of `get` is `MyList`, instead of
`ArrayList<String>`. That is, a fake override is created in this case.
44 lines
1.7 KiB
Plaintext
Vendored
44 lines
1.7 KiB
Plaintext
Vendored
FILE: complex.kt
|
|
public abstract interface AutoCloseable : R|kotlin/Any| {
|
|
public abstract fun close(): R|kotlin/Unit|
|
|
|
|
}
|
|
public final fun R|kotlin/Throwable|.addSuppressed(other: R|kotlin/Throwable|): R|kotlin/Unit| {
|
|
}
|
|
internal final fun R|AutoCloseable?|.closeFinally(cause: R|kotlin/Throwable?|): R|kotlin/Unit| {
|
|
^closeFinally when () {
|
|
==(this@R|/closeFinally|, Null(null)) -> {
|
|
}
|
|
==(R|<local>/cause|, Null(null)) -> {
|
|
this@R|/closeFinally|.R|/AutoCloseable.close|()
|
|
}
|
|
else -> {
|
|
try {
|
|
this@R|/closeFinally|.R|/AutoCloseable.close|()
|
|
}
|
|
catch (closeException: R|kotlin/Throwable|) {
|
|
R|<local>/cause|.R|/addSuppressed|(R|<local>/closeException|)
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
}
|
|
public final inline fun <reified T : R|kotlin/Any|> R|kotlin/collections/List<*>|.firstIsInstanceOrNull(): R|T?| {
|
|
{
|
|
lval <iterator>: R|kotlin/collections/Iterator<kotlin/Any?>| = this@R|/firstIsInstanceOrNull|.R|SubstitutionOverride<kotlin/collections/List.iterator: R|kotlin/collections/Iterator<CapturedType(*)>|>|()
|
|
while(R|<local>/<iterator>|.R|SubstitutionOverride<kotlin/collections/Iterator.hasNext: R|kotlin/Boolean|>|()) {
|
|
lval element: R|kotlin/Any?| = R|<local>/<iterator>|.R|SubstitutionOverride<kotlin/collections/Iterator.next: R|kotlin/Any?|>|()
|
|
when () {
|
|
(R|<local>/element| is R|T|) -> {
|
|
^firstIsInstanceOrNull R|<local>/element|
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
^firstIsInstanceOrNull Null(null)
|
|
}
|