From 0bf68b83ecc1281818e5cef196538c2f381fe851 Mon Sep 17 00:00:00 2001 From: Patrick Smith Date: Tue, 27 Aug 2024 15:21:25 -0400 Subject: [PATCH] Fix interpolating possible tuple type --- lib/orb/instruction/const.ex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/orb/instruction/const.ex b/lib/orb/instruction/const.ex index 1caee58..b1b8312 100644 --- a/lib/orb/instruction/const.ex +++ b/lib/orb/instruction/const.ex @@ -9,7 +9,7 @@ defmodule Orb.Instruction.Const do end def wrap(push_type, value) do - wrap(push_type, value, "#{Ops.to_primitive_type(push_type)}.const") + wrap(push_type, value, "#{inspect(Ops.to_primitive_type(push_type))}.const") end def wrap(push_type, value, instruction_identifier) when is_number(value) do