ExprDebugString generates a multi-line debug string with one node per line in Go format.
(expr Expr)
| 1454 | // ExprDebugString generates a multi-line debug string with one node per line in |
| 1455 | // Go format. |
| 1456 | func ExprDebugString(expr Expr) string { |
| 1457 | v := debugVisitor{} |
| 1458 | WalkExprConst(&v, expr) |
| 1459 | return v.buf.String() |
| 1460 | } |
| 1461 | |
| 1462 | // StmtDebugString generates multi-line debug strings in Go format for the |
| 1463 | // expressions that are part of the given statement. |
nothing calls this directly
no test coverage detected
searching dependent graphs…