Zac Sweers
01/10/2025, 12:18 AMFunctionBuildingContext and FunctionBuildingContext.valueParameter ? I'm running into recurring cases in my plugin where I want to override a member and want to copy over annotations from the original declaration, but the FIR API seems to omit good hooks for thisdmitriy.novozhilov
01/10/2025, 7:56 AMbut the FIR API seems to omit good hooks for thisRight now you can just modify the FIR declaration produced by the
create... DSL:
createMemberFunction(...).also {
it.replaceAnnotations(...)
}Zac Sweers
01/10/2025, 5:08 PMZac Sweers
01/10/2025, 5:42 PM