This commit is contained in:
agra
2026-02-20 12:12:51 +02:00
parent e0e655cd36
commit 1ecac79642
10 changed files with 265 additions and 29 deletions

View File

@@ -157,6 +157,9 @@ pub const BinaryOp = struct {
or_op,
bit_and,
bit_or,
bit_xor,
shl,
shr,
in_op,
};
};
@@ -173,6 +176,7 @@ pub const UnaryOp = struct {
pub const Op = enum {
negate,
not,
bit_not,
xx,
address_of,
};
@@ -231,6 +235,11 @@ pub const Assignment = struct {
mul_assign,
div_assign,
mod_assign,
and_assign,
or_assign,
xor_assign,
shl_assign,
shr_assign,
};
};