Skip to content
This repository was archived by the owner on Jan 5, 2023. It is now read-only.

Commit b4c5692

Browse files
authored
Merge pull request #248 from max-schaefer/location-doc
Port Location qldoc update.
2 parents 47a8586 + 842860d commit b4c5692

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

ql/src/semmle/go/Locations.qll

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,16 @@ class Location extends @location {
1212
/** Gets the file for this location. */
1313
File getFile() { locations_default(this, result, _, _, _, _) }
1414

15-
/** Gets the start line of this location. */
15+
/** Gets the 1-based line number (inclusive) where this location starts. */
1616
int getStartLine() { locations_default(this, _, result, _, _, _) }
1717

18-
/** Gets the start column of this location. */
18+
/** Gets the 1-based column number (inclusive) where this location starts. */
1919
int getStartColumn() { locations_default(this, _, _, result, _, _) }
2020

21-
/** Gets the end line of this location. */
21+
/** Gets the 1-based line number (inclusive) where this location ends. */
2222
int getEndLine() { locations_default(this, _, _, _, result, _) }
2323

24-
/** Gets the end column of this location. */
24+
/** Gets the 1-based column number (inclusive) where this location ends. */
2525
int getEndColumn() { locations_default(this, _, _, _, _, result) }
2626

2727
/** Gets the number of lines covered by this location. */

0 commit comments

Comments
 (0)