(placeholder int)
| 205 | } |
| 206 | |
| 207 | func (c *compiler) patchJump(placeholder int) { |
| 208 | offset := len(c.bytecode) - placeholder |
| 209 | c.arguments[placeholder-1] = offset |
| 210 | } |
| 211 | |
| 212 | func (c *compiler) calcBackwardJump(to int) int { |
| 213 | return len(c.bytecode) + 1 - to |
no outgoing calls
no test coverage detected