binding-tools-for-swift
binding-tools-for-swift copied to clipboard
See XmlReflectionTests.SwiftInterfaceParserTests.WontLoadThisModuleHere
NewClassCompilerTests.SmokeTest is failing in module loading. Check on that.
In order to get enum elements from .dylib files, we will need to look in the Reflection Metadata Field Descriptor for enums. Apple maps the layout of the Reflection Metadata...
See TopLevelLet - is coming through as settable.
In adding a constraint capability, we enable parsing of type specs of the form `SomeType` which will allow typealiases to carry that information through (even though that's semantic information that...
Probably this won't work: ``` public enum Foo { case a(`:`: Int) case b(`,`: Bool) } ``` To do this, you should probably crack open the actual tuple parse tree...
Seems that isMutating is only being used in Funcs and not in properties.
While creating bindings for dylibs, some nominal types get errors from the Swift Compiler that say "... is only available in iOS 14.0 or newer". I will be removing these...
When creating the bindings for dylib files, we do not get all methods and properties for protocols causing the swift compiler to say we are not conforming to it. For...
There's a convention (apparently?) in ObjC where some function arguments have an async callback and an error return. I couldn't decipher how the values describing these are actually set. Take...