Var
| 547 | // Var |
| 548 | |
| 549 | type Var struct { |
| 550 | pkg *Package |
| 551 | sym *symbol // symbol associated with var's type |
| 552 | id string |
| 553 | doc string |
| 554 | name string |
| 555 | } |
| 556 | |
| 557 | func (v *Var) Name() string { |
| 558 | return v.name |
nothing calls this directly
no outgoing calls
no test coverage detected