LibJS: Implement nullish coalescing operator (??)

This commit is contained in:
Linus Groh 2020-04-18 00:49:11 +01:00 committed by Andreas Kling
commit d14ddb6461
Notes: sideshowbarker 2024-07-19 07:31:09 +09:00
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 {