(app *app, _ []string)
| 597 | } |
| 598 | |
| 599 | func (e *nmapExpr) eval(app *app, _ []string) { |
| 600 | if e.expr == nil { |
| 601 | delete(gOpts.nkeys, e.keys) |
| 602 | } else { |
| 603 | gOpts.nkeys[e.keys] = e.expr |
| 604 | } |
| 605 | } |
| 606 | |
| 607 | func (e *vmapExpr) eval(app *app, _ []string) { |
| 608 | if e.expr == nil { |
nothing calls this directly
no outgoing calls
no test coverage detected