ToDebugString gives the unadorned string representation of the Expr.
(e ast.Expr)
| 54 | |
| 55 | // ToDebugString gives the unadorned string representation of the Expr. |
| 56 | func ToDebugString(e ast.Expr) string { |
| 57 | return ToAdornedDebugString(e, emptyAdorner) |
| 58 | } |
| 59 | |
| 60 | // ToAdornedDebugString gives the adorned string representation of the Expr. |
| 61 | func ToAdornedDebugString(e ast.Expr, adorner Adorner) string { |