| 2512 | } |
| 2513 | |
| 2514 | bool StructType::recursive() const |
| 2515 | { |
| 2516 | solAssert(m_struct.annotation().recursive.has_value(), "Called StructType::recursive() before DeclarationTypeChecker."); |
| 2517 | return *m_struct.annotation().recursive; |
| 2518 | } |
| 2519 | |
| 2520 | std::unique_ptr<ReferenceType> StructType::copyForLocation(DataLocation _location, bool _isPointer) const |
| 2521 | { |
no outgoing calls
no test coverage detected