Internals: Fix hasing node informational on AstCaseItem

This commit is contained in:
Wilson Snyder 2025-11-16 18:37:58 -05:00
parent eb6ce0799c
commit 84173048d2
1 changed files with 3 additions and 0 deletions

View File

@ -280,6 +280,9 @@ class HasherVisitor final : public VNVisitorConst {
iterateConstNull(nodep->funcp());
});
}
void visit(AstCaseItem* nodep) override {
m_hash += hashNodeAndIterate(nodep, false, HASH_CHILDREN, []() {});
}
void visit(AstNodeFTaskRef* nodep) override {
m_hash += hashNodeAndIterate(nodep, false, HASH_CHILDREN, [this, nodep]() {
iterateConstNull(nodep->taskp());