golang.org/x/mod/modfile.Position.LineRune (field)

14 uses

	golang.org/x/mod/modfile (current package)
		read.go#L22: 	LineRune int // rune in line (starting at 1)
		read.go#L32: 		p.LineRune = 1
		read.go#L34: 	p.LineRune += utf8.RuneCountInString(s)
		read.go#L346: 		pos:       Position{Line: 1, LineRune: 1, Byte: 0},
		read.go#L433: 		in.pos.LineRune = 1
		read.go#L435: 		in.pos.LineRune++
		read.go#L688: 			fmt.Fprintf(os.Stderr, "LINE %q :%d:%d #%d\n", c.Token, c.Start.Line, c.Start.LineRune, c.Start.Byte)
		read.go#L696: 			fmt.Fprintf(os.Stderr, "pre %T :%d:%d #%d\n", x, start.Line, start.LineRune, start.Byte)
		read.go#L713: 			fmt.Fprintf(os.Stderr, "SUFFIX %q :%d:%d #%d\n", c.Token, c.Start.Line, c.Start.LineRune, c.Start.Byte)
		read.go#L723: 			fmt.Fprintf(os.Stderr, "post %T :%d:%d #%d :%d:%d #%d\n", x, start.Line, start.LineRune, start.Byte, end.Line, end.LineRune, end.Byte)
		read.go#L874: 			in.Error(fmt.Sprintf("syntax error (unterminated block started at %s:%d:%d)", in.filename, x.Start.Line, x.Start.LineRune))
		rule.go#L599: 	if e.Pos.LineRune > 1 {
		rule.go#L602: 		pos = fmt.Sprintf("%s:%d:%d: ", e.Filename, e.Pos.Line, e.Pos.LineRune)