NSMutableString.as constructor

NSMutableString.as(
  1. ObjCObject other
)

Constructs a NSMutableString that points to the same underlying object as other.

Implementation

NSMutableString.as(objc.ObjCObject other) : object$ = other {
  assert(isA(object$));
}