From b4278986a865e15e79bd8f7c8670c5644a5b847c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Murias?= Date: Thu, 5 Jul 2018 15:18:53 +0200 Subject: [PATCH] [truffle] Make nqp::call return a value --- nqp-truffle.nqp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nqp-truffle.nqp b/nqp-truffle.nqp index 57c2e6f469..22c732cc83 100644 --- a/nqp-truffle.nqp +++ b/nqp-truffle.nqp @@ -229,7 +229,7 @@ class QAST::OperationsTruffle { for $node.list -> $child { nqp::push($ret, $comp.as_truffle($child, :want($CALL_ARG)).tree); } - TAST.new($VOID, $ret); + TAST.new($OBJ, $ret); }); add_op('bind', sub ($comp, $node, :$want) {