mirror of
https://github.com/verilator/verilator.git
synced 2026-08-31 18:14:33 +02:00
Fix untyped dtype error on sampling functions with property arguments (#8060)
Signed-off-by: Artur Bieniek <[email protected]>
This commit is contained in:
@@ -3081,6 +3081,14 @@ void AstSFormatF::dumpJson(std::ostream& str) const {
|
||||
dumpJsonBoolFuncIf(str, exprFormat);
|
||||
dumpJsonBoolFuncIf(str, optionalFormat);
|
||||
}
|
||||
void AstSampled::dump(std::ostream& str) const {
|
||||
this->AstNodeExpr::dump(str);
|
||||
if (internal()) str << " [INTERNAL]";
|
||||
}
|
||||
void AstSampled::dumpJson(std::ostream& str) const {
|
||||
dumpJsonBoolFuncIf(str, internal);
|
||||
dumpJsonGen(str);
|
||||
}
|
||||
void AstSel::dump(std::ostream& str) const {
|
||||
this->AstNodeBiop::dump(str);
|
||||
str << " widthConst=" << this->widthConst();
|
||||
|
||||
Reference in New Issue
Block a user