Esempio n. 1
0
 public GNode(GNodeTypeEnum p_type, int p_lineNumber, int p_index)
 {
     init();
     this.type = p_type;
     this.programLineList.Add(p_lineNumber);
     this.index = p_index;
 }
Esempio n. 2
0
 public GNode(GNodeTypeEnum p_type, int p_index)
 {
     init();
     this.type  = p_type;
     this.index = p_index;
 }