|
|
|
@ -53,9 +53,7 @@ public class HttpInputDataChecker extends IssuableSubscriptionVisitor { |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public void visitIfStatement(IfStatementTree tree) { |
|
|
|
|
System.out.println(tree); |
|
|
|
|
ExpressionTree condition = tree.condition(); |
|
|
|
|
System.out.println(condition.toString()); |
|
|
|
|
if(condition instanceof AssignmentExpressionTreeImpl){ |
|
|
|
|
AssignmentExpressionTreeImpl assignmentExpressionTree = (AssignmentExpressionTreeImpl) condition; |
|
|
|
|
list.add(assignmentExpressionTree.variable().toString()); |
|
|
|
|