summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibJS/AST.h
diff options
context:
space:
mode:
authorIdan Horowitz <idan.horowitz@gmail.com>2022-03-05 23:44:49 +0200
committerIdan Horowitz <idan.horowitz@gmail.com>2022-03-06 01:38:25 +0200
commit7ebb421ee9800b5151805cd667c5b0d7a10326c9 (patch)
tree5a25a6cd3a40ed3d533138cf7dd33bcee794e589 /Userland/Libraries/LibJS/AST.h
parent9fa78b1a0555a189b9780091596378d3b488e5ed (diff)
downloadserenity-7ebb421ee9800b5151805cd667c5b0d7a10326c9.zip
LibJS: Implement the object literal __proto__ property key special case
Diffstat (limited to 'Userland/Libraries/LibJS/AST.h')
-rw-r--r--Userland/Libraries/LibJS/AST.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Libraries/LibJS/AST.h b/Userland/Libraries/LibJS/AST.h
index ec79b117bf..d77a5d7720 100644
--- a/Userland/Libraries/LibJS/AST.h
+++ b/Userland/Libraries/LibJS/AST.h
@@ -1648,6 +1648,7 @@ public:
Getter,
Setter,
Spread,
+ ProtoSetter,
};
ObjectProperty(SourceRange source_range, NonnullRefPtr<Expression> key, RefPtr<Expression> value, Type property_type, bool is_method)