-
Notifications
You must be signed in to change notification settings - Fork 143
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
Add caching of identical instance bodies #949
Labels
Comments
It is better that elabarated AST only keeps one instance of those identical instances, then visiting the AST will be faster. |
My hash suggestion - #1088 (comment) |
This can now be turned on with a compilation flag, with a caveat that it can cause some multi-driven errors to not be issued correctly. Things to handle before it's fully robust:
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Support caching instance bodies and skipping over identical copies when elaborating, to save time. Expose this functionality so that downstream consumers of the AST can easily do the same.
Note that the tricky detail here is figuring out how to handle hierarchical references into and out of the cached instances.
The text was updated successfully, but these errors were encountered: