Support always / always[m:n] / s_always[m:n] property operators (#7482)

This commit is contained in:
Yilou Wang
2026-04-27 08:20:34 -04:00
committed by GitHub
parent e4803f29b6
commit c8893b64de
21 changed files with 435 additions and 84 deletions
+8
View File
@@ -456,6 +456,14 @@ void AstSConsRep::dumpJson(std::ostream& str) const {
dumpJsonBoolFuncIf(str, unbounded);
dumpJsonGen(str);
} // LCOV_EXCL_STOP
void AstPropAlways::dump(std::ostream& str) const {
this->AstNodeExpr::dump(str);
if (isStrong()) str << " [strong]";
}
void AstPropAlways::dumpJson(std::ostream& str) const {
dumpJsonBoolFuncIf(str, isStrong);
dumpJsonGen(str);
}
void AstConsQueue::dump(std::ostream& str) const {
this->AstNodeExpr::dump(str);
if (lhsIsValue()) str << " [LVAL]";