Lines Matching defs:File
4 // you may not use this file except in compliance with the License.
40 type File struct {
46 func (f *File) Pos() scanner.Position {
55 func (f *File) End() scanner.Position {
62 func parse(p *parser) (file *File, errs []error) {
78 return &File{
86 func ParseAndEval(filename string, r io.Reader, scope *Scope) (file *File, errs []error) {
94 func Parse(filename string, r io.Reader, scope *Scope) (file *File, errs []error) {