Exemple #1
0
 ArrayList New6()
 {
     ArrayList nodeList = new ArrayList();
     ArrayList nodeArrayList1 = (ArrayList) Pop();
     TTString ttstringNode2 = (TTString)nodeArrayList1[0];
     AStringSexp psexpNode1 = new AStringSexp (
       ttstringNode2
     );
     nodeList.Add(psexpNode1);
     return nodeList;
 }
 public virtual void OutAStringSexp(AStringSexp node)
 {
     DefaultOut(node);
 }
 public override void CaseAStringSexp(AStringSexp node)
 {
     InAStringSexp(node);
     if(node.GetTString() != null)
     {
     node.GetTString().Apply(this);
     }
     OutAStringSexp(node);
 }
 public virtual void InAStringSexp(AStringSexp node)
 {
     DefaultIn(node);
 }
 public virtual void CaseAStringSexp(AStringSexp node)
 {
     DefaultCase(node);
 }