(label string)
| 384 | } |
| 385 | |
| 386 | func (b *codeBlock) GetLabel(label string) *gotoLabelDesc { |
| 387 | if v, ok := b.labels[label]; ok { |
| 388 | return v |
| 389 | } |
| 390 | return nil |
| 391 | } |
| 392 | |
| 393 | func (b *codeBlock) LocalVarsCount() int { |
| 394 | count := 0 |
no outgoing calls
no test coverage detected