Aaditya Panikath

Results 2 comments of Aaditya Panikath

Hi @munnik Adding this snippet, ``` case OpLeftShift: code("OpLeftShift") case OpRightShift: code("OpRightShift") case OpBitwiseAnd: code("OpBitwiseAnd") case OpBitwiseXor: code("OpBitwiseXor") case OpBitwiseOr: code("OpBitwiseOr") case OpBitwiseNot: code("OpBitwiseNot") ``` after, https://github.com/antonmedv/expr/blob/2c1881a9909453f9f1047886d9be0b94e0ba5c48/vm/program.go#L145-L147 should pass the...

Hi @munnik, @antonmedv I noticed that using numeric literals for bitwise operations seems to throw an error because they are parsed as `int` and the operations check for `uint` type....