[FIR] Let FirErrorExpression have a working type if possible

^KT-65337 Fixed
This commit is contained in:
Nikolay Lunyak
2024-02-08 14:43:42 +02:00
committed by Space Team
parent 7f42596935
commit 389f02b016
8 changed files with 11 additions and 11 deletions
@@ -186,9 +186,10 @@ abstract class AbstractImplementationConfigurator<Implementation, Element, Imple
*
* Use [additionalImports] if the default value uses types/functions that are not otherwise imported.
*/
fun default(field: String, value: String) {
fun default(field: String, value: String, withGetter: Boolean = false) {
default(field) {
this.value = value
this.withGetter = withGetter
}
}