Debug dumps the attribute to STDOUT in a goa developer friendly way.
(prefix string)
| 661 | |
| 662 | // Debug dumps the attribute to STDOUT in a goa developer friendly way. |
| 663 | func (a *AttributeExpr) Debug(prefix string) { a.debug(prefix, make(map[*AttributeExpr]int), 0) } |
| 664 | func (a *AttributeExpr) debug(prefix string, seen map[*AttributeExpr]int, indent int) { |
| 665 | tab := " " |
| 666 | tabs := strings.Repeat(tab, indent) |