BC0 File Parser
type C0ByteCode = {
version: number;
/* Int Constant Pool */
intCount: number;
intPool: Int32Array;
/* String Constant Pool */
stringCount: number;
stringPool: Uint8Array;
/* Function Pool */
functionCount: number;
functionPool: C0Function[];
/* Native Functions */
nativeCount: number;
nativePool: (C0Native|undefined)[];
};Last updated