xgo/ast/func_lit.go

23 lines
365 B
Go
Raw Normal View History

2019-01-09 10:17:42 +03:00
package ast
import "github.com/d5/tengo/source"
2019-01-09 10:17:42 +03:00
type FuncLit struct {
Type *FuncType
Body *BlockStmt
}
func (e *FuncLit) exprNode() {}
func (e *FuncLit) Pos() source.Pos {
2019-01-09 10:17:42 +03:00
return e.Type.Pos()
}
func (e *FuncLit) End() source.Pos {
2019-01-09 10:17:42 +03:00
return e.Body.End()
}
func (e *FuncLit) String() string {
return "func" + e.Type.Params.String() + " " + e.Body.String()
}