(ty: Arc<Expr>, body: Arc<Expr>)
| 92 | impl Expr { |
| 93 | // Tag4 flags for expression variants (0x0-0xB) |
| 94 | pub const FLAG_SORT: u8 = 0x0; |
| 95 | pub const FLAG_VAR: u8 = 0x1; |
| 96 | pub const FLAG_REF: u8 = 0x2; |
| 97 | pub const FLAG_REC: u8 = 0x3; |
| 98 | pub const FLAG_PRJ: u8 = 0x4; |
| 99 | pub const FLAG_STR: u8 = 0x5; |
no outgoing calls
no test coverage detected