(n int)
| 146 | } |
| 147 | |
| 148 | func (f *function) AdjustLocalVariables(n int) { |
| 149 | for f.activeVariableCount += n; n != 0; n-- { |
| 150 | f.LocalVariable(f.activeVariableCount - n).startPC = pc(len(f.f.code)) |
| 151 | } |
| 152 | } |
| 153 | |
| 154 | func (f *function) removeLocalVariables(level int) { |
| 155 | for i := level; i < f.activeVariableCount; i++ { |
no test coverage detected