span property

  1. @TagNumber(2)
List<int> span

Always has exactly three or four elements: start line, start column, end line (optional, otherwise assumed same as start line), end column. These are packed into a single field for efficiency. Note that line and column numbers are zero-based -- typically you will want to add 1 to each before displaying to a user.

Implementation

@$pb.TagNumber(2)
$core.List<$core.int> get span => $_getList(1);