YAMP.ParseEngine.SetOffset C# (CSharp) Method

SetOffset() private method

Sets an offset of the parser, i.e. sets line and column to (different) values.
private SetOffset ( Int32 line, Int32 column ) : ParseEngine
line System.Int32 The new line value.
column System.Int32 The new column value.
return ParseEngine
        internal ParseEngine SetOffset(Int32 line, Int32 column)
        {
            _currentLine = line;
            _currentColumn = column;
            return this;
        }