| 182 | } |
| 183 | |
| 184 | FunctionDefinition const* ContractDefinition::constructor() const |
| 185 | { |
| 186 | for (FunctionDefinition const* f: definedFunctions()) |
| 187 | if (f->isConstructor()) |
| 188 | return f; |
| 189 | return nullptr; |
| 190 | } |
| 191 | |
| 192 | bool ContractDefinition::canBeDeployed() const |
| 193 | { |