diff options
author | Emmanuel Leblond <emmanuel.leblond@gmail.com> | 2022-09-21 00:14:53 +0200 |
---|---|---|
committer | Emmanuel Leblond <emmanuel.leblond@gmail.com> | 2022-09-21 00:14:53 +0200 |
commit | b7c3bbc6271a327637e7e713671160c1cc88aaa4 (patch) | |
tree | 2306cb2d0c9d2d5f6eff773b0ba4931f26796c45 /core | |
parent | 1a0943e0f85f05babed460996bfb58823a3e6376 (diff) |
Fix is_keyed param in extension_api.json
Diffstat (limited to 'core')
-rw-r--r-- | core/extension/extension_api_dump.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/extension/extension_api_dump.cpp b/core/extension/extension_api_dump.cpp index 5cf951a93c..bda1a5cdc1 100644 --- a/core/extension/extension_api_dump.cpp +++ b/core/extension/extension_api_dump.cpp @@ -462,7 +462,7 @@ Dictionary NativeExtensionAPIDump::generate_extension_api() { d["indexing_return_type"] = index_type == Variant::NIL ? String("Variant") : Variant::get_type_name(index_type); } - d["is_keyed"] = Variant::ValidatedKeyedSetter(type); + d["is_keyed"] = Variant::is_keyed(type); { //members |