(base, n int, isNumeric bool)
| 1115 | } |
| 1116 | |
| 1117 | func (f *function) OpenForBody(base, n int, isNumeric bool) (prep int) { |
| 1118 | if isNumeric { |
| 1119 | prep = f.encodeAsBx(opForPrep, base, noJump) |
| 1120 | } else { |
| 1121 | prep = f.Jump() |
| 1122 | } |
| 1123 | f.EnterBlock(false) |
| 1124 | f.AdjustLocalVariables(n) |
| 1125 | f.ReserveRegisters(n) |
| 1126 | return |
| 1127 | } |
| 1128 | |
| 1129 | func (f *function) CloseForBody(prep, base, line, n int, isNumeric bool) { |
| 1130 | f.LeaveBlock() |
no test coverage detected