SynchronizedLazyPropertyWrapper
class SynchronizedLazyPropertyWrapper<T, V : Any>(wrappedProperty: ReadOnlyProperty<T, V>) : ReadOnlyProperty<T, V>
Deprecated
SynchronizedLazyPropertyWrapper is a support class for the wrapIn(WithThisRef) mechanism which is deprecated.
Similar to lazy { }
but uses a property instead of a lambda for building. Inspired by the SYNCHRONIZED
lazy implementation.