Another quick question. How do I get only the data...
# compiler
a
Another quick question. How do I get only the data-class properties from a IrClassSymbol? I tried
classSym.owner.properties
but that gives me all of them and there's no
isDataClassProperty
flag on a IrProperty.
j
Picking them from the primary constructor
a
In that case, is there a way to tell if a IrClassSymbol is a data class?
NVM... I guess that's
owner.isData
?