5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-09-20 11:22:31 +00:00
matterbridge/vendor/github.com/d5/tengo/v2/parser/file.go

30 lines
575 B
Go
Raw Normal View History

2020-01-09 20:52:19 +00:00
package parser
import (
"strings"
)
// File represents a file unit.
type File struct {
2020-01-09 20:52:19 +00:00
InputFile *SourceFile
Stmts []Stmt
}
// Pos returns the position of first character belonging to the node.
2020-01-09 20:52:19 +00:00
func (n *File) Pos() Pos {
return Pos(n.InputFile.Base)
}
// End returns the position of first character immediately after the node.
2020-01-09 20:52:19 +00:00
func (n *File) End() Pos {
return Pos(n.InputFile.Base + n.InputFile.Size)
}
func (n *File) String() string {
var stmts []string
for _, e := range n.Stmts {
stmts = append(stmts, e.String())
}
return strings.Join(stmts, "; ")
}