This Facebook example shows, how Hack transpiler removes Transformable
type hint from both transform()
and wonderland()
functions. Why? Is Transformable
some built-in Hack interface or class?
What is "Transformable" in Hack language?
80 views Asked by Vladislav Rastrusny At
1
It's not anything special at all. It's just an example of an arbitrary type annotation. One of the things that the tool does is remove type annotations, such as
Transformable
(assuming you had a class calledTransformable
yourself), orFoo
, orBlah
, or any other class you define. There's nothing special aboutTransformable
at all.