提交 3b6d3e5a 编写于 作者: D Dmitriy Novozhilov

[FIR] Don't record `isFromVararg` attribute to all properties from constructor

上级 09428774
......@@ -85,7 +85,9 @@ class ValueParameter(
modifiers.getVisibility()
) else null
}.apply {
this.isFromVararg = firValueParameter.isVararg
if (firValueParameter.isVararg) {
this.isFromVararg = true
}
}
}
}
......@@ -463,7 +463,9 @@ open class RawFirBuilder(
dispatchReceiverType = currentDispatchReceiverType()
}.apply {
isFromVararg = firParameter.isVararg
if (firParameter.isVararg) {
isFromVararg = true
}
}
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册