mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-01 05:39:11 +00:00
LibJS: Implement bitwise assignment operators (&=, |=, ^=)
This commit is contained in:
parent
8e4301dea6
commit
3e754a15d4
Notes:
sideshowbarker
2024-07-19 06:58:00 +09:00
Author: https://github.com/linusg
Commit: 3e754a15d4
Pull-request: https://github.com/SerenityOS/serenity/pull/2105
8 changed files with 62 additions and 2 deletions
|
@ -604,6 +604,9 @@ enum class AssignmentOp {
|
|||
SubtractionAssignment,
|
||||
MultiplicationAssignment,
|
||||
DivisionAssignment,
|
||||
BitwiseAndAssignment,
|
||||
BitwiseOrAssignment,
|
||||
BitwiseXorAssignment,
|
||||
LeftShiftAssignment,
|
||||
RightShiftAssignment,
|
||||
UnsignedRightShiftAssignment,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue