mirror of
https://github.com/verilator/verilator.git
synced 2026-09-03 07:13:04 +02:00
Support always / always[m:n] / s_always[m:n] property operators (#7482)
This commit is contained in:
@@ -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]";
|
||||
|
||||
Reference in New Issue
Block a user