Mathias Quintero
Mathias Quintero
Interesting. Something appears to be crashing after a few hours. I'm investigating the issue. Stacktrace: ``` 2020-05-08T06:31:44.358523+00:00 app[web.1]: Fatal error: Error raised at top level: Query fields must be an...
I took a look at the executable that Heroku was using. All the symbols are there. The server should run problem free. And yet it crashes the second time you...
Thanks for the interest in the library! As for this problem: Hmm... It does seem like we could somehow listen to the same events of `navigationBarItems` and react accordingly. In...
Uhhh very good question. We can certainly try. We should try on both iPad and Mac. How can I get a playground working with this? And do you have an...
Hmmm... What if we compile it (once for Mac once for iOS) and try to include the .framework... Perhaps that would work? I mean the Playgrounds App obviously can interact...
Oh that's weird. It failed checking out NIO (timeout). Perhaps retriggering it would help
Well that fixed it!
I managed to get the code generation to work in a reasonable time. Compile time is hit quite a bit by this. We will try it out for a while...
Example of what I mean: If I write ```swift class Foo { let bar: Bar let baz: String let item: Int func other() -> [Bar] { ... } } ```...
This should also be compatible with our strategies for resolving subclassing: So if we also have: ```swift class SpecificFoo: Foo { let specific: T? let someData: Bool } ``` then...