예제 #1
0
 public override void CaseAStringOperand(AStringOperand node)
 {
     InAStringOperand(node);
     if (node.GetString() != null)
     {
         node.GetString().Apply(this);
     }
     OutAStringOperand(node);
 }
예제 #2
0
        ArrayList New18()
        {
            ArrayList      nodeList       = new ArrayList();
            ArrayList      nodeArrayList1 = (ArrayList)Pop();
            TString        tstringNode2   = (TString)nodeArrayList1[0];
            AStringOperand poperandNode1  = new AStringOperand(
                tstringNode2
                );

            nodeList.Add(poperandNode1);
            return(nodeList);
        }
예제 #3
0
 public virtual void OutAStringOperand(AStringOperand node)
 {
     DefaultOut(node);
 }
예제 #4
0
 public virtual void InAStringOperand(AStringOperand node)
 {
     DefaultIn(node);
 }
예제 #5
0
 public virtual void CaseAStringOperand(AStringOperand node)
 {
     DefaultCase(node);
 }
예제 #6
0
 public override void OutAStringOperand(AStringOperand node)
 {
     _output.WriteLine("\tldstr " + node.GetString().Text);
 }