Const
| 460 | // Const |
| 461 | |
| 462 | type Const struct { |
| 463 | pkg *Package |
| 464 | sym *symbol |
| 465 | obj *types.Const |
| 466 | id string |
| 467 | doc string |
| 468 | val string |
| 469 | } |
| 470 | |
| 471 | func newConst(p *Package, o *types.Const) (*Const, error) { |
| 472 | pkg := o.Pkg() |
nothing calls this directly
no outgoing calls
no test coverage detected