v0.9.1
0.9.1
-
The result of
ConstantReader.revive()
now returns aRevivable
that assumes
access to a private class, constructor, or function instead ofnull
where
possible. This allows generators that usepart
files to still use this
functionality and allows generators that use separate libraries to emit more
actionable error messages (i.e."cannot use private class _X"
). -
Revivable.isPrivate
now returnstrue
when the underyling class was public
but the constructor was private, or theRevivable
was pointing to a
top-level or static private field or method. Previously it was onlytrue
when referencing a private class.