1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 05:27:46 +00:00

LibJS: Add basic support for modulo (%) in binary expressions

This commit is contained in:
Andreas Kling 2020-04-04 21:17:34 +02:00
parent 9c8363bb5f
commit 644ff1bbfd
6 changed files with 25 additions and 0 deletions

View file

@ -289,6 +289,7 @@ enum class BinaryOp {
Minus,
Asterisk,
Slash,
Modulo,
TypedEquals,
TypedInequals,
AbstractEquals,