mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 01:37:35 +00:00
JSSpecCompiler: Parse true, false, this, undefined, and null
This commit is contained in:
parent
86d54a8684
commit
b800276347
7 changed files with 70 additions and 3 deletions
|
@ -134,6 +134,11 @@ protected:
|
|||
class WellKnownNode : public Expression {
|
||||
public:
|
||||
enum Type {
|
||||
False,
|
||||
Null,
|
||||
This,
|
||||
True,
|
||||
Undefined,
|
||||
ZeroArgumentFunctionCall,
|
||||
// Update WellKnownNode::dump_tree after adding an entry here
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue