MCPcopy Index your code
hub / github.com/Hiro420/NikkeTools / write

Method write

UnLuac/src/unluac/parse/LFunctionType.java:211–222  ·  view source on GitHub ↗
(OutputStream out, BHeader header, LFunction object)

Source from the content-addressed store, hash-verified

209 }
210
211 @Override
212 public void write(OutputStream out, BHeader header, LFunction object) throws IOException {
213 header.string.write(out, header, object.name);
214 header.integer.write(out, header, new BInteger(object.linedefined));
215 out.write(object.numUpvalues);
216 out.write(object.numParams);
217 out.write(object.vararg);
218 out.write(object.maximumStackSize);
219 write_debug(out, header, object);
220 write_constants(out, header, object);
221 write_code(out, header, object);
222 }
223
224}
225

Callers 7

write_codeMethod · 0.45
write_debugMethod · 0.45
writeMethod · 0.45
writeMethod · 0.45
writeMethod · 0.45
write_debugMethod · 0.45
writeMethod · 0.45

Calls 3

write_constantsMethod · 0.80
write_codeMethod · 0.80
write_debugMethod · 0.45

Tested by

no test coverage detected