()
| 119 | } |
| 120 | |
| 121 | func (e *cmapExpr) String() string { |
| 122 | if e.expr == nil { |
| 123 | return fmt.Sprintf("cmap %s", e.key) |
| 124 | } |
| 125 | return fmt.Sprintf("cmap %s %s", e.key, e.expr) |
| 126 | } |
| 127 | |
| 128 | type cmdExpr struct { |
| 129 | name string |
nothing calls this directly
no outgoing calls
no test coverage detected