Iceman
Iceman
@0xTim Could you review this?
@0xTim Sorry, I might have caused some confusion with my explanation. No matter how much we tweak `FormDataDecoder`, it won’t resolve this issue. That’s because if `body.data` becomes `nil`, the...
@0xTim The server-side source code is described in: https://github.com/vapor/vapor/issues/3288 The browser-side HTML is in the following format: ```html ``` The following line is added only when performing an advanced search:...
Actually, `@available` cannot be used for stored properties. The following code won't compile, right? ```swift struct S { @available(macOS 99, *) // stored properties cannot be marked potentially unavailable with...
https://github.com/uber/mockolo/pull/330#issuecomment-3612765872 > But imo the result must be @discardableResult func returnSelf() -> Self This is something I'm fine with either way. The functions correctly when the mock class used generically.
More detailed example ```swift @available(iOS 99.0, *) struct S {} @available(iOS 99.0, *) protocol P { var s: S { get } } class PMock: P { let s =...