| 160 | } |
| 161 | |
| 162 | type column struct { |
| 163 | name string |
| 164 | typ ColumnType |
| 165 | hidden bool |
| 166 | formulae string |
| 167 | expr expr.Node |
| 168 | serie serie.Serie |
| 169 | } |
| 170 | |
| 171 | func (c *column) Name() string { |
| 172 | return c.name |
nothing calls this directly
no outgoing calls
no test coverage detected