| 1535 | } |
| 1536 | |
| 1537 | void ContractCompiler::compileExpression(Expression const& _expression, Type const* _targetType) |
| 1538 | { |
| 1539 | ExpressionCompiler expressionCompiler(m_context, m_optimiserSettings.runOrderLiterals); |
| 1540 | expressionCompiler.compile(_expression); |
| 1541 | if (_targetType) |
| 1542 | CompilerUtils(m_context).convertType(*_expression.annotation().type, *_targetType); |
| 1543 | } |
| 1544 | |
| 1545 | void ContractCompiler::popScopedVariables(ASTNode const* _node) |
| 1546 | { |
nothing calls this directly
no test coverage detected