Searched defs:Int64 (Results 1 – 2 of 2) sorted by relevance
667 type Int64 struct { struct668 LiteralPos scanner.Position669 Value int64670 Token string673 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) {[all …]
520 Int64 = Type(parser.Int64Type) var