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
The "user" tree is currently storing mutable state on the nodes for Input/Output objects as the ir tree is still generated in a separate pass. The passes need to be combined to remove this state.
The text was updated successfully, but these errors were encountered:
This is the next step in producing immutable state in the Painless "user"
tree. This combines the analyze phase and the write phase so that both
semantic checking and the ir tree are generated in the same phase. This
allows the removal of the Input/Output objects created in the previous PRs
from being mutable state on the nodes. Instead they are now local state
for the analyze phase.
Relates: #53561
Relates: #49869
The "user" tree is currently storing mutable state on the nodes for Input/Output objects as the ir tree is still generated in a separate pass. The passes need to be combined to remove this state.
The text was updated successfully, but these errors were encountered: