(Scope scope, Operand value)
| 822 | } |
| 823 | |
| 824 | private Variable getValueInTemporaryVariable(Scope scope, Operand value) { |
| 825 | if (value != null && value instanceof TemporaryVariable) return (Variable) value; |
| 826 | |
| 827 | return copyAndReturnValue(scope, value); |
| 828 | } |
| 829 | } |
nothing calls this directly
no test coverage detected