Lines Matching refs:LiteralPos
335 LiteralPos scanner.Position member
339 func (x *String) Pos() scanner.Position { return x.LiteralPos }
340 func (x *String) End() scanner.Position { return endPos(x.LiteralPos, len(x.Value)+2) }
352 return fmt.Sprintf("%q@%s", x.Value, x.LiteralPos)
360 LiteralPos scanner.Position member
365 func (x *Int64) Pos() scanner.Position { return x.LiteralPos }
366 func (x *Int64) End() scanner.Position { return endPos(x.LiteralPos, len(x.Token)) }
378 return fmt.Sprintf("%q@%s", x.Value, x.LiteralPos)
386 LiteralPos scanner.Position member
391 func (x *Bool) Pos() scanner.Position { return x.LiteralPos }
392 func (x *Bool) End() scanner.Position { return endPos(x.LiteralPos, len(x.Token)) }
404 return fmt.Sprintf("%t@%s", x.Value, x.LiteralPos)