mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-27 18:17:22 +02:00
LibJS: Replace uses of MarkedValueList with MarkedVector<Value>
This is effectively a drop-in replacement.
This commit is contained in:
Notes:
sideshowbarker
2024-07-17 19:06:41 +09:00
Author: https://github.com/linusg Commit: https://github.com/SerenityOS/serenity/commit/bc183dbbcb Pull-request: https://github.com/SerenityOS/serenity/pull/12376 Reviewed-by: https://github.com/IdanHo
@@ -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