()
| 95 | } |
| 96 | |
| 97 | func (e *nmapExpr) String() string { |
| 98 | if e.expr == nil { |
| 99 | return fmt.Sprintf("nmap %s", e.keys) |
| 100 | } |
| 101 | return fmt.Sprintf("nmap %s %s", e.keys, e.expr) |
| 102 | } |
| 103 | |
| 104 | type vmapExpr struct { |
| 105 | keys string |
nothing calls this directly
no outgoing calls
no test coverage detected