outfoxx / swiftpoet

Kotlin and Java API for generating .swift source files.
Apache License 2.0
277 stars 26 forks source link

Support adding visibility to mutable property fields #77

Closed kdubb closed 1 year ago

kdubb commented 1 year ago

Allows generating property fields with different explicit visibility for setters.

public & private setter

public private(set) var x: Int

standalone private setter

private(set) var x: Int