mirror of
https://github.com/golang/go
synced 2024-11-05 17:16:10 -07:00
2ca2bfc172
Fix output of packages with multiple files. Remove extra output when filter is requested. Fixes golang/go#7115. R=bradfitz, adg CC=golang-codereviews https://golang.org/cl/52750044
40 lines
1.0 KiB
Go
40 lines
1.0 KiB
Go
// Copyright 2011 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
// This file contains support functions for parsing .go files
|
|
// accessed via godoc's file system fs.
|
|
|
|
package godoc
|
|
|
|
import (
|
|
"go/ast"
|
|
"go/parser"
|
|
"go/token"
|
|
pathpkg "path"
|
|
|
|
"code.google.com/p/go.tools/godoc/vfs"
|
|
)
|
|
|
|
func (c *Corpus) parseFile(fset *token.FileSet, filename string, mode parser.Mode) (*ast.File, error) {
|
|
src, err := vfs.ReadFile(c.fs, filename)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return parser.ParseFile(fset, filename, src, mode)
|
|
}
|
|
|
|
func (c *Corpus) parseFiles(fset *token.FileSet, relpath string, abspath string, localnames []string) (map[string]*ast.File, error) {
|
|
files := make(map[string]*ast.File)
|
|
for _, f := range localnames {
|
|
absname := pathpkg.Join(abspath, f)
|
|
file, err := c.parseFile(fset, absname, parser.ParseComments)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
files[pathpkg.Join(relpath, f)] = file
|
|
}
|
|
|
|
return files, nil
|
|
}
|