| 3029 | } |
| 3030 | |
| 3031 | void ExpressionCompiler::appendExpressionCopyToMemory(Type const& _expectedType, Expression const& _expression) |
| 3032 | { |
| 3033 | solUnimplementedAssert(_expectedType.isValueType(), "Not implemented for non-value types."); |
| 3034 | acceptAndConvert(_expression, _expectedType, true); |
| 3035 | utils().storeInMemoryDynamic(_expectedType); |
| 3036 | } |
| 3037 | |
| 3038 | void ExpressionCompiler::appendVariable(VariableDeclaration const& _variable, Expression const& _expression) |
| 3039 | { |
nothing calls this directly
no test coverage detected