| 204 | } |
| 205 | |
| 206 | type VarDecl struct { |
| 207 | P position.Position |
| 208 | Name string |
| 209 | Hidden bool |
| 210 | Keys []string |
| 211 | Limit int64 |
| 212 | Buckets []float64 |
| 213 | Kind metrics.Kind |
| 214 | ExportedName string |
| 215 | Symbol *symbol.Symbol |
| 216 | } |
| 217 | |
| 218 | func (n *VarDecl) Pos() *position.Position { |
| 219 | return &n.P |
nothing calls this directly
no outgoing calls
no test coverage detected