1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 11:38:11 +00:00

LibJS: Implement nullish coalescing operator (??)

This commit is contained in:
Linus Groh 2020-04-18 00:49:11 +01:00 committed by Andreas Kling
parent 1806592d58
commit d14ddb6461
4 changed files with 60 additions and 12 deletions

View file

@ -367,6 +367,7 @@ private:
enum class LogicalOp {
And,
Or,
NullishCoalescing,
};
class LogicalExpression : public Expression {