new Compiled Code
Create a new compiled code object with the given properties.
Return
The new compiled code object.
Parameters
The nybblecodes.
The maximum stack depth.
The type that the code's functions will have.
Which Primitive to invoke, or null.
The A_Type that will be returned by the body if this is not a primitive, or if the primitive fails.
A tuple of literals.
A tuple of types of local variables.
A tuple of types of local constants.
A tuple of types of outer (captured) variables.
The module in which the code occurs, or nil.
The module line number on which this code starts.
A sequence of integers, one per L1 nybblecode instruction, encoding the delta to add to the running line number to get to the line on which the syntax that led to that nybblecode occurs. It starts at the given lineNumber. Each encoded value is shifted left from the delta magnitude, and the low bit is zero for a positive delta, and one for a negative delta. May be nil if line number information is not intended to be captured.
A packed A_String containing the names of the block's arguments, locals, and constants.