xgo/ast/int_lit.go
2019-01-11 01:16:34 -08:00

23 lines
365 B
Go

package ast
import "github.com/d5/tengo/source"
type IntLit struct {
Value int64
ValuePos source.Pos
Literal string
}
func (e *IntLit) exprNode() {}
func (e *IntLit) Pos() source.Pos {
return e.ValuePos
}
func (e *IntLit) End() source.Pos {
return source.Pos(int(e.ValuePos) + len(e.Literal))
}
func (e *IntLit) String() string {
return e.Literal
}