final case classLazyDataRepr extends ValueRepr with Product with Serializable
An identifier for a "lazy" value. It won't be evaluated until the client asks for it by its handle.
We use Ints for the handle, because JS needs to store the handle, and it can't store Long. We just can't have
more than 232 different handles... I think there would be bigger issues at that point.
Linear Supertypes
Serializable, Serializable, Product, Equals, ValueRepr, AnyRef, Any
An identifier for a "lazy" value. It won't be evaluated until the client asks for it by its handle. We use Ints for the handle, because JS needs to store the handle, and it can't store Long. We just can't have more than 232 different handles... I think there would be bigger issues at that point.