Example #1
0
 ArrayList New4()
 {
     ArrayList nodeList = new ArrayList();
     ArrayList nodeArrayList1 = (ArrayList) Pop();
     TTInteger ttintegerNode2 = (TTInteger)nodeArrayList1[0];
     AIntegerSexp psexpNode1 = new AIntegerSexp (
       ttintegerNode2
     );
     nodeList.Add(psexpNode1);
     return nodeList;
 }
Example #2
0
 public virtual void CaseAIntegerSexp(AIntegerSexp node)
 {
     DefaultCase(node);
 }
Example #3
0
 public virtual void InAIntegerSexp(AIntegerSexp node)
 {
     DefaultIn(node);
 }
Example #4
0
 public virtual void OutAIntegerSexp(AIntegerSexp node)
 {
     DefaultOut(node);
 }
Example #5
0
 public override void CaseAIntegerSexp(AIntegerSexp node)
 {
     InAIntegerSexp(node);
     if(node.GetTInteger() != null)
     {
     node.GetTInteger().Apply(this);
     }
     OutAIntegerSexp(node);
 }