Commit fd559d44 authored by gsamain's avatar gsamain Committed by Xavier Thompson

Lock checking when calling a function (cypclass object dereferencing)

parent 8bc77000
......@@ -5875,6 +5875,10 @@ class SimpleCallNode(CallNode):
arg.exact_builtin_type = False
args[0] = arg
# Check arguments for cypclass locks
for arg in args:
arg.check_rhs_locked()
# Coerce arguments
some_args_in_temps = False
for i in range(min(max_nargs, actual_nargs)):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment