markdown2 :: MdLocation :: column_end=
Stopping column number (starting from 1).markdown2 :: MdLocation :: column_start
Starting column number (starting from 1).markdown2 :: MdLocation :: column_start=
Starting column number (starting from 1).markdown2 :: MdLocation :: defaultinit
markdown2 :: MdLocation :: line_end=
Stopping line number (starting from 1).markdown2 :: MdLocation :: line_start=
Starting line number (starting from 1).markdown2 $ MdLocation :: SELF
Type of this instance, automatically specialized in every classcore :: Object :: class_factory
Implementation used byget_class
to create the specific class.
markdown2 :: MdLocation :: column_end=
Stopping column number (starting from 1).markdown2 :: MdLocation :: column_start
Starting column number (starting from 1).markdown2 :: MdLocation :: column_start=
Starting column number (starting from 1).markdown2 :: MdLocation :: defaultinit
core :: Object :: defaultinit
core :: Object :: is_same_instance
Return true ifself
and other
are the same instance (i.e. same identity).
core :: Object :: is_same_serialized
Isself
the same as other
in a serialization context?
core :: Object :: is_same_type
Return true ifself
and other
have the same dynamic type.
markdown2 :: MdLocation :: line_end=
Stopping line number (starting from 1).markdown2 :: MdLocation :: line_start=
Starting line number (starting from 1).core :: Object :: output_class_name
Display class name on stdout (debug only).
# MdNode location in the Markdown input
class MdLocation
# Starting line number (starting from 1).
var line_start: Int is writable
# Starting column number (starting from 1).
var column_start: Int is writable
# Stopping line number (starting from 1).
var line_end: Int is writable
# Stopping column number (starting from 1).
var column_end: Int is writable
redef fun to_s do return "{line_start},{column_start}--{line_end},{column_end}"
end
lib/markdown2/markdown_ast.nit:471,1--487,3