Replies: 1 comment 4 replies
-
Can you please add more details? This is a little vague. Specifically, when you say "is a type", do you mean in KSP's types or in how KotlinPoet's KSP interop resolves that somewhere? A code snippet would help. |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
With KSP1, a function
fun main(varargs args: String)
would have a parameter with the typeString
.With KSP2, that parameter is of type
Array<out String>
.Currenlty the way of kotlinpoet matches with the approach of KSP1. Will this remain as is?
Beta Was this translation helpful? Give feedback.
All reactions