Beispiel #1
0
 public virtual void CaseAFunctiondeclaration(AFunctiondeclaration node)
 {
     DefaultCase(node);
 }
Beispiel #2
0
 public virtual void OutAFunctiondeclaration(AFunctiondeclaration node)
 {
     DefaultOut(node);
 }
Beispiel #3
0
 public override void CaseAFunctiondeclaration(AFunctiondeclaration node)
 {
     InAFunctiondeclaration(node);
     if(node.GetBlock() != null)
     {
     node.GetBlock().Apply(this);
     }
     if(node.GetOperatorClosingParenthesis() != null)
     {
     node.GetOperatorClosingParenthesis().Apply(this);
     }
     if(node.GetParameterlist() != null)
     {
     node.GetParameterlist().Apply(this);
     }
     if(node.GetOperatorOpeningParenthesis() != null)
     {
     node.GetOperatorOpeningParenthesis().Apply(this);
     }
     if(node.GetIdentifier() != null)
     {
     node.GetIdentifier().Apply(this);
     }
     if(node.GetKeywordFunc() != null)
     {
     node.GetKeywordFunc().Apply(this);
     }
     OutAFunctiondeclaration(node);
 }
Beispiel #4
0
 public virtual void InAFunctiondeclaration(AFunctiondeclaration node)
 {
     DefaultIn(node);
 }
Beispiel #5
0
 ArrayList New106()
 {
     ArrayList nodeList = new ArrayList();
     ArrayList nodeArrayList6 = (ArrayList) Pop();
     ArrayList nodeArrayList5 = (ArrayList) Pop();
     ArrayList nodeArrayList4 = (ArrayList) Pop();
     ArrayList nodeArrayList3 = (ArrayList) Pop();
     ArrayList nodeArrayList2 = (ArrayList) Pop();
     ArrayList nodeArrayList1 = (ArrayList) Pop();
     TKeywordFunc tkeywordfuncNode2 = (TKeywordFunc)nodeArrayList1[0];
     TIdentifier tidentifierNode3 = (TIdentifier)nodeArrayList2[0];
     TOperatorOpeningParenthesis toperatoropeningparenthesisNode4 = (TOperatorOpeningParenthesis)nodeArrayList3[0];
     PParameterlist pparameterlistNode5 = (PParameterlist)nodeArrayList4[0];
     TOperatorClosingParenthesis toperatorclosingparenthesisNode6 = (TOperatorClosingParenthesis)nodeArrayList5[0];
     PBlock pblockNode7 = (PBlock)nodeArrayList6[0];
     AFunctiondeclaration pfunctiondeclarationNode1 = new AFunctiondeclaration (
       tkeywordfuncNode2,
       tidentifierNode3,
       toperatoropeningparenthesisNode4,
       pparameterlistNode5,
       toperatorclosingparenthesisNode6,
       pblockNode7
     );
     nodeList.Add(pfunctiondeclarationNode1);
     return nodeList;
 }