Lines Matching refs:Walker
211 func (w *Walker) export(pkg *types.Package) {
328 type Walker struct {
337 func NewWalker(context *build.Context, root string) *Walker {
338 return &Walker{
346 func (w *Walker) Features() (fs []string) {
356 func (w *Walker) parseFile(dir, file string) (*ast.File, error) {
417 // Importing is a sentinel taking the place in Walker.imported
421 func (w *Walker) Import(name string) (*types.Package, error) {
510 func (w *Walker) pushScope(name string) (popFunc func()) {
533 func (w *Walker) writeType(buf *bytes.Buffer, typ types.Type) {
632 func (w *Walker) writeSignature(buf *bytes.Buffer, sig *types.Signature) {
646 func (w *Walker) writeParams(buf *bytes.Buffer, t *types.Tuple, variadic bool) {
662 func (w *Walker
668 func (w *Walker) signatureString(sig *types.Signature) string {
674 func (w *Walker) emitObj(obj types.Object) {
690 func (w *Walker) emitType(obj *types.TypeName) {
729 func (w *Walker) emitStructType(name string, typ *types.Struct) {
748 func (w *Walker) emitIfaceType(name string, typ *types.Interface) {
790 func (w *Walker) emitFunc(f *types.Func) {
798 func (w *Walker) emitMethod(m *types.Selection) {
814 func (w *Walker) emitf(format string, args ...interface{}) {