Open degory opened 4 years ago
Array instantiation in the CLI requires a newarr <elem-type> instruction, rather than newobj <type> and so will require a new innate operation.
newarr <elem-type>
newobj <type>
Compiler supports array instantiation via literals, which is sufficient for bootstrap. Moving out of the the bootstrap milestone
Array instantiation in the CLI requires a
newarr <elem-type>
instruction, rather thannewobj <type>
and so will require a new innate operation.