I'm curious: Has anyone tried making use of kotlin...
# arrow-meta
n
I'm curious: Has anyone tried making use of kotlinpoet for codegen in an arrow meta plugin? I am attempting to do this currently -- yet am having some issues with the interactions between the Psi API and kotlinpoet. Asking on the kotlinpoet repo I've found some help with this issue, but I was thinking if there's anyone else who has tried this in arrow meta, I might be able to dog up some more helpful examples/utilities.
r
hi Nathan, We used kotlin poet in the old meta based on kapt but we did not want to have it as dependency in arrow meta. One of the goals of arrow meta is down the road provide a form of typed templates or more advanced string interpolation. We did not want to depend on the programmatic style of a third party tool until we figure out what quoting in macros or compiler plugins against the kotlin AST looks like.
👍 1