Exemple #1
0
 public Lexem(LexemType type, LexemLocation start, LexemLocation end, string value = null)
 {
     Type          = type;
     Value         = value;
     StartLocation = start;
     EndLocation   = end;
 }