(Scope scope, Operand value)
| 814 | } |
| 815 | |
| 816 | private Variable copyAndReturnValue(Scope scope, Operand value) { |
| 817 | Variable variable = scope.createTemporaryVariable(); |
| 818 | |
| 819 | scope.addInstruction(new Copy(variable, value)); |
| 820 | |
| 821 | return variable; |
| 822 | } |
| 823 | |
| 824 | private Variable getValueInTemporaryVariable(Scope scope, Operand value) { |
| 825 | if (value != null && value instanceof TemporaryVariable) return (Variable) value; |
no test coverage detected