(app *app, _ []string)
| 605 | } |
| 606 | |
| 607 | func (e *vmapExpr) eval(app *app, _ []string) { |
| 608 | if e.expr == nil { |
| 609 | delete(gOpts.vkeys, e.keys) |
| 610 | } else { |
| 611 | gOpts.vkeys[e.keys] = e.expr |
| 612 | } |
| 613 | } |
| 614 | |
| 615 | func (e *cmapExpr) eval(app *app, _ []string) { |
| 616 | if e.expr == nil { |
nothing calls this directly
no outgoing calls
no test coverage detected