(id int, name string, pc, line, n int)
| 148 | } |
| 149 | |
| 150 | func newLabelDesc(id int, name string, pc, line, n int) *gotoLabelDesc { |
| 151 | return &gotoLabelDesc{ |
| 152 | Id: id, |
| 153 | Name: name, |
| 154 | Pc: pc, |
| 155 | Line: line, |
| 156 | NumActiveLocalVars: n, |
| 157 | } |
| 158 | } |
| 159 | |
| 160 | func (l *gotoLabelDesc) SetNumActiveLocalVars(n int) { |
| 161 | l.NumActiveLocalVars = n |
no outgoing calls
no test coverage detected
searching dependent graphs…