parser_base :: Location :: defaultinit
# Information about the location of an entity in a source document
class Location
serialize
# Line in which the element is described
var line: Int
# Offset in the line at which the element is positioned
var offset: Int
redef fun to_s do return "line {line}, position {offset}"
end
lib/parser_base/parser_base.nit:117,1--127,3