-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Re-implement RemoteReaderPost
in Swift - Part 1
#561
base: translate-objc-to-swift
Are you sure you want to change the base?
Re-implement RemoteReaderPost
in Swift - Part 1
#561
Conversation
@@ -0,0 +1,17 @@ | |||
import Foundation |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This import might be unnecessary.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, that's true for the current project setup. But I think it's needed for SPM support.
I've changed the base branch to the dedicated Swift migration branch, see #562 for more context. |
Description
RemoteReaderPost
has lots of parsing functions, it would be very hard to review and easy to make mistakes if translating the ObjC code to Swift in one go. I will break down the translation into a few parts. The first PR here translates the simpliest parsing functions, which are all covered by unit tests.Testing Details
We should be good if the CI jobs are green.
version
in the.podspec
file.