1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 20:37:35 +00:00

LibJS: Implement void operator

This commit is contained in:
Linus Groh 2020-04-15 17:55:03 +01:00 committed by Andreas Kling
parent beda751d33
commit d30db07048
4 changed files with 34 additions and 1 deletions

View file

@ -395,6 +395,7 @@ enum class UnaryOp {
Plus,
Minus,
Typeof,
Void,
};
class UnaryExpression : public Expression {