Siddharth Gupta
Siddharth Gupta
I have gotten around this temporarily by replacing ` assert(internalState.canTransition(to: newState, isCancelled: isCancelled), "Invalid state transformation from \(internalState) to \(newState)") internalState = newState ` **with** ` if(internalState.canTransition(to: newState, isCancelled: isCancelled)){...
Hey, could you get the time to look at this?
I didn't convert the code to Swift 4. Basically, due to evaluateConditions being called twice on tasks, the task is moving to the ready state twice, leading to an assertion...
Hey one thing, tests pass for me in Xcode 9, if I target my mac. Did you target an iOS 11 simulator to run the tests?
Alright. Thanks a lot! Seems to work, considering the tests pass.
Hi @mattt! For my use case, it's mostly been the documented symbols competing with more important information. Since there's no way to currently **manually section** / **order** the generated documentation...
Sure thing! Go ahead :)
@mukeshkvns Can you please share the stack trace? Are you getting this crash during general usage, or while specifically invoking the `SwiftInspector`. If you are getting the crash when opening...
Hi @sanhue0302, Can you mention which pods are these or post your `MergeFile`? If a pod doesn't use ARC, it'll not merge with pods that do use ARC. The whole...