fullTypeString returns the fully-qualified type string with entire package import path
(t types.Type)
| 464 | |
| 465 | // fullTypeString returns the fully-qualified type string with entire package import path |
| 466 | func (sym *symtab) fullTypeString(t types.Type) string { |
| 467 | return types.TypeString(t, nil) |
| 468 | } |
| 469 | |
| 470 | func (sym *symtab) symtype(t types.Type) *symbol { |
| 471 | tname := sym.fullTypeString(t) |
no outgoing calls
no test coverage detected