ImportStr traverses that kind of node
(p ASTPass, node *ast.ImportStr, ctx Context)
| 279 | |
| 280 | // ImportStr traverses that kind of node |
| 281 | func (*Base) ImportStr(p ASTPass, node *ast.ImportStr, ctx Context) { |
| 282 | p.Fodder(p, &node.File.Fodder, ctx) |
| 283 | p.LiteralString(p, node.File, ctx) |
| 284 | } |
| 285 | |
| 286 | // ImportBin traverses that kind of node |
| 287 | func (*Base) ImportBin(p ASTPass, node *ast.ImportBin, ctx Context) { |
nothing calls this directly
no test coverage detected