Whats the difference between `BindingContext.TYPE`...
# compiler
s
Whats the difference between
BindingContext.TYPE
and
BindingContext.ABBREVIATED_TYPE
? in the
visitTypeReference
method of a subclass of
KtTreeVisitorVoid
, using the former gives me null for the
KtTypeReference
of a type alias of
String
, while the latter gives me the type Im expecting. Meanwhile using the former gives me the expected type in e.g. method parameter types.
type Stringer = String
is the alias in question