8443daf78d
They are mostly necessary for argument mapping during resolution. To support a couple checkers, we transform named args for varargs into "fake" spread expressions. Other than that, named arguments aren't needed for anything and often lead to bugs where we forget to unwrap them for something, so it's better to get rid of them. #KT-66124
17 lines
1003 B
Plaintext
Vendored
17 lines
1003 B
Plaintext
Vendored
FILE: builderInferenceAndCoercionToUnit.kt
|
|
public final class DropDownComponent<T : R|kotlin/Any|> : R|kotlin/Any| {
|
|
public constructor<T : R|kotlin/Any|>(initialValues: R|kotlin/collections/List<T>|): R|DropDownComponent<T>| {
|
|
super<R|kotlin/Any|>()
|
|
}
|
|
|
|
public final val initialValues: R|kotlin/collections/List<T>| = R|<local>/initialValues|
|
|
public get(): R|kotlin/collections/List<T>|
|
|
|
|
}
|
|
public final fun test(strings: R|kotlin/collections/List<kotlin/String>|): R|kotlin/Unit| {
|
|
lval dropDown: R|DropDownComponent<kotlin/Any>| = R|/DropDownComponent.DropDownComponent|<R|kotlin/Any|>(R|kotlin/collections/buildList|<R|kotlin/Any|>(<L> = buildList@fun R|kotlin/collections/MutableList<kotlin/Any>|.<anonymous>(): R|kotlin/Unit| <inline=Inline, kind=EXACTLY_ONCE> {
|
|
this@R|special/anonymous|.R|SubstitutionOverride<kotlin/collections/MutableList.addAll: R|kotlin/Boolean|>|(R|<local>/strings|)
|
|
}
|
|
))
|
|
}
|