neo_doxygen: Document `Location`.
authorJean-Christophe Beaupré <jcbrinfo@users.noreply.github.com>
Fri, 28 Nov 2014 17:10:19 +0000 (12:10 -0500)
committerJean-Christophe Beaupré <jcbrinfo@users.noreply.github.com>
Fri, 28 Nov 2014 19:07:02 +0000 (14:07 -0500)
Signed-off-by: Jean-Christophe Beaupré <jcbrinfo@users.noreply.github.com>

contrib/neo_doxygen/src/model/location.nit

index 8652577..f025a12 100644 (file)
@@ -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