feat: add bitwise left shift, right shift, and xor operand tests

Add comprehensive test files for bitwise lsh, rsh, and xor operations
covering basic cases, max u32 boundary, past max u32 wrap, and operand
type error checks for non-numeric right operands.
This commit is contained in:
Marco Lizza
2015-02-16 10:30:15 +00:00
parent 8c8a059dda
commit ef891e8da9
6 changed files with 48 additions and 0 deletions
@@ -0,0 +1 @@
1 ^ false // expect runtime error: Right operand must be a number.