You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
According to the time profiler, bridging a JSValue to Obj-C and working with it in native code turns out to be really slow as the value gets more complex. While bundling babelify, 550ms is spent just bridging one AST to obj-c, which is time wasted. An effort should be made to limit bridging to two places per dependency -- transferring the source code to be parsed, and receiving the resolved require expressions and literals.
The text was updated successfully, but these errors were encountered:
According to the time profiler, bridging a JSValue to Obj-C and working with it in native code turns out to be really slow as the value gets more complex. While bundling babelify, 550ms is spent just bridging one AST to obj-c, which is time wasted. An effort should be made to limit bridging to two places per dependency -- transferring the source code to be parsed, and receiving the resolved require expressions and literals.
The text was updated successfully, but these errors were encountered: