Merge "Add some more docs about the range type"
This commit is contained in:
@@ -22,10 +22,26 @@
|
||||
/**
|
||||
* The CommentRange entity describes the range of an inline comment.
|
||||
* https://gerrit-review.googlesource.com/Documentation/rest-api-changes.html#comment-range
|
||||
*
|
||||
* The range includes all characters from the start position, specified by
|
||||
* start_line and start_character, to the end position, specified by end_line
|
||||
* and end_character. The start position is inclusive and the end position is
|
||||
* exclusive.
|
||||
*
|
||||
* So, a range over part of a line will have start_line equal to end_line;
|
||||
* however a range with end_line set to 5 and end_character equal to 0 will not
|
||||
* include any characters on line 5.
|
||||
*/
|
||||
export interface CommentRange {
|
||||
/** The start line number of the range. (1-based) */
|
||||
start_line: number;
|
||||
|
||||
/** The character position in the start line. (0-based) */
|
||||
start_character: number;
|
||||
|
||||
/** The end line number of the range. (1-based) */
|
||||
end_line: number;
|
||||
|
||||
/** The character position in the end line. (0-based) */
|
||||
end_character: number;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user