Support embedded covergroup clocking events (#8028)

This commit is contained in:
Marco Bartoli
2026-08-09 13:55:04 -04:00
committed by GitHub
parent dde6aa34ce
commit 645b8cdf24
28 changed files with 683 additions and 99 deletions
+2
View File
@@ -3649,9 +3649,11 @@ void AstCoverInc::dumpJson(std::ostream& str) const { dumpJsonGen(str); }
void AstFork::dump(std::ostream& str) const {
this->AstNodeBlock::dump(str);
str << " [" << joinType() << "]";
if (immediateStart()) str << " [IMMEDIATE]";
}
void AstFork::dumpJson(std::ostream& str) const {
dumpJsonStr(str, "joinType", joinType().ascii());
dumpJsonBoolFuncIf(str, immediateStart);
dumpJsonGen(str);
}
void AstStop::dump(std::ostream& str) const {