| 3082 | } |
| 3083 | |
| 3084 | void ExpressionCompiler::acceptAndConvert(Expression const& _expression, Type const& _type, bool _cleanupNeeded) |
| 3085 | { |
| 3086 | _expression.accept(*this); |
| 3087 | utils().convertType(*_expression.annotation().type, _type, _cleanupNeeded); |
| 3088 | } |
| 3089 | |
| 3090 | CompilerUtils ExpressionCompiler::utils() |
| 3091 | { |
nothing calls this directly
no test coverage detected