LibJS: Rename BitNot -> BitwiseNot to match other bitwise operators

This commit is contained in:
0xtechnobabble 2020-03-14 20:43:35 +02:00 committed by Andreas Kling
commit 20a0fc5576
Notes: sideshowbarker 2024-07-19 08:18:35 +09:00
2 changed files with 3 additions and 3 deletions

View file

@ -304,7 +304,7 @@ private:
};
enum class UnaryOp {
BitNot,
BitwiseNot,
Not,
};