-
Notifications
You must be signed in to change notification settings - Fork 65
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
Use Hermes instead of JSC on iOS #83
Conversation
TODO: apply changes from #103 |
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.
LGTM, I tested iOS and performance seems good to me. Also, all markdown styles work fine.
The only thing is that I can see some warnings in couple of unchanged files, like:
ios/RCTUITextView+Markdown.mm
undeclared selector 'updateLocalData' [-Wundeclared-selector]
Is it related to your changes?
Closing this PR in favor of #400 due to unsigned commits. |
Closes #400.
Previously, we would use built-in JSC (JavaScriptCore) on iOS and Hermes on Android for running the JS parser.
This PR migrates iOS to use Hermes instead of JSC in order to align the iOS implementation with Android.