()
| 71 | } |
| 72 | |
| 73 | func (e *setLocalExpr) String() string { |
| 74 | if e.val == "" { |
| 75 | return fmt.Sprintf("setlocal %s %s", e.path, e.opt) |
| 76 | } |
| 77 | return fmt.Sprintf("setlocal %s %s %s", e.path, e.opt, e.val) |
| 78 | } |
| 79 | |
| 80 | type mapExpr struct { |
| 81 | keys string |
nothing calls this directly
no outgoing calls
no test coverage detected