Exemplo n.º 1
0
 public TextFileMark(TextFileMark mark)
 {
     this.line = mark.line;
     this.column = mark.column;
     this.index = mark.index;
 }
Exemplo n.º 2
0
 public TextFileRegion(TextFileMark start, TextFileMark end)
 {
     Start = start;
     End = end;
 }