| 397 | class InstanceType { |
| 398 | public: |
| 399 | Span<const InstanceDecl> getDecl() const noexcept { return Decl; } |
| 400 | void setDecl(std::vector<InstanceDecl> &&D) noexcept { Decl = std::move(D); } |
| 401 | |
| 402 | private: |
no outgoing calls
no test coverage detected