Mark

Position in a YAML stream, used for error messages.

Constructors

this
this(string name, uint line, uint column)

Construct a Mark with specified line and column in the file.

Members

Functions

toString
string toString()

Get a string representation of the mark.

Properties

column
ushort column [@property getter]

Get a column number.

line
ushort line [@property getter]

Get a line number.

name
string name [@property getter]

Get a file name.

Variables

column_
ushort column_;

Column number.

line_
ushort line_;

Line number.

name_
string name_;

File name.

Meta