MarshalledMapKeyPhase constructor

MarshalledMapKeyPhase(
  1. MarshalledObject nativeMap
)

Implementation

MarshalledMapKeyPhase(MarshalledObject nativeMap)
{
  // Clone first, as will mutate underlying property during conversion of keys.
  this._nativeMap = nativeMap.asArray().clone();
}