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

LibJS: Implement typeof operator

This commit is contained in:
Conrad Pankoff 2020-03-18 06:33:32 +11:00 committed by Andreas Kling
parent 0a71533aff
commit 46a897b59b
4 changed files with 27 additions and 1 deletions

View file

@ -309,6 +309,7 @@ private:
enum class UnaryOp {
BitwiseNot,
Not,
Typeof,
};
class UnaryExpression : public Expression {