implement native type compilation

This commit is contained in:
Alex Zenla
2025-07-20 19:57:09 -07:00
parent f7ff896f81
commit 837e0c1b38
19 changed files with 133 additions and 20 deletions

View File

@ -13,7 +13,8 @@ enum class Opcode(val id: UByte) {
UnaryMinus(10u),
BinaryNot(11u),
And(20u),
Native(24u),
NativeFunction(24u),
NativeType(43u),
Return(10u),
StoreLocal(16u),
LoadLocal(17u),