Inner JavaVisitor in findAllValues
to track multiple subtrees on left side of assignment
#26
Labels
bug
Something isn't working
As of right now,
findAllValues
inVarAccess
can traverse one layer on the subtree of aVarAccess
to track value assignments on a variable likethis.i
. However, suppose we have the following case (wherethis.self == this
and there exists a method calledgetSelf
that returnsself
):this.self.getSelf().self = this;
We would ultimately want to track values for this type of
VarAccess
with the inner JavaVisitor.The text was updated successfully, but these errors were encountered: