go/ast.BasicLit.ValueEnd (field)
10 uses
go/ast (current package)
ast.go#L318: ValueEnd token.Pos // position immediately after the literal
ast.go#L538: if !x.ValueEnd.IsValid() {
ast.go#L544: return x.ValueEnd
import.go#L255: if lit.ValueEnd.IsValid() {
import.go#L256: lit.ValueEnd = pos + len
go/doc
example.go#L732: if lit.ValueEnd.IsValid() {
example.go#L733: lit.ValueEnd = pos + len
go/parser
parser.go#L729: tag = &ast.BasicLit{ValuePos: p.pos, ValueEnd: p.stringEnd, Kind: p.tok, Value: p.lit}
parser.go#L1487: x := &ast.BasicLit{ValuePos: p.pos, ValueEnd: end, Kind: p.tok, Value: p.lit}
parser.go#L2543: Path: &ast.BasicLit{ValuePos: pos, ValueEnd: end, Kind: token.STRING, Value: path},