Пример #1
0
 /// <summary>
 /// Create a new sequence point.
 /// </summary>
 /// <param name="offset"></param>
 /// <param name="doc">The source file.</param>
 /// <param name="line">The line the point begins on.</param>
 /// <param name="col">The column the point begins with.</param>
 /// <param name="endLine">The line the point ends on.</param>
 /// <param name="endCol">The column the point ends with.</param>
 internal PDBSequencePoint(int offset, PDBDocument doc, int line, int col, int endLine, int endCol)
 {
     _offset = offset;
     _document = doc;
     _line = line;
     _column = col;
     _endLine = endLine;
     _endColumn = endCol;
 }