public virtual void CaseAUsing(AUsing node) { DefaultCase(node); }
public virtual void OutAUsing(AUsing node) { DefaultOut(node); }
public override void CaseAUsing(AUsing node) { InAUsing(node); if(node.GetNewline() != null) { node.GetNewline().Apply(this); } if(node.GetIdentifier() != null) { node.GetIdentifier().Apply(this); } if(node.GetKeywordUsing() != null) { node.GetKeywordUsing().Apply(this); } OutAUsing(node); }
public virtual void InAUsing(AUsing node) { DefaultIn(node); }
ArrayList New144() { ArrayList nodeList = new ArrayList(); ArrayList nodeArrayList3 = (ArrayList) Pop(); ArrayList nodeArrayList2 = (ArrayList) Pop(); ArrayList nodeArrayList1 = (ArrayList) Pop(); TKeywordUsing tkeywordusingNode2 = (TKeywordUsing)nodeArrayList1[0]; TIdentifier tidentifierNode3 = (TIdentifier)nodeArrayList2[0]; TNewline tnewlineNode4 = (TNewline)nodeArrayList3[0]; AUsing pusingNode1 = new AUsing ( tkeywordusingNode2, tidentifierNode3, tnewlineNode4 ); nodeList.Add(pusingNode1); return nodeList; }