MCPcopy Index your code
hub / github.com/aiscriptdev/aiscript / write_code

Method write_code

aiscript-vm/src/chunk.rs:193–195  ·  view source on GitHub ↗
(&mut self, code: OpCode, line: u32)

Source from the content-addressed store, hash-verified

191 }
192
193 pub fn write_code(&mut self, code: OpCode, line: u32) {
194 self.write_byte(code, line);
195 }
196
197 pub fn write_byte(&mut self, byte: OpCode, line: u32) {
198 self.code.push(byte);

Calls 1

write_byteMethod · 0.80