public override InstructionString BuildNode(ParseTreeNode node)
        {
            var stringArgument = string.Empty;

            var complexQuotedStringNode = node.GetChildComplexQuotedStringNode();
            var quotedStringNode        = complexQuotedStringNode.GetChildQuotedStringNode();

            stringArgument = quotedStringNode.Token.ValueString;

            return(new LoadStringInstruction
            {
                Argument = stringArgument
            });
        }