(app *app, _ []string)
| 613 | } |
| 614 | |
| 615 | func (e *cmapExpr) eval(app *app, _ []string) { |
| 616 | if e.expr == nil { |
| 617 | delete(gOpts.cmdkeys, e.key) |
| 618 | } else { |
| 619 | gOpts.cmdkeys[e.key] = e.expr |
| 620 | } |
| 621 | } |
| 622 | |
| 623 | func (e *cmdExpr) eval(app *app, _ []string) { |
| 624 | if e.expr == nil { |
nothing calls this directly
no outgoing calls
no test coverage detected