mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-05 22:52:10 +02:00
LibJS: Replace uses of MarkedValueList with MarkedVector<Value>
This is effectively a drop-in replacement.
This commit is contained in:
@@ -30,7 +30,7 @@ public:
|
||||
virtual ThrowCompletionOr<Value> internal_get(PropertyKey const&, Value receiver) const override;
|
||||
virtual ThrowCompletionOr<bool> internal_set(PropertyKey const&, Value value, Value receiver) override;
|
||||
virtual ThrowCompletionOr<bool> internal_delete(PropertyKey const&) override;
|
||||
virtual ThrowCompletionOr<MarkedValueList> internal_own_property_keys() const override;
|
||||
virtual ThrowCompletionOr<MarkedVector<Value>> internal_own_property_keys() const override;
|
||||
virtual void initialize(GlobalObject& object) override;
|
||||
|
||||
private:
|
||||
|
||||
Reference in New Issue
Block a user