示例#1
0
 public virtual void CaseACall(ACall node)
 {
     DefaultCase(node);
 }
示例#2
0
 public virtual void OutACall(ACall node)
 {
     DefaultOut(node);
 }
示例#3
0
 public override void CaseACall(ACall node)
 {
     InACall(node);
     if(node.GetOperatorClosingParenthesis() != null)
     {
     node.GetOperatorClosingParenthesis().Apply(this);
     }
     if(node.GetArgumentlist() != null)
     {
     node.GetArgumentlist().Apply(this);
     }
     if(node.GetOperatorOpeningParenthesis() != null)
     {
     node.GetOperatorOpeningParenthesis().Apply(this);
     }
     if(node.GetSimple() != null)
     {
     node.GetSimple().Apply(this);
     }
     OutACall(node);
 }
示例#4
0
 public virtual void InACall(ACall node)
 {
     DefaultIn(node);
 }
示例#5
0
 ArrayList New81()
 {
     ArrayList nodeList = new ArrayList();
     ArrayList nodeArrayList4 = (ArrayList) Pop();
     ArrayList nodeArrayList3 = (ArrayList) Pop();
     ArrayList nodeArrayList2 = (ArrayList) Pop();
     ArrayList nodeArrayList1 = (ArrayList) Pop();
     PSimple psimpleNode2 = (PSimple)nodeArrayList1[0];
     TOperatorOpeningParenthesis toperatoropeningparenthesisNode3 = (TOperatorOpeningParenthesis)nodeArrayList2[0];
     PArgumentlist pargumentlistNode4 = (PArgumentlist)nodeArrayList3[0];
     TOperatorClosingParenthesis toperatorclosingparenthesisNode5 = (TOperatorClosingParenthesis)nodeArrayList4[0];
     ACall pcallNode1 = new ACall (
       psimpleNode2,
       toperatoropeningparenthesisNode3,
       pargumentlistNode4,
       toperatorclosingparenthesisNode5
     );
     nodeList.Add(pcallNode1);
     return nodeList;
 }