Adorner returns debug metadata that will be tacked on to the string representation of an expression.
| 30 | // Adorner returns debug metadata that will be tacked on to the string |
| 31 | // representation of an expression. |
| 32 | type Adorner interface { |
| 33 | // GetMetadata for the input context. |
| 34 | GetMetadata(ctx any) string |
| 35 | } |
| 36 | |
| 37 | // Writer manages writing expressions to an internal string. |
| 38 | type Writer interface { |
no outgoing calls
no test coverage detected