binding-tools-for-swift icon indicating copy to clipboard operation
binding-tools-for-swift copied to clipboard

Results 123 binding-tools-for-swift issues
Sort by recently updated
recently updated
newest added

See XmlReflectionTests.SwiftInterfaceParserTests.WontLoadThisModuleHere

bug

NewClassCompilerTests.SmokeTest is failing in module loading. Check on that.

bug

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...

enhancement

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...

enhancement

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...

bug

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...

bug