Beispiel #1
0
 ArrayList New10()
 {
     ArrayList nodeList = new ArrayList();
     ArrayList nodeArrayList2 = (ArrayList) Pop();
     ArrayList nodeArrayList1 = (ArrayList) Pop();
     TypedList listNode3 = new TypedList();
     TypedList listNode1 = (TypedList)nodeArrayList1[0];
     PSexp psexpNode2 = (PSexp)nodeArrayList2[0];
     if ( listNode1 != null )
     {
     listNode3.AddAll(listNode1);
     }
     if ( psexpNode2 != null )
     {
     listNode3.Add(psexpNode2);
     }
     nodeList.Add(listNode3);
     return nodeList;
 }
Beispiel #2
0
 ArrayList New2()
 {
     ArrayList nodeList = new ArrayList();
     ArrayList nodeArrayList3 = (ArrayList) Pop();
     ArrayList nodeArrayList2 = (ArrayList) Pop();
     ArrayList nodeArrayList1 = (ArrayList) Pop();
     TypedList listNode4 = new TypedList();
     TTParenopen ttparenopenNode2 = (TTParenopen)nodeArrayList1[0];
     TypedList listNode3 = (TypedList)nodeArrayList2[0];
     if ( listNode3 != null )
     {
     listNode4.AddAll(listNode3);
     }
     AListSexp psexpNode1 = new AListSexp (
       ttparenopenNode2,
       listNode4
     );
     nodeList.Add(psexpNode1);
     return nodeList;
 }
Beispiel #3
0
 ArrayList New0()
 {
     ArrayList nodeList = new ArrayList();
     ArrayList nodeArrayList1 = (ArrayList) Pop();
     TypedList listNode3 = new TypedList();
     TypedList listNode2 = (TypedList)nodeArrayList1[0];
     if ( listNode2 != null )
     {
     listNode3.AddAll(listNode2);
     }
     ADocument pdocumentNode1 = new ADocument (
       listNode3
     );
     nodeList.Add(pdocumentNode1);
     return nodeList;
 }