Exemple #1
0
 public override void CaseAAssignstmt(AAssignstmt node)
 {
     InAAssignstmt(node);
     if (node.GetEol() != null)
     {
         node.GetEol().Apply(this);
     }
     if (node.GetExpr() != null)
     {
         node.GetExpr().Apply(this);
     }
     if (node.GetAssign() != null)
     {
         node.GetAssign().Apply(this);
     }
     if (node.GetId() != null)
     {
         node.GetId().Apply(this);
     }
     OutAAssignstmt(node);
 }