@@ -369,25 +369,25 @@ class Location extends @location {
369369 exists ( Module m | locations_ast ( this , m , _, _, _, _) | result = m .getPath ( ) )
370370 }
371371
372- /** Gets the start line of this location */
372+ /** Gets the 1-based line number (inclusive) where this location starts. */
373373 int getStartLine ( ) {
374374 locations_default ( this , _, result , _, _, _) or
375375 locations_ast ( this , _, result , _, _, _)
376376 }
377377
378- /** Gets the start column of this location */
378+ /** Gets the 1-based column number (inclusive) where this location starts. */
379379 int getStartColumn ( ) {
380380 locations_default ( this , _, _, result , _, _) or
381381 locations_ast ( this , _, _, result , _, _)
382382 }
383383
384- /** Gets the end line of this location */
384+ /** Gets the 1-based line number (inclusive) where this location ends. */
385385 int getEndLine ( ) {
386386 locations_default ( this , _, _, _, result , _) or
387387 locations_ast ( this , _, _, _, result , _)
388388 }
389389
390- /** Gets the end column of this location */
390+ /** Gets the 1-based column number (inclusive) where this location ends. */
391391 int getEndColumn ( ) {
392392 locations_default ( this , _, _, _, _, result ) or
393393 locations_ast ( this , _, _, _, _, result )
0 commit comments