LibJS: Implement the object literal __proto__ property key special case

This commit is contained in:
Idan Horowitz 2022-03-05 23:44:49 +02:00
commit 7ebb421ee9
Notes: sideshowbarker 2024-07-17 17:53:48 +09:00
4 changed files with 22 additions and 0 deletions

View file

@ -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)