support new ast token changes

- some ast token tags were renamed: ie .bit_shift_left => .shl
- add initial support for saturating operators: +|, -|, *|, <<|, +|=, -|=, *|=, <<|=
This commit is contained in:
Travis Staloch
2021-09-28 21:15:37 -07:00
parent 03f70be32a
commit 50aa71c10f
4 changed files with 44 additions and 20 deletions

View File

@@ -474,8 +474,8 @@ fn symbolReferencesInternal(
.assign,
.assign_bit_and,
.assign_bit_or,
.assign_bit_shift_left,
.assign_bit_shift_right,
.assign_shl,
.assign_shr,
.assign_bit_xor,
.assign_div,
.assign_sub,
@@ -488,8 +488,8 @@ fn symbolReferencesInternal(
.bang_equal,
.bit_and,
.bit_or,
.bit_shift_left,
.bit_shift_right,
.shl,
.shr,
.bit_xor,
.bool_or,
.div,