public void Visit(TimesOperator times)
        {
            times.Left.Accept(this);
            var leftOperand = tacs.Last().Result;

            times.Right.Accept(this);
            var rightOperand = tacs.Last().Result;

            tacs.Add(Tac.Times(leftOperand, rightOperand, MakeNewTemp()));
        }