When inspecting the `valueParameters` of the `prim...
# arrow-meta
m
When inspecting the
valueParameters
of the
primaryConstructor
ot a
KtClass
in a ΛRROW Meta transformation, is it normal to find the
typeReference.name
to be
null
and to have to use
text
, instead, to find the type of the parameter (
Int
, in my case)?
r
yes, at that phase type reference may not be there since all that is before resolution and tyechecking. Quotes are just trees with text nodes and structured info that points to text but not real types
💯 1
m
Thanks. I suspected that could be the case, but since I'm new to this environment your explanation is very much appreciated.