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 ControlFlowGraphVisitor currently uses a variable's identifier only to distinguish between variables. This, however, does not uniquely identify a variable because there can be multiple variables with the same identifier, declared in different scopes. We therefore need to also take the scope into account.
This enhancement is already implemented in the CompileTimeExpressionSimplifier and uses scope information provided by the base Visitor class.
The text was updated successfully, but these errors were encountered:
The ControlFlowGraphVisitor currently uses a variable's identifier only to distinguish between variables. This, however, does not uniquely identify a variable because there can be multiple variables with the same identifier, declared in different scopes. We therefore need to also take the scope into account.
This enhancement is already implemented in the CompileTimeExpressionSimplifier and uses scope information provided by the base Visitor class.
The text was updated successfully, but these errors were encountered: