public virtual void OutAXorBinop(AXorBinop node)
 {
     DefaultOut(node);
 }
 public override void CaseAXorBinop(AXorBinop node)
 {
     InAXorBinop(node);
     if (node.GetToken() != null)
     {
         node.GetToken().Apply(this);
     }
     OutAXorBinop(node);
 }
 public virtual void InAXorBinop(AXorBinop node)
 {
     DefaultIn(node);
 }
 public virtual void CaseAXorBinop(AXorBinop node)
 {
     DefaultCase(node);
 }
 public override void CaseAXorBinop(AXorBinop node)
 {
     Write("^");
 }
示例#6
0
 ArrayList New51()
 {
     ArrayList nodeList = new ArrayList();
     ArrayList nodeArrayList1 = (ArrayList) Pop();
     TXor txorNode2 = (TXor)nodeArrayList1[0];
     AXorBinop pbinopNode1 = new AXorBinop (
       txorNode2
     );
     nodeList.Add(pbinopNode1);
     return nodeList;
 }
示例#7
0
 ArrayList New499()
 {
     ArrayList nodeList = new ArrayList();
     ArrayList nodeArrayList3 = (ArrayList) Pop();
     ArrayList nodeArrayList2 = (ArrayList) Pop();
     ArrayList nodeArrayList1 = (ArrayList) Pop();
     PExp pexpNode2 = (PExp)nodeArrayList1[0];
     TXor txorNode4 = (TXor)nodeArrayList2[0];
     AXorBinop pbinopNode3 = new AXorBinop (
       txorNode4
     );
     PExp pexpNode5 = (PExp)nodeArrayList3[0];
     ABinopExp pexpNode1 = new ABinopExp (
       pexpNode2,
       pbinopNode3,
       pexpNode5
     );
     nodeList.Add(pexpNode1);
     return nodeList;
 }
 public override void CaseAXorBinop(AXorBinop node)
 {
     Value += " ^ ";
 }