public virtual void CaseALtBinop(ALtBinop node)
 {
     DefaultCase(node);
 }
 public virtual void InALtBinop(ALtBinop node)
 {
     DefaultIn(node);
 }
 public virtual void OutALtBinop(ALtBinop node)
 {
     DefaultOut(node);
 }
 public override void CaseALtBinop(ALtBinop node)
 {
     InALtBinop(node);
     if (node.GetToken() != null)
     {
         node.GetToken().Apply(this);
     }
     OutALtBinop(node);
 }
 public override void CaseALtBinop(ALtBinop node)
 {
     Write(" < ");
 }
Example #6
0
 ArrayList New489()
 {
     ArrayList nodeList = new ArrayList();
     ArrayList nodeArrayList3 = (ArrayList) Pop();
     ArrayList nodeArrayList2 = (ArrayList) Pop();
     ArrayList nodeArrayList1 = (ArrayList) Pop();
     PExp pexpNode2 = (PExp)nodeArrayList1[0];
     TLt tltNode4 = (TLt)nodeArrayList2[0];
     ALtBinop pbinopNode3 = new ALtBinop (
       tltNode4
     );
     PExp pexpNode5 = (PExp)nodeArrayList3[0];
     ABinopExp pexpNode1 = new ABinopExp (
       pexpNode2,
       pbinopNode3,
       pexpNode5
     );
     nodeList.Add(pexpNode1);
     return nodeList;
 }
Example #7
0
 ArrayList New45()
 {
     ArrayList nodeList = new ArrayList();
     ArrayList nodeArrayList1 = (ArrayList) Pop();
     TLt tltNode2 = (TLt)nodeArrayList1[0];
     ALtBinop pbinopNode1 = new ALtBinop (
       tltNode2
     );
     nodeList.Add(pbinopNode1);
     return nodeList;
 }
 public override void CaseALtBinop(ALtBinop node)
 {
     Value += " < ";
 }