heyq02/moonjs/src/bytecode does not have a README file
#alias(ChunkRef)
pub struct Chunk {
code : Array[UInt]
const_pool : Array[JSValue]
source_locs : Array[SourceLoc]
name : String
filename : String
param_count : Int
local_count : Int
upvalue_slots : Array[UpvalueSlotDecl]
nested_chunks : Array[Chunk]
is_strict : Bool
self_binding_slot : Int
} derive(Debug)let OP_GET_GLOBAL_OR_UNDEF : Bytelet OP_GET_THIS : Bytelet OP_HALT : Bytelet OP_NOP : Bytelet OP_POP : Bytelet OP_PUSH_CONST : Bytelet OP_PUSH_I32 : Bytelet OP_TO_NUMBER : Bytelet OP_WIDE : Bytefn encode(op : Byte, a : Byte, b : Byte, c : Byte) -> UIntfn opcode_name(op : Byte) -> StringInstall
Download zip