()
| 131 | } |
| 132 | |
| 133 | func (e *cmdExpr) String() string { |
| 134 | if e.expr == nil { |
| 135 | return fmt.Sprintf("cmd %s", e.name) |
| 136 | } |
| 137 | return fmt.Sprintf("cmd %s %s", e.name, e.expr) |
| 138 | } |
| 139 | |
| 140 | type callExpr struct { |
| 141 | name string |
nothing calls this directly
no outgoing calls
no test coverage detected