Home
last modified time | relevance | path

Searched defs:Int64 (Results 1 – 2 of 2) sorted by relevance

/build/blueprint/parser/
Dast.go667 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) {
[all …]
/build/blueprint/bpmodify/
Dbpmodify.go520 Int64 = Type(parser.Int64Type) var