You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We should be able to parse BridgeSupport files and generate bindings for the Apple frameworks.
Data Structure Bridging
We need a way to bridge Objective C and Core Foundation types such as NSString, NSArray, NSDictionary with their Dylan equivalents, or at least to provide simple ways to access them.
Optimizing to use objc_msgSend_vtable
We will need compiler support to do this correctly, but some invocations of objc_msgSend could, in fact, become invocations of the objc_msgSend_vtable* functions. The code generated should actually be using objc_msgSend_fixup in this situation to enable this optimization within the Objective C run-time.