google.golang.org/protobuf/reflect/protoreflect.SourceLocation.StartLine (field)
9 uses
google.golang.org/protobuf/reflect/protoreflect (current package)
source.go#L43: StartLine, StartColumn int
google.golang.org/protobuf/reflect/protodesc
desc.go#L155: l.StartLine, l.StartColumn, l.EndLine, l.EndColumn = int(s[0]), int(s[1]), int(s[0]), int(s[2])
desc.go#L157: l.StartLine, l.StartColumn, l.EndLine, l.EndColumn = int(s[0]), int(s[1]), int(s[2]), int(s[3])
desc.go#L163: if false && (l.EndLine < l.StartLine || l.StartLine < 0 || l.StartColumn < 0 || l.EndColumn < 0 ||
desc.go#L164: (l.StartLine == l.EndLine && l.EndColumn <= l.StartColumn)) {
proto.go#L43: if loc.StartLine == loc.EndLine {
proto.go#L44: l.Span = []int32{int32(loc.StartLine), int32(loc.StartColumn), int32(loc.EndColumn)}
proto.go#L46: l.Span = []int32{int32(loc.StartLine), int32(loc.StartColumn), int32(loc.EndLine), int32(loc.EndColumn)}