Lines Matching defs:Int64
667 type Int64 struct { struct
668 LiteralPos scanner.Position
669 Value int64
670 Token string
673 func (x *Int64) Pos() scanner.Position { return x.LiteralPos }
674 func (x *Int64) End() scanner.Position { return endPos(x.LiteralPos, len(x.Token)) }
676 func (x *Int64) Copy() Expression {
681 func (x *Int64) Eval(scope *Scope) (Expression, error) {
685 func (x *Int64) PrintfInto(value string) error {
689 func (x *Int64) MarkReferencedVariables(scope *Scope) {
692 func (x *Int64) String() string {
696 func (x *Int64) Type() Type {