mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-31 21:29:06 +00:00
LibJS: Add bytecode instructions for a bunch of unary operators
~, !, +, -, typeof, and void.
This commit is contained in:
parent
54fc7079c6
commit
fa9bad912e
Notes:
sideshowbarker
2024-07-18 12:41:00 +09:00
Author: https://github.com/linusg
Commit: fa9bad912e
5 changed files with 175 additions and 1 deletions
|
@ -37,7 +37,12 @@
|
|||
O(Return) \
|
||||
O(BitwiseAnd) \
|
||||
O(BitwiseOr) \
|
||||
O(BitwiseXor)
|
||||
O(BitwiseXor) \
|
||||
O(BitwiseNot) \
|
||||
O(Not) \
|
||||
O(UnaryPlus) \
|
||||
O(UnaryMinus) \
|
||||
O(Typeof)
|
||||
|
||||
namespace JS::Bytecode {
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue