ObjectComp traverses that kind of node
(p ASTPass, node *ast.ObjectComp, ctx Context)
| 343 | |
| 344 | // ObjectComp traverses that kind of node |
| 345 | func (*Base) ObjectComp(p ASTPass, node *ast.ObjectComp, ctx Context) { |
| 346 | p.ObjectFields(p, &node.Fields, ctx) |
| 347 | p.ForSpec(p, &node.Spec, ctx) |
| 348 | p.Fodder(p, &node.CloseFodder, ctx) |
| 349 | } |
| 350 | |
| 351 | // Parens traverses that kind of node |
| 352 | func (*Base) Parens(p ASTPass, node *ast.Parens, ctx Context) { |
nothing calls this directly
no test coverage detected