(expr ast.Expr)
| 448 | } |
| 449 | |
| 450 | func (un *unparser) visitMaybeMacroCall(expr ast.Expr) (bool, error) { |
| 451 | call, found := un.info.GetMacroCall(expr.ID()) |
| 452 | if !found { |
| 453 | return false, nil |
| 454 | } |
| 455 | return true, un.visit(call) |
| 456 | } |
| 457 | |
| 458 | func (un *unparser) visitMaybeNested(expr ast.Expr, nested bool) error { |
| 459 | if nested { |
no test coverage detected