I'm adding a native iOS module to my fuse project, and tagging the native methods with [Foreign(Language.ObjC)], like this:
public class MyModuleIOS
{
[Foreign(Language.ObjC)]
public void Init(string token)
@{
// ...
@}
}
When I run fuse preview from command line I get the following build error:
ERROR: Failed to compile .NET type MyModuleIOS: Statement type not supported in bytecode backend: ExternScope
Thanks for any suggestions for how to fix this