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
During codegen phase when an element is transformed, we gather the databag before processing static elements.
When an element is identified as static safe, we exit the remainder of the transformElement routine which means didn't need to gather the databag at the start.
We should look into processing the databag until after we check is the element is static safe.
This could remove the need for cloning the expression during static content optimization.
Moving the databag processing also causes tes failures with older api versions such as API_VERSION=58
The text was updated successfully, but these errors were encountered:
During
codegen
phase when an element is transformed, we gather thedatabag
before processing static elements.When an element is identified as static safe, we exit the remainder of the
transformElement
routine which means didn't need to gather thedatabag
at the start.We should look into processing the
databag
until after we check is the element is static safe.This could remove the need for cloning the expression during static content optimization.
Moving the
databag
processing also causes tes failures with older api versions such asAPI_VERSION=58
The text was updated successfully, but these errors were encountered: