summaryrefslogtreecommitdiff
path: root/Userland/Applications/Spreadsheet/JSIntegration.h
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2021-10-24 16:01:24 +0200
committerAndreas Kling <kling@serenityos.org>2021-10-24 17:18:07 +0200
commit398c181c799f728739c1ee2184b8638554b3353c (patch)
treef3359393325fc8da02ecb78981a1f87c458246f2 /Userland/Applications/Spreadsheet/JSIntegration.h
parent715e7fada8ed00a7680bb8f4ed65afd3026d3d59 (diff)
downloadserenity-398c181c799f728739c1ee2184b8638554b3353c.zip
LibJS: Rename PropertyName to PropertyKey
Let's use the same name as the spec. :^)
Diffstat (limited to 'Userland/Applications/Spreadsheet/JSIntegration.h')
-rw-r--r--Userland/Applications/Spreadsheet/JSIntegration.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Userland/Applications/Spreadsheet/JSIntegration.h b/Userland/Applications/Spreadsheet/JSIntegration.h
index 264fb7af01..4519f22f88 100644
--- a/Userland/Applications/Spreadsheet/JSIntegration.h
+++ b/Userland/Applications/Spreadsheet/JSIntegration.h
@@ -27,9 +27,9 @@ public:
virtual ~SheetGlobalObject() override;
- virtual JS::ThrowCompletionOr<bool> internal_has_property(JS::PropertyName const& name) const override;
- virtual JS::ThrowCompletionOr<JS::Value> internal_get(JS::PropertyName const&, JS::Value receiver) const override;
- virtual JS::ThrowCompletionOr<bool> internal_set(JS::PropertyName const&, JS::Value value, JS::Value receiver) override;
+ virtual JS::ThrowCompletionOr<bool> internal_has_property(JS::PropertyKey const& name) const override;
+ virtual JS::ThrowCompletionOr<JS::Value> internal_get(JS::PropertyKey const&, JS::Value receiver) const override;
+ virtual JS::ThrowCompletionOr<bool> internal_set(JS::PropertyKey const&, JS::Value value, JS::Value receiver) override;
virtual void initialize_global_object() override;
JS_DECLARE_OLD_NATIVE_FUNCTION(get_real_cell_contents);