summaryrefslogtreecommitdiffstats
path: root/core/variant/variant_call.cpp
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2023-01-09 08:34:28 +0100
committerRémi Verschelde <rverschelde@gmail.com>2023-01-09 08:34:28 +0100
commit31f94574d4c114e4fbdca944113601ad09a981b4 (patch)
tree2d14090dff7eac9a30aa1c3d3fb1ec470397c520 /core/variant/variant_call.cpp
parent9c7723b71755c3172f4b591ff8b1b3ee971f6843 (diff)
parent0e0ca01bce1adecde1de745d2b31d2ad0c12bf6b (diff)
downloadredot-engine-31f94574d4c114e4fbdca944113601ad09a981b4.tar.gz
Merge pull request #70996 from reduz/properly-report-callable-bound-arguments
Properly report Callable bound arguments
Diffstat (limited to 'core/variant/variant_call.cpp')
-rw-r--r--core/variant/variant_call.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/core/variant/variant_call.cpp b/core/variant/variant_call.cpp
index 55bfa1f0f7..6c06b63dab 100644
--- a/core/variant/variant_call.cpp
+++ b/core/variant/variant_call.cpp
@@ -2016,6 +2016,7 @@ static void _register_variant_builtin_methods() {
bind_method(Callable, get_object, sarray(), varray());
bind_method(Callable, get_object_id, sarray(), varray());
bind_method(Callable, get_method, sarray(), varray());
+ bind_method(Callable, get_bound_arguments_count, sarray(), varray());
bind_method(Callable, hash, sarray(), varray());
bind_method(Callable, bindv, sarray("arguments"), varray());
bind_method(Callable, unbind, sarray("argcount"), varray());