| 2144 | } |
| 2145 | |
| 2146 | FunctionType const* ContractType::newExpressionType() const |
| 2147 | { |
| 2148 | if (!m_constructorType) |
| 2149 | m_constructorType = FunctionType::newExpressionType(m_contract); |
| 2150 | return m_constructorType; |
| 2151 | } |
| 2152 | |
| 2153 | std::vector<std::tuple<VariableDeclaration const*, u256, unsigned>> ContractType::linearizedStateVariables(DataLocation _location) const |
| 2154 | { |
no test coverage detected