2020-01-09 20:52:19 +00:00
|
|
|
package parser
|
2019-02-23 15:39:44 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"strings"
|
|
|
|
)
|
|
|
|
|
|
|
|
// File represents a file unit.
|
|
|
|
type File struct {
|
2020-01-09 20:52:19 +00:00
|
|
|
InputFile *SourceFile
|
2019-02-23 15:39:44 +00:00
|
|
|
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)
|
2019-02-23 15:39:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// 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)
|
2019-02-23 15:39:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (n *File) String() string {
|
|
|
|
var stmts []string
|
|
|
|
for _, e := range n.Stmts {
|
|
|
|
stmts = append(stmts, e.String())
|
|
|
|
}
|
|
|
|
return strings.Join(stmts, "; ")
|
|
|
|
}
|