(OutputStream out, BHeader header, LFunction object)
| 295 | } |
| 296 | |
| 297 | @Override |
| 298 | public void write(OutputStream out, BHeader header, LFunction object) throws IOException { |
| 299 | header.integer.write(out, header, new BInteger(object.linedefined)); |
| 300 | header.integer.write(out, header, new BInteger(object.lastlinedefined)); |
| 301 | out.write(object.numParams); |
| 302 | out.write(object.vararg); |
| 303 | out.write(object.maximumStackSize); |
| 304 | write_code(out, header, object); |
| 305 | write_constants(out, header, object); |
| 306 | write_upvalues(out, header, object); |
| 307 | header.string.write(out, header, object.name); |
| 308 | write_debug(out, header, object); |
| 309 | } |
| 310 | |
| 311 | } |
| 312 |
nothing calls this directly
no test coverage detected