Beispiel #1
0
 ArrayList New9()
 {
     ArrayList nodeList = new ArrayList();
     ArrayList nodeArrayList1 = (ArrayList) Pop();
     TypedList listNode2 = new TypedList();
     PSexp psexpNode1 = (PSexp)nodeArrayList1[0];
     if ( psexpNode1 != null )
     {
     listNode2.Add(psexpNode1);
     }
     nodeList.Add(listNode2);
     return nodeList;
 }
Beispiel #2
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;
 }