Beispiel #1
0
//			public CharPtr(string str)
//			{
//				this.chars = (str + '\0').ToCharArray();
//				this.index = 0;
//			}

            public SymbolPtr(SymbolPtr ptr)
            {
                this.chars = ptr.chars;
                this.index = ptr.index;
            }
Beispiel #2
0
 public SymbolPtr(SymbolPtr ptr, int index)
 {
     this.chars = ptr.chars;
     this.index = index;
 }
Beispiel #3
0
 public List(SymbolPtr s, List next)
 {
     this.s    = s;
     this.next = next;
 }