NSObject.as constructor
NSObject.as(
- ObjCObject other
Constructs a NSObject that points to the same underlying object as other.
Implementation
NSObject.as(objc.ObjCObject other) : object$ = other {
objc.checkOsVersionInternal(
'NSObject',
iOS: (false, (2, 0, 0)),
macOS: (false, (10, 0, 0)),
);
assert(isA(object$));
}