fix: parse & compile, add null & array support

This commit is contained in:
Faynot
2026-05-18 18:30:04 +03:00
parent 4d91abc9ce
commit e01490774d
4 changed files with 102 additions and 46 deletions

View File

@@ -11,6 +11,8 @@ pub const OP_IF: u8 = 0x07;
pub const OP_EACH: u8 = 0x08;
pub const OP_ON: u8 = 0x09;
pub const OP_RHEI_BLK: u8 = 0x0A;
pub const OP_PROP_NULL: u8 = 0x28;
pub const OP_PROP_ARRAY: u8 = 0x29;
// elements managment
pub const OP_ELEM_PUSH: u8 = 0x10;