| 576 | } |
| 577 | |
| 578 | uint64_t TypeDecl::getOwnSemanticHash() const { |
| 579 | HashBuilder hb; |
| 580 | das_set<Structure *> dep; |
| 581 | das_set<Annotation *> adep; |
| 582 | return getOwnSemanticHash(hb, dep, adep); |
| 583 | } |
| 584 | |
| 585 | uint64_t TypeDecl::getOwnSemanticHash(HashBuilder & hb,das_set<Structure *> & dep, das_set<Annotation *> & adep) const { |
| 586 | TextWriter wr; |
nothing calls this directly
no test coverage detected