nitc :: NaiveInterpreter :: callsite
callsite
for given args
Use this method, instead of send
to execute and control the additional behavior of the call-sites
# Execute a full `callsite` for given `args`
# Use this method, instead of `send` to execute and control the additional behavior of the call-sites
fun callsite(callsite: nullable CallSite, arguments: Array[Instance]): nullable Instance
do
if callsite == null then return null
return send(callsite.mproperty, arguments)
end
src/interpreter/naive_interpreter.nit:613,2--619,4