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
A good optimisation in the compiler would be to ignore structures like objects, which we don't really do anything with.
Parsing large JSON objects is very intensive for the compiler.
What we'd ideally do is make the visitor quit when it starts traversing a structure like an object.
Counter point: we do need to support lazy state in object properties. Oh but not in a callback. So in some places yeah, we might be able to exit early.
The text was updated successfully, but these errors were encountered:
Hey @doc-han - nothing to worry about for now, I don't think this is the problem after all. Just wanted to make a note for myself while I was on a call
For the record the scenario is a 22k line Javscript source file, most of which is JSON data
A good optimisation in the compiler would be to ignore structures like objects, which we don't really do anything with.
Parsing large JSON objects is very intensive for the compiler.
What we'd ideally do is make the visitor quit when it starts traversing a structure like an object.
Counter point: we do need to support lazy state in object properties. Oh but not in a callback. So in some places yeah, we might be able to exit early.
The text was updated successfully, but these errors were encountered: