public void ToString_LoadConstantInstruction_Double()
        {
            var loadInstruction = new LoadConstantInstruction(LoadKind.Double, 0.69);

            Assert.Equal("ldc.d 0.69", loadInstruction.ToString());
        }
        public void ToString_LoadConstantInstruction_Integer()
        {
            var loadInstruction = new LoadConstantInstruction(LoadKind.Integer, 42);

            Assert.Equal("ldc.i 42", loadInstruction.ToString());
        }