(offset int)
| 309 | } |
| 310 | |
| 311 | func newVarNamePool(offset int) *varNamePool { |
| 312 | return &varNamePool{make([]string, 0, 16), offset} |
| 313 | } |
| 314 | |
| 315 | func (vp *varNamePool) Names() []string { |
| 316 | return vp.names |
no outgoing calls
no test coverage detected
searching dependent graphs…