()
| 83 | } |
| 84 | |
| 85 | func (e *mapExpr) String() string { |
| 86 | if e.expr == nil { |
| 87 | return fmt.Sprintf("map %s", e.keys) |
| 88 | } |
| 89 | return fmt.Sprintf("map %s %s", e.keys, e.expr) |
| 90 | } |
| 91 | |
| 92 | type nmapExpr struct { |
| 93 | keys string |
nothing calls this directly
no outgoing calls
no test coverage detected