Esempio n. 1
0
 public tokenObject(tokenType type, string content, int column, int row)
 {
     _type    = type;
     _content = new tokenContent();
     _content.setValue(content);
     _coordinates = new tokenCoordinates(column, row);
 }
Esempio n. 2
0
 public tokenObject(tokenType type, string content, tokenCoordinates coordinates)
 {
     _type    = type;
     _content = new tokenContent();
     _content.setValue(content);
     _coordinates = coordinates;
 }