From: Jean-Christophe Beaupré Date: Fri, 28 Nov 2014 17:10:19 +0000 (-0500) Subject: neo_doxygen: Document `Location`. X-Git-Tag: v0.6.11~2^2~2 X-Git-Url: http://nitlanguage.org neo_doxygen: Document `Location`. Signed-off-by: Jean-Christophe Beaupré --- diff --git a/contrib/neo_doxygen/src/model/location.nit b/contrib/neo_doxygen/src/model/location.nit index 8652577..f025a12 100644 --- a/contrib/neo_doxygen/src/model/location.nit +++ b/contrib/neo_doxygen/src/model/location.nit @@ -21,10 +21,19 @@ import neo4j class Location super Jsonable + # The file’s path. var path: nullable String = null is writable + + # The one-based index of the first line. var line_start: Int = 1 is writable + + # The one-based index of the last line. var line_end: Int = 1 is writable + + # The one-based column index of the first character. var column_start: Int = 1 is writable + + # The one-based column index of the last character. var column_end: Int = 1 is writable redef fun to_s: String do