コード例 #1
0
ファイル: analysis.cs プロジェクト: JamesJustinHarrell/niviok
 public virtual void OutABDeclarefirst(ABDeclarefirst node)
 {
     DefaultOut(node);
 }
コード例 #2
0
ファイル: analysis.cs プロジェクト: JamesJustinHarrell/niviok
 public virtual void InABDeclarefirst(ABDeclarefirst node)
 {
     DefaultIn(node);
 }
コード例 #3
0
ファイル: analysis.cs プロジェクト: JamesJustinHarrell/niviok
 public override void CaseABDeclarefirst(ABDeclarefirst node)
 {
     InABDeclarefirst(node);
     if(node.GetFunctiondeclaration() != null)
     {
     node.GetFunctiondeclaration().Apply(this);
     }
     OutABDeclarefirst(node);
 }
コード例 #4
0
ファイル: analysis.cs プロジェクト: JamesJustinHarrell/niviok
 public virtual void CaseABDeclarefirst(ABDeclarefirst node)
 {
     DefaultCase(node);
 }
コード例 #5
0
ファイル: parser.cs プロジェクト: JamesJustinHarrell/niviok
 ArrayList New87()
 {
     ArrayList nodeList = new ArrayList();
     ArrayList nodeArrayList1 = (ArrayList) Pop();
     PFunctiondeclaration pfunctiondeclarationNode2 = (PFunctiondeclaration)nodeArrayList1[0];
     ABDeclarefirst pdeclarefirstNode1 = new ABDeclarefirst (
       pfunctiondeclarationNode2
     );
     nodeList.Add(pdeclarefirstNode1);
     return nodeList;
 }