(a int)
| 335 | func (f *function) encodeAsBx(op opCode, a, sbx int) int { return f.encodeABx(op, a, sbx+maxArgSBx) } |
| 336 | |
| 337 | func (f *function) encodeExtraArg(a int) int { |
| 338 | f.assert(a <= maxArgAx) |
| 339 | return f.encode(createAx(opExtraArg, a)) |
| 340 | } |
| 341 | |
| 342 | func (f *function) EncodeConstant(r, constant int) int { |
| 343 | if constant <= maxArgBx { |
no test coverage detected